Updated NEWS
[yazproxy-moved-to-github.git] / NEWS
1
2 Added support for limiting the number of initiating connections
3 from a single IP. limit-connect specifies a limit and if that
4 is reached a delay is introduced (just as limit-pdu, etc).
5 Also added a new setting max-connect; if that max value is
6 reached for a single IP the proxy will terminate the initiating
7 session/connection immediately.
8
9 New directive default-client-charset which serves as charset
10 to be negotiated if client does NOT supports one.
11
12 Added support for threaded authentication modules. See
13 etc/config-modules.xml + mod_sample.cpp for an example.
14
15 Added support for Z39.50 character set negotiation. This allows
16 the proxy to act as a Z39.50 server supporting character set negotiation
17 for backends not supporting it. New config element target-charset
18 specifies encoding for target, and MUST be specified in order
19 for any conversion to take place. Conversion also takes place for
20 SRW/SRU clients that are negotiate implicitly to UTF-8.
21
22 --- 1.0.1 2005/05/27
23
24 Fixed bug #355: Yaz proxy does not seem to load balance.
25  
26 --- 1.0 2005/03/14
27
28 Added Support OPAC to XML conversion. Triggered by backendtype="opac"
29 and marcxml="1" in syntax sections. See etc/voyager.xml for example.
30
31 Option -X now makes it possible to stop YAZ proxy by sending
32 "stop" as PROXY target (in init). This used to be debug code in a
33 #if 0 .. #endif section.
34
35 Moved a lot of "private" stuff to proxyp.h so that only Yaz_Proxy
36 is publicly defined in include/yazproxy/proxy.h.
37
38 Authentication info sent to target modified. Element renamed from
39 "authentication" to "target-authentication" to avoid confusion with
40 client authentication. It now takes an authentication
41 type=open|idPass|anonymous . Value is user:group:password for idPass,
42 user/pass for open. Option -U auth is no longer supported.
43
44 Update YAZ Proxy config schema yazproxy.xsd to include definitions
45 for new elements negotation-charset, negotiation-lang, module, etc. .
46 Bump version to 0.9.
47
48 Started work on facility for module loading (plugins). Initial
49 effort is to be able to authenticate via a module. See mod_sample.cpp.
50
51 YAZ Proxy involved in Character Set and Language Negotiation. Added
52 support for client's side negotiation record (high priority). Added
53 support for new elements of YAZ Proxy config file - negotiation-charset,
54 negotiation-lang for parent element target.
55  
56 --- 0.9 2005/02/07
57
58 YAZ Proxy may use USEMARCON to convert between various MARC
59 formats. Use --with-usemarcon to specify Usemarcon location.
60 See config-mafi2ma.xml for an example configuration.
61 Requires USEMARCON 1.5, which can be fetched from:
62  http://www.bl.uk/services/bibliographic/usemarcon.html
63
64 Added support for XInclude for configuration file(s) so that
65 configuration can be partitioned in multiple files.
66
67 Fixed bug #189: Bad authenticated session transfer.
68
69 New config element "authentication" which specifies authentication
70 (Open v2/v3 Z39.50) to be used for backend.
71
72 New config attribute "backendcharset" for syntax element which specifies
73 charset (encoding) for record that is returned by backend. If omitted
74 the proxy assumes backend record encoding is MARC-8 (for backwards
75 compatibility). 
76
77 New config attribute "backendtype" for syntax element which specifies
78 record syntax to be transmitted to backend. This allows proxy to
79 offer a record syntax different from that offered by backend.
80
81 YAZ proxy no longer transmits element set name to backend target when
82 doing schema conversions. It just gets unset instead (it's optional).
83
84 Use YAZ_DOC macro to setup documentation. Added yaz.m4.
85
86 --- 0.8 2004/04/23
87
88 YAZ proxy control script renamed from yaz-proxy.sh to yazproxyctl.sh.
89
90 YAZ proxy executable renamed from yaz-proxy to yaz-proxy.
91
92 Older versions of YAZ proxy was part of YAZ++. We've split the
93 YAZ proxy into a separate project.