Skip to content

Commit cc766d7

Browse files
committed
set versions and update NEWS
1 parent e720bc0 commit cc766d7

File tree

3 files changed

+32
-7
lines changed

3 files changed

+32
-7
lines changed

NEWS

Lines changed: 29 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3-
05 Jan 2017 PHP 7.0.15RC1
3+
19 Jan 2017 PHP 7.0.15
44

55
- Core:
66
. Fixed bug #73792 (invalid foreach loop hangs script). (Dmitry)
@@ -9,6 +9,15 @@ PHP NEWS
99
. Fixed bug #73585 (Logging of "Internal Zend error - Missing class
1010
information" missing class name). (Laruence)
1111
. Fixed bug #73753 (unserialized array pointer not advancing). (David Walker)
12+
. Fixed bug #73825 (Heap out of bounds read on unserialize in
13+
finish_nested_data()). (Stas)
14+
. Fixed bug #73831 (NULL Pointer Dereference while unserialize php object).
15+
(Stas)
16+
. Fixed bug #73832 (Use of uninitialized memory in unserialize()). (Stas)
17+
. Fixed bug #73092 (Unserialize use-after-free when resizing object's
18+
properties hash table). (Nikita)
19+
. Fixed bug #69425 (Use After Free in unserialize()). (Nikita)
20+
. Fixed bug #72731 (Type Confusion in Object Deserialization). (Nikita)
1221

1322
- COM:
1423
. Fixed bug #73679 (DOTNET read access violation using invalid codepage).
@@ -17,6 +26,17 @@ PHP NEWS
1726
- DOM:
1827
. Fixed bug #67474 (getElementsByTagNameNS filter on default ns). (aboks)
1928

29+
- EXIF:
30+
. Bug bug #73737 (FPE when parsing a tag format). (Stas)
31+
32+
- GD:
33+
. Fixed bug #73869 (Signed Integer Overflow gd_io.c). (cmb)
34+
. Fixed bug #73868 (DOS vulnerability in gdImageCreateFromGd2Ctx()). (cmb)
35+
36+
- GMP:
37+
. Fixed bug #70513 (GMP Deserialization Type Confusion Vulnerability).
38+
(Nikita)
39+
2040
- Mysqli:
2141
. Fixed bug #73462 (Persistent connections don't set $connect_errno).
2242
(darkain)
@@ -34,9 +54,10 @@ PHP NEWS
3454
. Fixed bug #72931 (PDO_FIREBIRD with Firebird 3.0 not work on returning
3555
statement). (Dorin Marcoci)
3656

37-
- Streams:
38-
. Fixed bug #73586 (php_user_filter::$stream is not set to the stream the
39-
filter is working on). (Dmitry)
57+
- Phar:
58+
. Fixed bug #73773 (Seg fault when loading hostile phar). (Stas)
59+
. Fixed bug #73768 (Memory corruption when loading hostile phar). (Stas)
60+
. Fixed bug #73764 (Crash while loading hostile phar archive). (Stas)
4061

4162
- Phpdbg:
4263
. Fixed bug #73615 (phpdbg without option never load .phpdbginit at startup).
@@ -47,6 +68,10 @@ PHP NEWS
4768
- Reflection:
4869
. Fixed bug #46103 (ReflectionObject memory leak). (Nikita)
4970

71+
- Streams:
72+
. Fixed bug #73586 (php_user_filter::$stream is not set to the stream the
73+
filter is working on). (Dmitry)
74+
5075
- SQLite3:
5176
. Reverted fix for bug #73530 (Unsetting result set may reset other result
5277
set). (cmb)

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
120120
PHP_MAJOR_VERSION=7
121121
PHP_MINOR_VERSION=0
122122
PHP_RELEASE_VERSION=15
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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
#define PHP_MAJOR_VERSION 7
44
#define PHP_MINOR_VERSION 0
55
#define PHP_RELEASE_VERSION 15
6-
#define PHP_EXTRA_VERSION "RC1"
7-
#define PHP_VERSION "7.0.15RC1"
6+
#define PHP_EXTRA_VERSION ""
7+
#define PHP_VERSION "7.0.15"
88
#define PHP_VERSION_ID 70015

0 commit comments

Comments
 (0)