/[Apache-SVN]/apr/apr-util/branches/1.2.x/CHANGES
ViewVC logotype

Contents of /apr/apr-util/branches/1.2.x/CHANGES

Parent Directory Parent Directory | Revision Log Revision Log


Revision 819026 - (show annotations)
Fri Sep 25 21:24:01 2009 UTC (2 months ago) by jim
File size: 6788 byte(s)
Changes reflect major/minor related changes. Provide
links to other versions.

1  -*- coding: utf-8 -*-
2
3 Changes with APR-util 1.2.13
4
5 *) APR_LDAP_SIZELIMIT should prefer LDAP_DEFAULT_LIMIT/-1 when the
6 SDK supports it, but in the absence of LDAP_DEFAULT_LIMIT (and
7 LDAP_NO_LIMIT/0) it is not safe to use a literal -1.
8 PR23356 [Eric Covener]
9
10 *) Better error detection for bucket allocation failures.
11 [Jim Jagielski]
12
13 *) Fix a regression in apr_brigade_partition that causes integer overflows
14 on systems where apr_off_t > apr_size_t. [Ruediger Pluem]
15
16 *) Ensure that apr_uri_unparse does not add scheme to URI if
17 APR_URI_UNP_OMITSITEPART flag is set. PR 44044.
18 [Michael Clark <michael metaparadigm.com>]
19
20 *) Add better scheme/host parsing to apr_uri.
21 [Henry Jen <henryjen ztune.net>]
22
23 *) Fix the make test target in the spec file. [Graham Leggett]
24
25 Changes with APR-util 1.2.12
26
27 *) Wakeup threads waiting for a reslist resource after a resource was
28 invalidated. [Ruediger Pluem]
29
30 *) Fix GMT offset for several date formats and add a new format.
31 [Maxime Petazzoni <maxime.petazzoni bulix.org>]
32
33 *) Numerous fixes to the test/ framework, including better handling of
34 long size_t comparisons and more consistent Makefile.(in|win) setup
35 for authoring new tests. [William Rowe]
36
37 *) Win32 build fixes including a Makefile.win scheme, fixes for 64P
38 model x86_64 compiles and VC8 builds. [William Rowe]
39
40 *) Type mismatch between apr_datum_t and GDBM's datum type could
41 yield a corrupt apr_datum_t when reading from a GDBM database.
42 PR 43025. [Björn Wiberg <Bjorn.Wiberg its.uu.se>, Davi Arnaut]
43
44 *) Add the #define APR_LDAP_SIZELIMIT that is set appropriately
45 for the LDAP SDK that is being used. Also include ZOS as an
46 LDAP Platform.
47 PR 37814. [David Jones <oscaremma gmail com>, Davi Arnaut]
48
49 *) Fix exported LDFLAGS with new expat detection. PR 43337.
50 [Justin Erenkrantz]
51
52 *) Add MySQL DBD driver [Nick Kew, Bojan Smojver]
53
54 Changes with APR-util 1.2.10
55
56 *) Support BerkeleyDB 4.6. [Arfrever Frehtes Taifersar Arahesis]
57
58 *) Test improvements to validate testmd4 and testdbm, unattended.
59 [Bojan Smojver]
60
61 Changes with APR-util 1.2.9
62
63 *) Ensure that an apr_reslist shrinks back to SMAX via the TTL by
64 reorganising the resource list from a queue to a stack.
65 PR 40348. [Christian BOITEL <christian_boitel yahoo.fr>]
66
67 *) Fix Solaris 2.8+ fdatasync() detection. The fdatasync() function
68 is marked as part of the Realtime library functions.
69 PR 37343. [Davi Arnaut]
70
71 *) Change configure's expat detection to use standard linker-based
72 tests, fixing build on e.g. biarch Linux systems. PR 28205.
73 [Joe Orton, Ruediger Pluem]
74
75 *) Portably implement testdate's long-time constants to solve
76 compilation faults where #LL isn't valid. [Curt Arnold]
77
78 *) APR_FIND_APU macro no longer checks /usr/local/apache2/.
79 PR 42089. [Colm MacCárthaigh]
80
81 *) Fix handling of attribute namespaces in apr_xml_to_text() when
82 a namespace map is provided. PR 41908. [Joe Orton]
83
84 Changes with APR-util 1.2.8
85
86 *) Add support for Berkeley DB 4.5 to the configure scripts.
87 [Garrett Rooney]
88
89 *) Allow apr_queue.h to be included before other APR headers.
90 PR 40891 [Henry Jen <henryjen ztune.net>]
91
92 *) Provide folding in autogenerated .manifest files for Win32 builders
93 using VisualStudio 2005 [William Rowe]
94
95 *) Implement prepared statement support in SQLite3 DBD driver
96 [Bojan Smojver]
97
98 *) Fix to ensure that "deprecated" LDAP interfaces are still
99 exposed if using OpenLDAP 2.3. [Joe Orton]
100
101 *) Fix incorrect byte order and incorrect timestamp type
102 in the fallback UUID generator used when no external UUID
103 generator is detected by APR. PR 37342. [Max Bowsher]
104
105 Changes with APR-util 1.2.7
106
107 *) Fix apr_dbd_init to be safe to call multiple times
108 [Bojan Smojver <bojan rexursive com>, Nick Kew]
109
110 *) Win32 / Netware - add missing apu_version.c for apu_version_string()
111 to the Windows and Netware specific builds. Unix platforms supported
112 this API since 0.9.1. [William Rowe, Brad Nicholes].
113
114 Changes with APR-util 1.2.6
115
116 *) Stop trying to link against Berkeley DB by default. To enable use
117 of Berkeley DB users must now explicitly pass --with-berkeley-db to
118 configure, since Berkeley DB is released under a viral license that
119 requires distribution of source code for any program that uses it.
120 [Garrett Rooney]
121
122 *) Stop trying to link against GDBM by default. To enable use of GDBM
123 users must now explicitly pass --with-gdbm to configure, since GDBM
124 is licensed under the GPL.
125 [Garrett Rooney]
126
127 *) Fix VPATH builds, and symlink builds where apr and apr-util
128 reside in parallel as symlinks to directories with more explicit
129 names, e.g. apr-1.x and apr-util-1.x. This solves various breakage
130 on Solaris in particular with ./buildconf and ./configure. Also
131 eliminated the nested ../apr-iconv/buildconf, given that apr-util
132 didn't bother with ../apr/buildconf, and this was inconsistant.
133 [William Rowe]
134
135 *) Fix the escape implementations for the sqlite2 and sqlite3 dbd
136 back ends.
137 [Ronen Mizrahi <ronen tversity.com>, Garrett Rooney]
138
139 *) Add support for Berkeley DB 4.4 to the configure scripts.
140 [Garrett Rooney]
141
142 *) Fix bug in test suite that cause testbuckets to write 8GB file
143 on Mac OS X. [Justin Erenkrantz]
144
145 Changes with APR-util 1.2.2
146
147 *) Teach configure how to find the Novell LDAP SDK. [Graham Leggett]
148
149 *) Fix usage of ldapssl_init/ldap_sslinit on platforms that support
150 these API's including Win32. Support APR_HAS_LDAP_START_TLS_S
151 flag in the Win32 LDAP API, to drop usage of ldap_start_ssl_s
152 and ldap_stop_ssl_s on Win32 by default (change the flag in apr_ldap.hw
153 to enable if supported on a given OS level). [William Rowe]
154
155 Changes with APR-util 1.2.1
156
157 *) Fix apr_rmm_realloc() offset calculation bug. [Keith Kelleman
158 <keith.kelleman oracle.com>]
159
160 *) Add sqlite3 support to APR DBD. [Rick Keiner <rick_keiner yahoo.com>]
161
162 *) Fix build failure with non-threaded APR on AIX. PR 34655.
163 [Ryan Murray <rmurray+apache cyberhqz.com>]
164
165 *) Add sqlite2 support to APR DBD. [Ryan Phillips <ryan trolocsis.com>]
166
167 *) Introduction of APR DBD layer. [Nick Kew]
168
169
170 Changes for APR-util 1.1.x and later:
171
172 *) http://svn.apache.org/viewvc/apr/apr-util/branches/1.1.x/CHANGES?view=markup
173
174 Changes for APR-util 1.0.x and later:
175
176 *) http://svn.apache.org/viewvc/apr/apr-util/branches/1.0.x/CHANGES?view=markup
177
178 Changes for APR-util 0.9.x and later/earlier:
179
180 *) http://svn.apache.org/viewvc/apr/apr-util/branches/0.9.x/CHANGES?view=markup

Properties

Name Value
svn:eol-style native
svnmailer:content-charset utf-8

apache@apache.org
ViewVC Help
Powered by ViewVC 1.1.2