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