Skip to content

Commit

Permalink
This will be PHP 5.3.14
Browse files Browse the repository at this point in the history
  • Loading branch information
johannes committed May 8, 2012
1 parent 000e84a commit e120a0c
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 11 deletions.
27 changes: 20 additions & 7 deletions NEWS
Expand Up @@ -40,13 +40,19 @@ PHP NEWS
. Fixed bug #61961 (file_get_contents leaks when access empty file with
maxlen set). (Reeze)

(merge after 5.3.11 release)
08 May 2012, PHP 5.3.13
- CGI
. Improve fix for PHP-CGI query string parameter vulnerability, CVE-2012-2311.
(Stas)

03 May 2012, PHP 5.3.12
- Fix PHP-CGI query string parameter vulnerability, CVE-2012-1823. (Rasmus)

26 Apr 2012, PHP 5.3.11

- Core:
. Fixed bug #61605 (header_remove() does not remove all headers).
(Laruence)
. Fixed bug #61541 (Segfault when using ob_* in output_callback).
(reeze.xia@gmail.com)
. Fixed bug #61650 (ini parser crashes when using ${xxxx} ini variables
(without apache2)). (Laruence)
. Fixed bug #61273 (call_user_func_array with more than 16333 arguments
leaks / crashes). (Laruence)
. Fixed bug #61165 (Segfault - strip_tags()). (Laruence)
Expand Down Expand Up @@ -93,14 +99,17 @@ PHP NEWS
. Fixed bug #61172 (Add Apache 2.4 support). (Chris Jones)

- Fileinfo
. Upgraded libmagic to 5.11 (Pierre, Anatoliy)
. Fixed bug #61565 where php_stream_open_wrapper_ex tries to open a
directory descriptor under windows. (Anatoliy)
. Fixed bug #61566 failure caused by the posix lseek and read versions
under windows in cdf_read(). (Anatoliy)
. Fixed bug #61173 (Unable to detect error from finfo constructor). (Gustavo)

- Firebird Database extension (ibase):
. Fixed bug #60802 (ibase_trans() gives segfault when passing params).

- Libxml:
. Fixed bug #61617 (Libxml tests failed(ht is already destroyed)).
(Laruence)
. Fixed bug #61367 (open_basedir bypass using libxml RSHUTDOWN).
(Tim Starling)

Expand All @@ -123,6 +132,10 @@ PHP NEWS
- PDO_Sqlite extension:
. Add createCollation support. (Damien)

- pgsql:
. Fixed bug #60718 (Compile problem with libpq (PostgreSQL 7.3 or less).
(Yasuo Ohgaki)

- Phar:
. Fixed bug #61184 (Phar::webPhar() generates headers with trailing NUL
bytes). (Nikic)
Expand Down
2 changes: 1 addition & 1 deletion configure.in
Expand Up @@ -41,7 +41,7 @@ AC_CONFIG_HEADER(main/php_config.h)

PHP_MAJOR_VERSION=5
PHP_MINOR_VERSION=3
PHP_RELEASE_VERSION=13
PHP_RELEASE_VERSION=14
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`
Expand Down
6 changes: 3 additions & 3 deletions main/php_version.h
Expand Up @@ -2,7 +2,7 @@
/* edit configure.in to change version number */
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 3
#define PHP_RELEASE_VERSION 13
#define PHP_RELEASE_VERSION 14
#define PHP_EXTRA_VERSION "-dev"
#define PHP_VERSION "5.3.13-dev"
#define PHP_VERSION_ID 50313
#define PHP_VERSION "5.3.14-dev"
#define PHP_VERSION_ID 50314

0 comments on commit e120a0c

Please sign in to comment.