Z39.50 authentication user is no longer set to client-IP for SRU.
[yazproxy-moved-to-github.git] / NEWS
1 --- 1.3.3 2008/03/20
2
3 Added support for limiting the number of sockets (connections) to
4 a particular backend. The new setting is called 'max-sockets' and
5 must be defined in the target section.
6
7 API verson 3 of USEMARCON is used. Patch by Ere Maijala.
8
9 --- 1.3.2 2008/02/29
10
11 Added option -D for yazproxy which puts yazproxy in background after
12 startup.
13
14 Fixed bug #2060: Killing yazproxy parent does not kill the child as well.
15
16 --- 1.3.1 2007/12/27
17
18 Fixed bug #1989: For PQF SRU one char is stipped off query.
19
20 Fixed bug #1821: Wrong order of include directories for compiling.
21
22 Allow EXSLT to be used if it's available.
23
24 --- 1.3.0 2007/05/09
25
26 Debian packages libyazproxy2, libyazproxy2-dev. These depend on
27 libyazpp2, libyazpp2-dev.
28
29 Branch out: YAZPROXY_1_2_1_1_branch .
30
31 --- 1.2.1.1 2006/06/09
32
33 Added support for thread config element which specifies number of
34 threads to be used for auhentication modules. By default, no threading
35 is used which happen to be value 0. Modules will still work but they will
36 be blocking.
37
38 --- 1.2.1 2006/05/01
39
40 Fixed problem with log of session ID when HTTP fowarded was in effect.
41
42 Fixed a problem with negative numbers in present requests.
43
44 Allow client-ip to be logged for each log entry. Specify
45 <log>client-ip</log> in the configuration.
46
47 Added support for limiting the number of initiating connections from
48 a single IP. limit-connect specifies a limit and if that is reached a
49 delay is introduced (just as limit-pdu, etc). Also added a new setting
50 max-connect; if that max value is reached for a single IP the proxy
51 will terminate the initiating session/connection immediately.
52
53 New directive default-client-charset which serves as charset to be
54 negotiated if client does NOT supports one.
55
56 Added support for threaded authentication modules. See
57 etc/config-modules.xml + mod_sample.cpp for an example.
58
59 Added support for Z39.50 character set negotiation. This allows the
60 proxy to act as a Z39.50 server supporting character set negotiation
61 for backends not supporting it. New config element target-charset
62 specifies encoding for target, and MUST be specified in order for
63 any conversion to take place. Conversion also takes place for SRW/SRU
64 clients that are negotiate implicitly to UTF-8.
65
66 --- 1.0.1 2005/05/27
67
68 Fixed bug #355: Yaz proxy does not seem to load balance.
69  
70 --- 1.0 2005/03/14
71
72 Added Support OPAC to XML conversion. Triggered by backendtype="opac"
73 and marcxml="1" in syntax sections. See etc/voyager.xml for example.
74
75 Option -X now makes it possible to stop YAZ proxy by sending
76 "stop" as PROXY target (in init). This used to be debug code in a
77 #if 0 .. #endif section.
78
79 Moved a lot of "private" stuff to proxyp.h so that only Yaz_Proxy
80 is publicly defined in include/yazproxy/proxy.h.
81
82 Authentication info sent to target modified. Element renamed from
83 "authentication" to "target-authentication" to avoid confusion with
84 client authentication. It now takes an authentication
85 type=open|idPass|anonymous . Value is user:group:password for idPass,
86 user/pass for open. Option -U auth is no longer supported.
87
88 Update YAZ Proxy config schema yazproxy.xsd to include definitions
89 for new elements negotation-charset, negotiation-lang, module, etc. .
90 Bump version to 0.9.
91
92 Started work on facility for module loading (plugins). Initial
93 effort is to be able to authenticate via a module. See mod_sample.cpp.
94
95 YAZ Proxy involved in Character Set and Language Negotiation. Added
96 support for client's side negotiation record (high priority). Added
97 support for new elements of YAZ Proxy config file - negotiation-charset,
98 negotiation-lang for parent element target.
99  
100 --- 0.9 2005/02/07
101
102 YAZ Proxy may use USEMARCON to convert between various MARC
103 formats. Use --with-usemarcon to specify Usemarcon location.
104 See config-mafi2ma.xml for an example configuration.
105 Requires USEMARCON 1.5, which can be fetched from:
106  http://www.bl.uk/services/bibliographic/usemarcon.html
107
108 Added support for XInclude for configuration file(s) so that
109 configuration can be partitioned in multiple files.
110
111 Fixed bug #189: Bad authenticated session transfer.
112
113 New config element "authentication" which specifies authentication
114 (Open v2/v3 Z39.50) to be used for backend.
115
116 New config attribute "backendcharset" for syntax element which specifies
117 charset (encoding) for record that is returned by backend. If omitted
118 the proxy assumes backend record encoding is MARC-8 (for backwards
119 compatibility). 
120
121 New config attribute "backendtype" for syntax element which specifies
122 record syntax to be transmitted to backend. This allows proxy to
123 offer a record syntax different from that offered by backend.
124
125 YAZ proxy no longer transmits element set name to backend target when
126 doing schema conversions. It just gets unset instead (it's optional).
127
128 Use YAZ_DOC macro to setup documentation. Added yaz.m4.
129
130 --- 0.8 2004/04/23
131
132 YAZ proxy control script renamed from yaz-proxy.sh to yazproxyctl.sh.
133
134 YAZ proxy executable renamed from yaz-proxy to yaz-proxy.
135
136 Older versions of YAZ proxy was part of YAZ++. We've split the
137 YAZ proxy into a separate project.