iliaa Wed May 30 18:45:59 2007 UTC Modified files: (Branch: PHP_5_2) /php-src NEWS configure.in /php-src/main php_version.h Log: 5.2.3 http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.745&r2=1.2027.2.547.2.746&diff_format=u Index: php-src/NEWS diff -u php-src/NEWS:1.2027.2.547.2.745 php-src/NEWS:1.2027.2.547.2.746 --- php-src/NEWS:1.2027.2.547.2.745 Wed May 30 00:33:13 2007 +++ php-src/NEWS Wed May 30 18:45:59 2007 @@ -1,18 +1,6 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? Jun 2007, PHP 5.2.3 -- Fixed an interger overflow inside chunk_split(), identified by Gerhard - Wagner (Ilia) -- Fixed bug #41525 (ReflectionParameter::getPosition() not available). (Marcus) -- Fixed bug #41511 (Compile failure under IRIX 6.5.30 building md5.c). (Jani) -- Fixed bug #41504 (json_decode() incorrectly decodes JSON arrays with empty - string keys). (Ilia) -- Fixed bug #41492 (open_basedir/safe_mode bypass inside realpath()). (Ilia) -- Fixed bug #41477 (no arginfo about SoapClient::__soapCall()). (Ilia) -- Fixed bug #41236 (Regression in timeout handling of non-blocking SSL - connections during reads and writes). (Ilia) - -24 May 2007, PHP 5.2.3RC1 +31 May 2007, PHP 5.2.3 - Changed CGI install target to php-cgi and 'make install' to install CLI when CGI is selected. (Jani) - Changed JSON maximum nesting depth from 20 to 128. (Rasmus) @@ -35,6 +23,8 @@ - Implemented FR #41416 (getColumnMeta() should also return table name). (Tony) +- Fixed an interger overflow inside chunk_split(), identified by Gerhard + Wagner (Ilia) - Fixed SOAP extension's handler() to work even when "always_populate_raw_post_data" is off. (Ilia) - Fixed possible infinite loop in imagecreatefrompng. (libgd #86) @@ -44,6 +34,12 @@ - Fixed altering $this via argument named "this". (Dmitry) - Fixed PHP CLI usage of php.ini from the binary location. (Hannes) - Fixed segfault in strripos(). (Tony, Joxean Koret) +- Fixed bug #41525 (ReflectionParameter::getPosition() not available). (Marcus) +- Fixed bug #41511 (Compile failure under IRIX 6.5.30 building md5.c). (Jani) +- Fixed bug #41504 (json_decode() incorrectly decodes JSON arrays with empty + string keys). (Ilia) +- Fixed bug #41492 (open_basedir/safe_mode bypass inside realpath()). (Ilia) +- Fixed bug #41477 (no arginfo about SoapClient::__soapCall()). (Ilia) - Fixed bug #41455 (ext/dba/config.m4 pollutes global $LIBS and $LDFLAGS). (mmarek at suse dot cz, Tony) - Fixed bug #41442 (imagegd2() under output control). (Tony) @@ -85,6 +81,8 @@ - Fixed bug #41283 (Bug with deserializing array key that are doubles or floats in wddx). (Ilia) - Fixed bug #41257 (lookupNamespaceURI does not work as expected). (Rob) +- Fixed bug #41236 (Regression in timeout handling of non-blocking SSL + connections during reads and writes). (Ilia) - Fixed bug #41134 (zend_ts_hash_clean not thread-safe). (marco dot cova at gmail dot com, Tony) - Fixed bug #41097 (ext/soap returning associative array as indexed without http://cvs.php.net/viewvc.cgi/php-src/configure.in?r1=1.579.2.52.2.55&r2=1.579.2.52.2.56&diff_format=u Index: php-src/configure.in diff -u php-src/configure.in:1.579.2.52.2.55 php-src/configure.in:1.579.2.52.2.56 --- php-src/configure.in:1.579.2.52.2.55 Fri May 25 00:07:57 2007 +++ php-src/configure.in Wed May 30 18:45:59 2007 @@ -1,4 +1,4 @@ - ## $Id: configure.in,v 1.579.2.52.2.55 2007/05/25 00:07:57 iliaa Exp $ -*- autoconf -*- + ## $Id: configure.in,v 1.579.2.52.2.56 2007/05/30 18:45:59 iliaa Exp $ -*- autoconf -*- dnl ## Process this file with autoconf to produce a configure script. divert(1) @@ -44,7 +44,7 @@ MAJOR_VERSION=5 MINOR_VERSION=2 RELEASE_VERSION=3 -EXTRA_VERSION="RC2-dev" +EXTRA_VERSION="" PHP_VERSION="$MAJOR_VERSION.$MINOR_VERSION.$RELEASE_VERSION$EXTRA_VERSION" PHP_VERSION_ID=`expr [$]MAJOR_VERSION \* 10000 + [$]MINOR_VERSION \* 100 + [$]RELEASE_VERSION` http://cvs.php.net/viewvc.cgi/php-src/main/php_version.h?r1=1.112.2.37.2.37&r2=1.112.2.37.2.38&diff_format=u Index: php-src/main/php_version.h diff -u php-src/main/php_version.h:1.112.2.37.2.37 php-src/main/php_version.h:1.112.2.37.2.38 --- php-src/main/php_version.h:1.112.2.37.2.37 Fri May 25 00:07:57 2007 +++ php-src/main/php_version.h Wed May 30 18:45:59 2007 @@ -3,6 +3,6 @@ #define PHP_MAJOR_VERSION 5 #define PHP_MINOR_VERSION 2 #define PHP_RELEASE_VERSION 3 -#define PHP_EXTRA_VERSION "RC2-dev" -#define PHP_VERSION "5.2.3RC2-dev" +#define PHP_EXTRA_VERSION "" +#define PHP_VERSION "5.2.3" #define PHP_VERSION_ID 50203
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php