Skip to content

Commit e120a0c

Browse files
committed
This will be PHP 5.3.14
1 parent 000e84a commit e120a0c

File tree

3 files changed

+24
-11
lines changed

3 files changed

+24
-11
lines changed

NEWS

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,19 @@ PHP NEWS
4040
. Fixed bug #61961 (file_get_contents leaks when access empty file with
4141
maxlen set). (Reeze)
4242

43-
(merge after 5.3.11 release)
43+
08 May 2012, PHP 5.3.13
44+
- CGI
45+
. Improve fix for PHP-CGI query string parameter vulnerability, CVE-2012-2311.
46+
(Stas)
47+
48+
03 May 2012, PHP 5.3.12
49+
- Fix PHP-CGI query string parameter vulnerability, CVE-2012-1823. (Rasmus)
50+
51+
26 Apr 2012, PHP 5.3.11
4452

4553
- Core:
46-
. Fixed bug #61605 (header_remove() does not remove all headers).
47-
(Laruence)
48-
. Fixed bug #61541 (Segfault when using ob_* in output_callback).
49-
54+
. Fixed bug #61650 (ini parser crashes when using ${xxxx} ini variables
55+
(without apache2)). (Laruence)
5056
. Fixed bug #61273 (call_user_func_array with more than 16333 arguments
5157
leaks / crashes). (Laruence)
5258
. Fixed bug #61165 (Segfault - strip_tags()). (Laruence)
@@ -93,14 +99,17 @@ PHP NEWS
9399
. Fixed bug #61172 (Add Apache 2.4 support). (Chris Jones)
94100

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

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

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

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

135+
- pgsql:
136+
. Fixed bug #60718 (Compile problem with libpq (PostgreSQL 7.3 or less).
137+
(Yasuo Ohgaki)
138+
126139
- Phar:
127140
. Fixed bug #61184 (Phar::webPhar() generates headers with trailing NUL
128141
bytes). (Nikic)

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ AC_CONFIG_HEADER(main/php_config.h)
4141

4242
PHP_MAJOR_VERSION=5
4343
PHP_MINOR_VERSION=3
44-
PHP_RELEASE_VERSION=13
44+
PHP_RELEASE_VERSION=14
4545
PHP_EXTRA_VERSION="-dev"
4646
PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION"
4747
PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION`

main/php_version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/* edit configure.in to change version number */
33
#define PHP_MAJOR_VERSION 5
44
#define PHP_MINOR_VERSION 3
5-
#define PHP_RELEASE_VERSION 13
5+
#define PHP_RELEASE_VERSION 14
66
#define PHP_EXTRA_VERSION "-dev"
7-
#define PHP_VERSION "5.3.13-dev"
8-
#define PHP_VERSION_ID 50313
7+
#define PHP_VERSION "5.3.14-dev"
8+
#define PHP_VERSION_ID 50314

0 commit comments

Comments
 (0)