Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 9388 invoked from network); 2 Oct 2009 12:40:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 2 Oct 2009 12:40:57 -0000 Received: (qmail 58355 invoked by uid 500); 2 Oct 2009 12:40:57 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 58286 invoked by uid 500); 2 Oct 2009 12:40:57 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 58276 invoked by uid 99); 2 Oct 2009 12:40:57 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Oct 2009 12:40:57 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Oct 2009 12:40:44 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 8236A23888CF; Fri, 2 Oct 2009 12:40:23 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r820988 - /apr/apr/branches/1.4.x/CHANGES Date: Fri, 02 Oct 2009 12:40:23 -0000 To: commits@apr.apache.org From: trawick@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091002124023.8236A23888CF@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: trawick Date: Fri Oct 2 12:40:23 2009 New Revision: 820988 URL: http://svn.apache.org/viewvc?rev=820988&view=rev Log: remove CHANGES entries for features/fixes in 1.3.x; the first apr 1.4 release will contain everything in 1.3.x Modified: apr/apr/branches/1.4.x/CHANGES Modified: apr/apr/branches/1.4.x/CHANGES URL: http://svn.apache.org/viewvc/apr/apr/branches/1.4.x/CHANGES?rev=820988&r1=820987&r2=820988&view=diff ============================================================================== --- apr/apr/branches/1.4.x/CHANGES [utf-8] (original) +++ apr/apr/branches/1.4.x/CHANGES [utf-8] Fri Oct 2 12:40:23 2009 @@ -1,100 +1,30 @@ -*- coding: utf-8 -*- Changes for APR 1.4.0 - *) SECURITY: CVE-2009-2412 (cve.mitre.org) - Fix overflow in pools and rmm, where size alignment was taking place. - [Matt Lewis , Sander Striker] - *) apr_temp_dir_get() now checks the TMPDIR environment variable first, instead of third. [Jim Jagielski] - *) The implementation of expand_array() in tables/apr_hash.c allocates - a new bucket array, without making any attempt to release the memory - allocated for the previous bucket array. That wastes memory: if the - hash table grows exponentially, this strategy wastes O(n) extra memory. - Use a subpool instead. [Neil Conway ] - - *) Posix semaphores can now be named and used as named semaphores. - [Jim Jagielski] - - *) Better handling of APR_OFF_T_FMT for Darwin 10 depending on -arch - setting of compiler. [Jim Jagielski] - - *) Add comments describing the thread-safety properties of apr_pool_t. - [Neil Conway nrc cs.berkeley.edu] - - *) Make sure that "make check" is used in the RPM spec file, consistent - with apr-util. [Graham Leggett] - - *) Pass default environment to testflock, testoc, testpipe, testsock, - testshm and testproc children, so that tests run when APR is compiled - with Intel C Compiler. [Bojan Smojver] - - *) More elaborate detection for dup3(), accept4() and epoll_create1(). - [Chetan Reddy , Bojan Smojver] - - *) On Linux/hppa flock() returns EAGAIN instead of EWOULDBLOCK. This - causes proc mutex failures. - [Stefan Fritsch ] - *) Add apr_file_sync() and apr_file_datasync() calls. [Bojan Smojver] - *) Set CLOEXEC flags where appropriate. Either use new O_CLOEXEC flag and - associated functions, such as dup3(), accept4(), epoll_create1() etc., - or simply set CLOEXEC flag using fcntl(). PR 46425. [Stefan Fritsch - , Arkadiusz Miskiewicz ] - - *) Fix compilation error on systems that do not have IPV6. - PR 46601 [Julien Charbon ] - *) apr_pollset_wakeup() on Windows: Fix core caused by closing the file_socket_pipe with standard file_close. [Arsen Chaloyan, Mladen Turk] - *) apr_socket_sendfile() on Solaris: Fix handling of files truncated - after the sender determines the length. (This fixes a busy loop in - httpd when a file being served is truncated.) [Jeff Trawick] - - *) Fix documentation for apr_temp_dir_get(). - PR 46303 [Carlo Marcelo Arenas Belon ] - - *) Add AC_MSG_RESULT after AC_MSG_CHECKING. - PR 46427 [Rainer Jung ] - - *) Win32: Do not error out on apr_pollset_poll() when there are no sockets. - [Justin Erenkrantz] - *) Intruduce apr_hash_do for iterating over a hash table. [Mladen Turk] - *) Rename apr_pool_create_core to apr_pool_create_unmanaged and - deprecate the old API name. It better reflects the scope and usage - of this function. [Mladen Turk] - - *) Use proper return code for fcntl-based apr_proc_mutex_trylock() - on platforms that return EACCES instead of EAGAIN when the lock - is already held (AIX, HP-UX). - [Eric Covener] - *) Make sure WIN32 behaves the same as posix for file backed shared memory by removing the file on cleanup/remove. [Mladen Turk] - *) Fix Solaris poll failure. PR 43000 - [Henry Jen ] - *) Introduce apr_pollset_wakeup() for interrupting the blocking apr_pollset_poll call. [Mladen Turk] - *) Implement apr_proc_wait_all_procs for windows. - [Mladen Turk] - *) Add apr_file_link() function. PR 44841 [Mark Heily ] - Changes for APR 1.3.x and later: *) http://svn.apache.org/viewvc/apr/apr/branches/1.3.x/CHANGES?view=markup