From 7262bf67a250194453006c559a6a51afc85399c3 Mon Sep 17 00:00:00 2001 From: Stanislav Malyshev Date: Sat, 10 Nov 2012 00:07:44 -0800 Subject: [PATCH 1/2] 5.4.10-dev --- NEWS | 2 ++ configure.in | 2 +- main/php_version.h | 6 +++--- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index d02a8c96af4..aa217e6db0f 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,7 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +?? ??? 2012, PHP 5.4.10 + ?? ??? 2012, PHP 5.4.9 - Core: diff --git a/configure.in b/configure.in index afe470d30ad..e337850c922 100644 --- a/configure.in +++ b/configure.in @@ -119,7 +119,7 @@ int zend_sprintf(char *buffer, const char *format, ...); PHP_MAJOR_VERSION=5 PHP_MINOR_VERSION=4 -PHP_RELEASE_VERSION=9 +PHP_RELEASE_VERSION=10 PHP_EXTRA_VERSION="-dev" PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION" PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION` diff --git a/main/php_version.h b/main/php_version.h index 8dfe49630fc..0f6205bb887 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -2,7 +2,7 @@ /* edit configure.in to change version number */ #define PHP_MAJOR_VERSION 5 #define PHP_MINOR_VERSION 4 -#define PHP_RELEASE_VERSION 9 +#define PHP_RELEASE_VERSION 10 #define PHP_EXTRA_VERSION "-dev" -#define PHP_VERSION "5.4.9-dev" -#define PHP_VERSION_ID 50409 +#define PHP_VERSION "5.4.10-dev" +#define PHP_VERSION_ID 50410 From c08e2c8c171ef844ef8d8e0d66ecbc79d6a9782a Mon Sep 17 00:00:00 2001 From: Stanislav Malyshev Date: Sat, 24 Nov 2012 16:28:56 -0800 Subject: [PATCH 2/2] fix NEWS --- NEWS | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/NEWS b/NEWS index aa217e6db0f..8b2dbcad63a 100644 --- a/NEWS +++ b/NEWS @@ -2,11 +2,16 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? ??? 2012, PHP 5.4.10 -?? ??? 2012, PHP 5.4.9 - - Core: . Fixed bug #63468 (wrong called method as callback with inheritance). (Laruence) + +- Apache2 Handler SAPI: + . Enabled Apache 2.4 configure option for Windows (Pierre, Anatoliy) + +22 Nov 2012, PHP 5.4.9 + +- Core: . Fixed bug #63305 (zend_mm_heap corrupted with traits). (Dmitry, Laruence) . Fixed bug #63369 ((un)serialize() leaves dangling pointers, causes crashes). (Tony, Andrew Sitnikov) @@ -41,17 +46,26 @@ PHP NEWS (Dmitry, Laruence) . Fixed bug #63284 (Upgrade PCRE to 8.31). (Anatoliy) +- PDO: + . Fixed bug #63235 (buffer overflow in use of SQLGetDiagRec). + (Martin Osvald, Remi) + +- PDO_pgsql: + . Fixed bug #62593 (Emulate prepares behave strangely with PARAM_BOOL). + (Will Fitch) + - Phar: . Fixed bug #63297 (Phar fails to write an openssl based signature). (Anatoliy) +- Streams: + . Fixed bug #63240 (stream_get_line() return contains delimiter string). + (Tjerk, Gustavo) + - Reflection: . Fixed bug #63399 (ReflectionClass::getTraitAliases() incorrectly resolves traitnames). (Laruence) -- Apache2 Handler SAPI: - . Enabled Apache 2.4 configure option for Windows (Pierre, Anatoliy) - 18 Oct 2012, PHP 5.4.8 - CLI server: