From c8c38c8c529161e6dcb176eb9b392dcb7979c139 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Fri, 14 Jan 2022 02:05:55 +0000 Subject: Indicate 1.8.0-dev on the new backport dev branch git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.8.x@1897024 13f79535-47bb-0310-9956-ffa450edef68 --- CHANGES | 63 +++++++++------------------------------------------ STATUS | 5 +--- include/apr_version.h | 4 ++-- 3 files changed, 14 insertions(+), 58 deletions(-) diff --git a/CHANGES b/CHANGES index 49ac16aa8..32d3cf548 100644 --- a/CHANGES +++ b/CHANGES @@ -1,9 +1,16 @@ -*- coding: utf-8 -*- +Changes for APR 1.8.0 + + [Anything backed out from 1.7.x branch should be slid up here, and the + details of 1.7.1 deleted] + + *) + Changes for APR 1.7.1 *) SECURITY: CVE-2021-35940 (cve.mitre.org) - Restore fix for out-of-bounds array dereference in apr_time_exp*() functions. - (This issue was addressed as CVE-2017-12613 in APR 1.6.3 and + Restore fix for out-of-bounds array dereference in apr_time_exp*() + functions. (This issue was addressed as CVE-2017-12613 in APR 1.6.3 and later 1.6.x releases, but was missing in 1.7.0.) [Stefan Sperling] *) apr_atomic_read64(): Fix non-atomic read on 32-bit Windows [Ivan Zhakov] @@ -26,7 +33,6 @@ Changes for APR 1.7.1 *) APR's configure script uses AC_TRY_RUN to detect whether the return type of strerror_r is int. When cross-compiling this defaults to no. - This commit adds an AC_CACHE_CHECK so users who cross-compile APR may influence the outcome with a configure variable. [Sebastian Kemper ] @@ -46,7 +52,6 @@ Changes for APR 1.7.1 *) While cross-compiling, the tools/gen_test_char could not be executed at build time, use AX_PROG_CC_FOR_BUILD to build native tools/gen_test_char - Support explicit libtool by variable assigning before buildcheck.sh, it is helpful for cross-compiling (such as libtool=aarch64-linux-libtool) [Hongxu Jia ] @@ -69,55 +74,9 @@ Changes for APR 1.7.1 *) Fixed: apr_get_oslevel() was returning APR_WIN_XP on Windows 10 -Changes for APR 1.7.0 - - *) apr_dir_read: [Unix] Dropped the preference of the dirread_r() flavor - for dirread(), because the former is both deprecated and unneeded. - [Yann Ylavic, William Rowe] - - *) apr_file_info: [Win32 only] Treat only "name surrogate" reparse points - as symlinks, and not other reparse tag types. PR47630 - [Oleg Liatte ] - - *) Test %ld vs. %lld to avoid compiler emits using APR_OFF_T_FMT, in the - case of apparently equivilant long and long long types. [William Rowe] - - *) Recognize APPLE predefined macros as equivilant to DARWIN. [Jim Jagielski] - - *) Signals: Allow handling of SIGUSR2 in apr_signal_thread. [Yann Ylavic] +Changes for APR 1.7.0 and later: - *) Atomics: Support for 64bit ints. [Jim Jagielski] - - *) Add the apr_encode_* API that implements RFC4648 and RFC7515 - compliant BASE64, BASE64URL, BASE32, BASE32HEX and BASE16 - encode/decode functions. [Graham Leggett] - - *) rand: Use arc4random_buf() on BSD platforms and getrandom() on Linux, - when available. [Christian Weisgerber