]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/apr-util/CHANGES
MFC r368207,368607:
[FreeBSD/stable/10.git] / contrib / apr-util / CHANGES
1                                                      -*- coding: utf-8 -*-
2 Changes with APR-util 1.5.4
3
4   *) MySQL driver: Fix incorrect handling of bad parameter in the
5      driver support for apr_dbd_transaction_end().  PR 56330.
6      [Weiqiang Li <weiqiang_li hotmail.com>]
7
8   *) apr_crypto_get_driver(): Fix invalid storage reference on error path.
9      [Philip Martin <philip.martin wandisco.com>]
10
11   *) Fix compile failure for Android.  PR 56627.  [Fredrik Fornwall 
12      <fredrik fornwall.net>, Jeff Trawick]
13
14   *) Fix to let ODBC driver build with MSVC6, which does not have intptr_t
15      [Tom Donovan]
16
17   *) Windows cmake build: Fix incompatiblities with Visual Studio
18      generators with all cmake versions, and the NMake Makefile generator
19      with cmake 2.8.12 and later.  PR 56616 and other bugs.  [Jeff Trawick,
20      Bert Huijben]
21
22   *) Fix detection of Berkeley DB 6.0. PR 55277.
23      [Lars Wendler <polynomial-c gentoo.org>]
24
25   *) Improve platform detection for bundled expat by updating
26      config.guess and config.sub. [Rainer Jung]
27
28 Changes with APR-util 1.5.3
29
30   *) Cygwin: Use correct file extension when loading APR DSOs.  PR 55587.
31      [Carlo Bramini <carlo.bramix libero.it>]
32
33   *) Add experimental cmake-based build system for Windows.  Refer to
34      README.cmake for more information.  [Jeff Trawick, Tom Donovan]
35
36   *) Fix warnings in odbc driver on 64bit systems.
37      PR 55197  [Tom Donovan]
38
39   *) Add support to apr_memcache for unix domain sockets. PR 54573 [Remi
40      Gacogne <rgacogne+asf aquaray.com>]
41
42   *) Add support for Berkeley DB 6.0. [Rainer Jung]
43
44   *) Improve platform detection for bundled expat by updating
45      config.guess and config.sub. [Rainer Jung]
46
47 Changes with APR-util 1.5.2
48
49   *) Windows: Add command line makefiles. [Gregg Smith]
50
51   *) apr_uri_parse(): Do not accept invalid characters in the scheme.
52      Per RFC 3986 3.3, enforce that the first segment of a relative path does
53      not contain a colon. PR 52479. [Stefan Fritsch]
54
55   *) Fix memory leak in hook sorting function. PR 51256.
56      [<horowity checkpoint com>]
57
58   *) Speedup md5 calculation by avoiding some copying on little endian
59      architectures. PR 49011. [Stefan Fritsch, Stefan Fuhrmann
60      <stefanfuhrmann alice-dsl de>]
61
62   *) Use heap memory for crypt in apr_password_validate(), to reduce stack
63      usage. PR 54572. [Stefan Fritsch]
64
65   *) Fix password validation failure for all crypt and crypt_r based
66      algorithms. PR 54603.  [Harvey Eneman <harvey.eneman oracle.com>]
67
68   *) Fix syntax error in crypto/apr_passwd.c on non-glibc systems. PR 54275.
69      [Stefan Fritsch]
70
71   *) Fix potential data corruption in apr_brigade_write() and friends if
72      the last bucket of the brigade is a heap bucket that has been split,
73      and there are still references to the next part of the original bucket
74      in use. [Stefan Fritsch]
75
76   *) Remove duplicated logic in apr_brigade_puts(). PR 53740. [Christophe
77      Jaillet <christophe jaillet wanadoo fr>]
78
79   *) apr_crypto: If --with-crypto is passed to configure but no crypto
80      libraries are enabled, autodetect available libraries.  [Jeff Trawick]
81
82   *) memcache: Fix dead server retry logic.  [Gavin Shelley <columbusmonkey me.com>]
83
84 Changes with APR-util 1.5.1
85
86   *) testmemcache: Fix crash. PR 52705. [Peter Poeml <peter poeml de>]
87
88   *) MinGW: Support shared builds of apr-util when apr is shared.
89      PR 46175.  [Carlo Bramini <carlo.bramix libero.it>, Jeff Trawick]
90
91   *) Add support for Berkeley DB 5.2 and 5.3. Simplify detection script.
92      PR 53684.  [Rainer Jung]
93
94   *) configure: Allow to specify library specific custom linker flags
95      via the LDADD_XXX variables. [Rainer Jung]
96
97   *) apr_password_validate(): Fix intermittent errors on systems
98      such as FreeBSD where the crypt() function is used.
99      (Broken only in 1.5.0)  [Jeff Trawick]
100
101   *) Improve platform detection for bundled expat by updating
102      config.guess and config.sub. [Rainer Jung]
103
104 Changes with APR-util 1.5.0
105
106   *) dbd_pgsql_escape: Use PQescapeStringConn. [Nick Kew]
107
108   *) apr_password_validate, apr_bcrypt_encode: Add support for bcrypt encoded
109      passwords. The bcrypt implementation uses code from crypt_blowfish
110      written by Solar Designer <solar openwall com>. apr_bcrypt_encode creates
111      hashes with "$2y$" prefix, but apr_password_validate also accepts the old
112      prefix "$2a$". PR 49288. [Stefan Fritsch]
113
114   *) APR dbd: Allow to use apr_dbd_get_row() with a different pool than
115      apr_dbd_select(). PR 53533. [<arthur echo gmail com>]
116
117   *) APR dbd FreeTDS support: Fix spurious API errors caused by uninitialized
118      fields.  [TROY.LIU 劉春偉 <TROY.LIU deltaww.com.cn>]
119
120   *) apr_password_validate: Increase maximum hash string length to allow
121      more than 9999 rounds with sha512-crypt. PR 53410. [Stefan Fritsch]
122
123   *) Fix segfaults in crypt() and crypt_r() failure modes.
124      PR 47272.  [Arkadiusz Miskiewicz <arekm pld-linux.org>]
125
126   *) apr_crypto: Ensure that the if/else that governs the static
127      initialisation of each crypto driver works when the first driver
128      isn't in use. [Graham Leggett]
129
130   *) apr_crypto: Ensure the *driver variable is initialised when a statically
131      compiled library is initialised for the first time. [Graham Leggett]
132
133   *) apr_crypto: Ensure the *driver variable is initialised when the library
134      has already been loaded. Fix ported from apr_dbd. [Graham Leggett]
135
136   *) apr_crypto: Move the static initialisation of DRIVER_LOAD from
137      apr_crypto_init() to apr_crypto_get_driver(), so that we don't lose
138      the parameters. [Graham Leggett]
139
140 Changes with APR-util 1.4.x and later:
141
142   *) http://svn.apache.org/viewvc/apr/apr-util/branches/1.4.x/CHANGES?view=markup
143
144 Changes for APR-util 1.3.x and later:
145
146   *) http://svn.apache.org/viewvc/apr/apr-util/branches/1.3.x/CHANGES?view=markup
147
148 Changes for APR-util 1.2.x and later:
149
150   *) http://svn.apache.org/viewvc/apr/apr-util/branches/1.2.x/CHANGES?view=markup
151
152 Changes for APR-util 1.1.x and later:
153
154   *) http://svn.apache.org/viewvc/apr/apr-util/branches/1.1.x/CHANGES?view=markup
155
156 Changes for APR-util 1.0.x and later:
157
158   *) http://svn.apache.org/viewvc/apr/apr-util/branches/1.0.x/CHANGES?view=markup
159
160 Changes for APR-util 0.9.x and later/earlier:
161
162   *) http://svn.apache.org/viewvc/apr/apr-util/branches/0.9.x/CHANGES?view=markup