Skip to content

Commit

Permalink
5.5.9-dev now
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Pauli committed Jan 10, 2014
1 parent 4f115c0 commit 2778957
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 18 deletions.
36 changes: 22 additions & 14 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? 2013, PHP 5.5.8
?? ??? 2014, PHP 5.5.9

- GD:
. Fixed bug #66356 (Heap Overflow Vulnerability in imagecrop()).
(Laruence, Remi)

- OPCache:
. Fixed bug #66298 (ext/opcache/Optimizer/zend_optimizer.c has dos-style
^M as lineend). (Laruence)

- Standard
. Fixed bug #66395 (basename function doesn't remove drive letter). (Anatol)

- Sockets:
. Fixed bug #66381 (__ss_family was changed on AIX 5.3). (Felipe)

- Zend Engine
. Fixed bug #66009 (Failed compilation of PHP extension with C++ std
library using VS 2012). (Anatol)

09 Jan 2014, PHP 5.5.8

- Core:
. Disallowed JMP into a finally block. (Laruence)
Expand Down Expand Up @@ -29,8 +49,6 @@ PHP NEWS
. Fixed bug #66229 (128.0.0.0/16 isn't reserved any longer). (Adam)

- GD:
. Fixed bug #66356 (Heap Overflow Vulnerability in imagecrop()).
(Laruence, Remi)
. Fixed bug #64405 (Use freetype-config for determining freetype2 dir(s)).
(Adam)

Expand All @@ -42,9 +60,7 @@ PHP NEWS
. Fixed bug #65486 (mysqli_poll() is broken on win x64). (Anatol)

- OPCache:
. Fixed bug #66298 (ext/opcache/Optimizer/zend_optimizer.c has dos-style
^M as lineend). (Laruence)
. Fixed reavlidate_path=1 behavior to avoid caching of symlinks values.
. Fixed revalidate_path=1 behavior to avoid caching of symlinks values.
(Dmitry)
. Fixed Issue #140: "opcache.enable_file_override" doesn't respect
"opcache.revalidate_freq". (Dmitry).
Expand All @@ -56,11 +72,7 @@ PHP NEWS
. Fixed bug #66112 (Use after free condition in SOAP extension).
(martin dot koegler at brz dot gv dot at)

- Standard
. Fixed bug #66395 (basename function doesn't remove drive letter). (Anatol)

- Sockets:
. Fixed bug #66381 (__ss_family was changed on AIX 5.3). (Felipe)
. Fixed bug #65923 (ext/socket assumes AI_V4MAPPED is defined). (Felipe)

- XSL
Expand All @@ -70,10 +82,6 @@ PHP NEWS
- ZIP:
. Fixed Bug #66321 (ZipArchive::open() ze_obj->filename_len not real). (Remi)

- Zend Engine
. Fixed bug #66009 (Failed compilation of PHP extension with C++ std
library using VS 2012). (Anatol)

12 Dec 2013, PHP 5.5.7

- CLI server:
Expand Down
2 changes: 1 addition & 1 deletion configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ int zend_sprintf(char *buffer, const char *format, ...);

PHP_MAJOR_VERSION=5
PHP_MINOR_VERSION=5
PHP_RELEASE_VERSION=8
PHP_RELEASE_VERSION=9
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
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/* edit configure.in to change version number */
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 5
#define PHP_RELEASE_VERSION 8
#define PHP_RELEASE_VERSION 9
#define PHP_EXTRA_VERSION "-dev"
#define PHP_VERSION "5.5.8-dev"
#define PHP_VERSION_ID 50508
#define PHP_VERSION "5.5.9-dev"
#define PHP_VERSION_ID 50509

0 comments on commit 2778957

Please sign in to comment.