Skip to content

Commit 2610d63

Browse files
committed
5.6.9 is ready
1 parent f75d213 commit 2610d63

File tree

3 files changed

+23
-4
lines changed

3 files changed

+23
-4
lines changed

NEWS

+20-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3-
30 Apr 2015, PHP 5.6.9RC1
3+
14 May 2015, PHP 5.6.9
44

55
- Core:
66
. Fixed bug #69467 (Wrong checked for the interface by using Trait).
@@ -15,6 +15,15 @@ PHP NEWS
1515
(Nikita)
1616
. Fixed bug #69472 (php_sys_readlink ignores misc errors from
1717
GetFinalPathNameByHandleA). (Jan Starke)
18+
. Fixed bug #69364 (PHP Multipart/form-data remote dos Vulnerability). (Stas)
19+
. Fixed bug #69403 (str_repeat() sign mismatch based memory corruption).
20+
(Stas)
21+
. Fixed bug #69418 (CVE-2006-7243 fix regressions in 5.4+). (Stas)
22+
. Fixed bug #69522 (heap buffer overflow in unpack()). (Stas)
23+
24+
- FTP:
25+
. Fixed bug #69545 (Integer overflow in ftp_genlist() resulting in heap
26+
overflow). (Stas)
1827

1928
- ODBC:
2029
. Fixed bug #69354 (Incorrect use of SQLColAttributes with ODBC 3.0).
@@ -28,6 +37,16 @@ PHP NEWS
2837
. Fixed bug #69402 (Reading empty SSL stream hangs until timeout).
2938
(Daniel Lowrey)
3039

40+
- PCNTL:
41+
. Fixed bug #68598 (pcntl_exec() should not allow null char). (Stas)
42+
43+
- PCRE
44+
. Upgraded pcrelib to 8.37.
45+
46+
- Phar:
47+
. Fixed bug #69453 (Memory Corruption in phar_parse_tarfile when entry
48+
filename starts with null). (Stas)
49+
3150
16 Apr 2015, PHP 5.6.8
3251

3352
- Core:

configure.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
120120
PHP_MAJOR_VERSION=5
121121
PHP_MINOR_VERSION=6
122122
PHP_RELEASE_VERSION=9
123-
PHP_EXTRA_VERSION="RC1"
123+
PHP_EXTRA_VERSION=""
124124
PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION"
125125
PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION`
126126

main/php_version.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
#define PHP_MAJOR_VERSION 5
44
#define PHP_MINOR_VERSION 6
55
#define PHP_RELEASE_VERSION 9
6-
#define PHP_EXTRA_VERSION "RC1"
7-
#define PHP_VERSION "5.6.9RC1"
6+
#define PHP_EXTRA_VERSION ""
7+
#define PHP_VERSION "5.6.9"
88
#define PHP_VERSION_ID 50609

0 commit comments

Comments
 (0)