1251876Speter                                                     -*- coding: utf-8 -*-
2262253SpeterChanges with APR-util 1.5.3
3262253Speter
4262253Speter  *) Cygwin: Use correct file extension when loading APR DSOs.  PR 55587.
5262253Speter     [Carlo Bramini <carlo.bramix libero.it>]
6262253Speter
7262253Speter  *) Add experimental cmake-based build system for Windows.  Refer to
8262253Speter     README.cmake for more information.  [Jeff Trawick, Tom Donovan]
9262253Speter
10262253Speter  *) Fix warnings in odbc driver on 64bit systems.
11262253Speter     PR 55197  [Tom Donovan]
12262253Speter
13262253Speter  *) Add support to apr_memcache for unix domain sockets. PR 54573 [Remi
14262253Speter     Gacogne <rgacogne+asf aquaray.com>]
15262253Speter
16262253Speter  *) Add support for Berkeley DB 6.0. [Rainer Jung]
17262253Speter
18262253Speter  *) Improve platform detection for bundled expat by updating
19262253Speter     config.guess and config.sub. [Rainer Jung]
20262253Speter
21253734SpeterChanges with APR-util 1.5.2
22251876Speter
23253734Speter  *) Windows: Add command line makefiles. [Gregg Smith]
24251876Speter
25253734Speter  *) apr_uri_parse(): Do not accept invalid characters in the scheme.
26253734Speter     Per RFC 3986 3.3, enforce that the first segment of a relative path does
27253734Speter     not contain a colon. PR 52479. [Stefan Fritsch]
28251876Speter
29253734Speter  *) Fix memory leak in hook sorting function. PR 51256.
30253734Speter     [<horowity checkpoint com>]
31251876Speter
32253734Speter  *) Speedup md5 calculation by avoiding some copying on little endian
33253734Speter     architectures. PR 49011. [Stefan Fritsch, Stefan Fuhrmann
34253734Speter     <stefanfuhrmann alice-dsl de>]
35251876Speter
36253734Speter  *) Use heap memory for crypt in apr_password_validate(), to reduce stack
37253734Speter     usage. PR 54572. [Stefan Fritsch]
38251876Speter
39253734Speter  *) Fix password validation failure for all crypt and crypt_r based
40253734Speter     algorithms. PR 54603.  [Harvey Eneman <harvey.eneman oracle.com>]
41251876Speter
42253734Speter  *) Fix syntax error in crypto/apr_passwd.c on non-glibc systems. PR 54275.
43253734Speter     [Stefan Fritsch]
44251876Speter
45253734Speter  *) Fix potential data corruption in apr_brigade_write() and friends if
46253734Speter     the last bucket of the brigade is a heap bucket that has been split,
47253734Speter     and there are still references to the next part of the original bucket
48253734Speter     in use. [Stefan Fritsch]
49251876Speter
50253734Speter  *) Remove duplicated logic in apr_brigade_puts(). PR 53740. [Christophe
51253734Speter     Jaillet <christophe jaillet wanadoo fr>]
52251876Speter
53253734Speter  *) apr_crypto: If --with-crypto is passed to configure but no crypto
54253734Speter     libraries are enabled, autodetect available libraries.  [Jeff Trawick]
55251876Speter
56253734Speter  *) memcache: Fix dead server retry logic.  [Gavin Shelley <columbusmonkey me.com>]
57251876Speter
58253734SpeterChanges with APR-util 1.5.1
59251876Speter
60253734Speter  *) testmemcache: Fix crash. PR 52705. [Peter Poeml <peter poeml de>]
61253734Speter
62253734Speter  *) MinGW: Support shared builds of apr-util when apr is shared.
63253734Speter     PR 46175.  [Carlo Bramini <carlo.bramix libero.it>, Jeff Trawick]
64253734Speter
65253734Speter  *) Add support for Berkeley DB 5.2 and 5.3. Simplify detection script.
66253734Speter     PR 53684.  [Rainer Jung]
67253734Speter
68253734Speter  *) configure: Allow to specify library specific custom linker flags
69253734Speter     via the LDADD_XXX variables. [Rainer Jung]
70253734Speter
71253734Speter  *) apr_password_validate(): Fix intermittent errors on systems
72253734Speter     such as FreeBSD where the crypt() function is used.
73253734Speter     (Broken only in 1.5.0)  [Jeff Trawick]
74253734Speter
75253734Speter  *) Improve platform detection for bundled expat by updating
76253734Speter     config.guess and config.sub. [Rainer Jung]
77253734Speter
78253734SpeterChanges with APR-util 1.5.0
79253734Speter
80253734Speter  *) dbd_pgsql_escape: Use PQescapeStringConn. [Nick Kew]
81253734Speter
82253734Speter  *) apr_password_validate, apr_bcrypt_encode: Add support for bcrypt encoded
83253734Speter     passwords. The bcrypt implementation uses code from crypt_blowfish
84253734Speter     written by Solar Designer <solar openwall com>. apr_bcrypt_encode creates
85253734Speter     hashes with "$2y$" prefix, but apr_password_validate also accepts the old
86253734Speter     prefix "$2a$". PR 49288. [Stefan Fritsch]
87253734Speter
88253734Speter  *) APR dbd: Allow to use apr_dbd_get_row() with a different pool than
89253734Speter     apr_dbd_select(). PR 53533. [<arthur echo gmail com>]
90253734Speter
91253734Speter  *) APR dbd FreeTDS support: Fix spurious API errors caused by uninitialized
92253734Speter     fields.  [TROY.LIU ��������� <TROY.LIU deltaww.com.cn>]
93253734Speter
94253734Speter  *) apr_password_validate: Increase maximum hash string length to allow
95253734Speter     more than 9999 rounds with sha512-crypt. PR 53410. [Stefan Fritsch]
96253734Speter
97253734Speter  *) Fix segfaults in crypt() and crypt_r() failure modes.
98253734Speter     PR 47272.  [Arkadiusz Miskiewicz <arekm pld-linux.org>]
99253734Speter
100253734Speter  *) apr_crypto: Ensure that the if/else that governs the static
101253734Speter     initialisation of each crypto driver works when the first driver
102253734Speter     isn't in use. [Graham Leggett]
103253734Speter
104253734Speter  *) apr_crypto: Ensure the *driver variable is initialised when a statically
105253734Speter     compiled library is initialised for the first time. [Graham Leggett]
106253734Speter
107253734Speter  *) apr_crypto: Ensure the *driver variable is initialised when the library
108253734Speter     has already been loaded. Fix ported from apr_dbd. [Graham Leggett]
109253734Speter
110253734Speter  *) apr_crypto: Move the static initialisation of DRIVER_LOAD from
111253734Speter     apr_crypto_init() to apr_crypto_get_driver(), so that we don't lose
112253734Speter     the parameters. [Graham Leggett]
113253734Speter
114253734SpeterChanges with APR-util 1.4.x and later:
115253734Speter
116253734Speter  *) http://svn.apache.org/viewvc/apr/apr-util/branches/1.4.x/CHANGES?view=markup
117253734Speter
118251876SpeterChanges for APR-util 1.3.x and later:
119251876Speter
120251876Speter  *) http://svn.apache.org/viewvc/apr/apr-util/branches/1.3.x/CHANGES?view=markup
121251876Speter
122251876SpeterChanges for APR-util 1.2.x and later:
123251876Speter
124251876Speter  *) http://svn.apache.org/viewvc/apr/apr-util/branches/1.2.x/CHANGES?view=markup
125251876Speter
126251876SpeterChanges for APR-util 1.1.x and later:
127251876Speter
128251876Speter  *) http://svn.apache.org/viewvc/apr/apr-util/branches/1.1.x/CHANGES?view=markup
129251876Speter
130251876SpeterChanges for APR-util 1.0.x and later:
131251876Speter
132251876Speter  *) http://svn.apache.org/viewvc/apr/apr-util/branches/1.0.x/CHANGES?view=markup
133251876Speter
134251876SpeterChanges for APR-util 0.9.x and later/earlier:
135251876Speter
136251876Speter  *) http://svn.apache.org/viewvc/apr/apr-util/branches/0.9.x/CHANGES?view=markup
137