Skip to content

Commit 637367f

Browse files
committed
Merge branch 'PHP-5.5' of git.php.net:php-src into PHP-5.5
Conflicts: NEWS configure.in main/php_version.h
2 parents ce5efa7 + 05baed5 commit 637367f

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

NEWS

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,25 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3+
?? ??? 2014, PHP 5.5.17
4+
5+
36
?? ??? 2014, PHP 5.5.16
47

58
- COM:
69
. Fixed missing type checks in com_event_sink (Yussuf Khalil, Stas).
710

11+
- Fileinfo:
12+
. Fixed bug #67705 (extensive backtracking in rule regular expression).
13+
(CVE-2014-3538) (Remi)
14+
815
- FPM:
916
. Fixed bug #67635 (php links to systemd libraries without using pkg-config).
1017
(pacho@gentoo.org, Remi)
1118

19+
- GD:
20+
. Fixed bug #66901 (php-gd 'c_color' NULL pointer dereference).
21+
(CVE-2014-2497) (Remi)
22+
1223
- Milter:
1324
. Fixed bug #67715 (php-milter does not build and crashes randomly). (Mike)
1425

@@ -31,6 +42,10 @@ PHP NEWS
3142
. Fixed bug #60616 (odbc_fetch_into returns junk data at end of multi-byte
3243
char fields). (Keyur)
3344

45+
- Zlib:
46+
. Fixed bug #67724 (chained zlib filters silently fail with large amounts of
47+
data). (Mike)
48+
3449
24 Jul 2014, PHP 5.5.15
3550

3651
- Core:

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
119119

120120
PHP_MAJOR_VERSION=5
121121
PHP_MINOR_VERSION=5
122-
PHP_RELEASE_VERSION=15
122+
PHP_RELEASE_VERSION=17
123123
PHP_EXTRA_VERSION="-dev"
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`

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 5
5-
#define PHP_RELEASE_VERSION 15
5+
#define PHP_RELEASE_VERSION 17
66
#define PHP_EXTRA_VERSION "-dev"
7-
#define PHP_VERSION "5.5.15-dev"
8-
#define PHP_VERSION_ID 50515
7+
#define PHP_VERSION "5.5.17-dev"
8+
#define PHP_VERSION_ID 50517

0 commit comments

Comments
 (0)