Skip to content

Commit 6db09a0

Browse files
committed
Prepare PHP 7.3.8
1 parent ba259db commit 6db09a0

File tree

4 files changed

+19
-25
lines changed

4 files changed

+19
-25
lines changed

NEWS

Lines changed: 15 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,6 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3-
?? ??? ????, PHP 7.3.8
4-
5-
- EXIF:
6-
. Fixed bug #78256 (heap-buffer-overflow on exif_process_user_comment).
7-
(CVE-2019-11042) (Stas)
8-
. Fixed bug #78222 (heap-buffer-overflow on exif_scan_thumbnail).
9-
(CVE-2019-11041) (Stas)
10-
11-
- OPcache:
12-
. Fixed bug #78341 (Failure to detect smart branch in DFA pass). (Nikita)
13-
14-
- PCRE:
15-
. Fixed bug #78338 (Array cross-border reading in PCRE). (cmb)
16-
17-
- Phar:
18-
. Fixed bug #77919 (Potential UAF in Phar RSHUTDOWN). (cmb)
19-
20-
- Phpdbg:
21-
. Fixed bug #78297 (Include unexistent file memory leak). (Nikita)
22-
23-
18 Jul 2019, PHP 7.3.8RC1
3+
01 Aug 2019, PHP 7.3.8
244

255
- Core:
266
. Added syslog.filter=raw option. (Erik Lundin)
@@ -30,6 +10,12 @@ PHP NEWS
3010
. Fixed bug #69044 (discrepency between time and microtime). (krakjoe)
3111
. Updated timelib to 2018.02. (Derick)
3212

13+
- EXIF:
14+
. Fixed bug #78256 (heap-buffer-overflow on exif_process_user_comment).
15+
(CVE-2019-11042) (Stas)
16+
. Fixed bug #78222 (heap-buffer-overflow on exif_scan_thumbnail).
17+
(CVE-2019-11041) (Stas)
18+
3319
- FTP:
3420
. Fixed bug #78039 (FTP with SSL memory leak). (Nikita)
3521

@@ -49,6 +35,7 @@ PHP NEWS
4935
socket-to-stream). (Nikita)
5036

5137
- Opcache:
38+
. Fixed bug #78341 (Failure to detect smart branch in DFA pass). (Nikita)
5239
. Fixed bug #78189 (file cache strips last character of uname hash). (cmb)
5340
. Fixed bug #78202 (Opcache stats for cache hits are capped at 32bit NUM).
5441
(cmb)
@@ -57,13 +44,20 @@ PHP NEWS
5744
(Andrew Collington)
5845

5946
- PCRE:
47+
. Fixed bug #78338 (Array cross-border reading in PCRE). (cmb)
6048
. Fixed bug #78197 (PCRE2 version check in configure fails for "##.##-xxx"
6149
version strings). (pgnet, Peter Kokot)
6250

6351
- PDO_Sqlite:
6452
. Fixed bug #78192 (SegFault when reuse statement after schema has changed).
6553
(Vincent Quatrevieux)
6654

55+
- Phar:
56+
. Fixed bug #77919 (Potential UAF in Phar RSHUTDOWN). (cmb)
57+
58+
- Phpdbg:
59+
. Fixed bug #78297 (Include unexistent file memory leak). (Nikita)
60+
6761
- SQLite:
6862
. Upgraded to SQLite 3.28.0. (cmb)
6963

Zend/zend.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#ifndef ZEND_H
2121
#define ZEND_H
2222

23-
#define ZEND_VERSION "3.3.8RC1"
23+
#define ZEND_VERSION "3.3.8"
2424

2525
#define ZEND_ENGINE_3
2626

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
108108
PHP_MAJOR_VERSION=7
109109
PHP_MINOR_VERSION=3
110110
PHP_RELEASE_VERSION=8
111-
PHP_EXTRA_VERSION="RC1"
111+
PHP_EXTRA_VERSION=""
112112
PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION"
113113
PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION`
114114

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 3
55
#define PHP_RELEASE_VERSION 8
6-
#define PHP_EXTRA_VERSION "RC1"
7-
#define PHP_VERSION "7.3.8RC1"
6+
#define PHP_EXTRA_VERSION ""
7+
#define PHP_VERSION "7.3.8"
88
#define PHP_VERSION_ID 70308

0 commit comments

Comments
 (0)