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