Skip to content

Commit d005ed9

Browse files
committed
5.5.3
1 parent b7f033b commit d005ed9

File tree

3 files changed

+31
-30
lines changed

3 files changed

+31
-30
lines changed

NEWS

Lines changed: 27 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,11 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3-
15 Aug 2013, PHP 5.5.2
4-
5-
- Core:
6-
. Fixed bug #62691 (solaris sed has no -i switch). (Chris Jones)
7-
. Fixed bug #61345 (CGI mode - make install don't work). (Michael Heimpold)
8-
. Fixed bug #61268 (--enable-dtrace leads make to clobber
9-
Zend/zend_dtrace.d) (Chris Jones)
10-
11-
- DOM:
12-
. Added flags option to DOMDocument::schemaValidate() and
13-
DOMDocument::schemaValidateSource(). Added LIBXML_SCHEMA_CREATE flag.
14-
(Chris Wright)
3+
22 Aug 2013, PHP 5.5.3
154

16-
- Sessions:
17-
. Implemented strict sessions RFC (https://wiki.php.net/rfc/strict_sessions)
18-
which protects against session fixation attacks and session collisions.
19-
(Yasuo Ohgaki)
20-
. Fixed possible buffer overflow under Windows. Note: Not a security fix.
21-
(Yasuo)
22-
. Changed session.auto_start to PHP_INI_PERDIR. (Yasuo)
23-
24-
- Pgsql:
25-
. Fixed bug #62978 (Disallow possible SQL injections with pg_select()/pg_update()
26-
/pg_delete()/pg_insert()). (Yasuo)
5+
- Openssl:
6+
. Fixed UMR in fix for CVE-2013-4248.
277

28-
?? ??? 2013, PHP 5.5.2
8+
15 Aug 2013, PHP 5.5.2
299

3010
- Core:
3111
. Fixed bug #65372 (Segfault in gc_zval_possible_root when return reference
@@ -36,26 +16,47 @@ PHP NEWS
3616
. Fixed bug #65304 (Use of max int in array_sum). (Laruence)
3717
. Fixed bug #65291 (get_defined_constants() causes PHP to crash in a very
3818
limited case). (Arpad)
19+
. Fixed bug #62691 (solaris sed has no -i switch). (Chris Jones)
20+
. Fixed bug #61345 (CGI mode - make install don't work). (Michael Heimpold)
21+
. Fixed bug #61268 (--enable-dtrace leads make to clobber
22+
Zend/zend_dtrace.d) (Chris Jones)
23+
24+
- DOM:
25+
. Added flags option to DOMDocument::schemaValidate() and
26+
DOMDocument::schemaValidateSource(). Added LIBXML_SCHEMA_CREATE flag.
27+
(Chris Wright)
3928

4029
- OPcache:
4130
. Added opcache.restrict_api configuration directive that may limit
42-
usage of OPcahce API functions only to patricular script(s). (Dmitry)
31+
usage of OPcache API functions only to particular script(s). (Dmitry)
4332
. Added support for glob symbols in blacklist entries (?, *, **).
4433
(Terry Elison, Dmitry)
4534
. Fixed bug #65338 (Enabling both php_opcache and php_wincache AVs on
4635
shutdown). (Dmitry)
4736

4837
- Openssl:
49-
. Fixed handling null bytes in subjectAltName (CVE-2013-4073).
38+
. Fixed handling null bytes in subjectAltName (CVE-2013-4248).
5039
(Christian Heimes)
5140

5241
- PDO_mysql:
5342
. Fixed bug #65299 (pdo mysql parsing errors). (Johannes)
5443

44+
- Pgsql:
45+
. Fixed bug #62978 (Disallow possible SQL injections with pg_select()/pg_update()
46+
/pg_delete()/pg_insert()). (Yasuo)
47+
5548
- Phar:
5649
. Fixed bug #65028 (Phar::buildFromDirectory creates corrupt archives for
5750
some specific contents). (Stas)
5851

52+
- Sessions:
53+
. Implemented strict sessions RFC (https://wiki.php.net/rfc/strict_sessions)
54+
which protects against session fixation attacks and session collisions.
55+
(CVE-2011-4718). (Yasuo Ohgaki)
56+
. Fixed possible buffer overflow under Windows. Note: Not a security fix.
57+
(Yasuo)
58+
. Changed session.auto_start to PHP_INI_PERDIR. (Yasuo)
59+
5960
- SOAP:
6061
. Fixed bug #65018 (SoapHeader problems with SoapServer). (Dmitry)
6162

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=2
122+
PHP_RELEASE_VERSION=3
123123
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`

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 2
5+
#define PHP_RELEASE_VERSION 3
66
#define PHP_EXTRA_VERSION ""
7-
#define PHP_VERSION "5.5.2"
8-
#define PHP_VERSION_ID 50502
7+
#define PHP_VERSION "5.5.3"
8+
#define PHP_VERSION_ID 50503

0 commit comments

Comments
 (0)