diff options
-rw-r--r-- | NEWS | 36 | ||||
-rw-r--r-- | Zend/zend.h | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | main/php_version.h | 4 |
4 files changed, 19 insertions, 25 deletions
@@ -1,26 +1,6 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? ??? ????, PHP 7.3.8 - -- EXIF: - . Fixed bug #78256 (heap-buffer-overflow on exif_process_user_comment). - (CVE-2019-11042) (Stas) - . Fixed bug #78222 (heap-buffer-overflow on exif_scan_thumbnail). - (CVE-2019-11041) (Stas) - -- OPcache: - . Fixed bug #78341 (Failure to detect smart branch in DFA pass). (Nikita) - -- PCRE: - . Fixed bug #78338 (Array cross-border reading in PCRE). (cmb) - -- Phar: - . Fixed bug #77919 (Potential UAF in Phar RSHUTDOWN). (cmb) - -- Phpdbg: - . Fixed bug #78297 (Include unexistent file memory leak). (Nikita) - -18 Jul 2019, PHP 7.3.8RC1 +01 Aug 2019, PHP 7.3.8 - Core: . Added syslog.filter=raw option. (Erik Lundin) @@ -30,6 +10,12 @@ PHP NEWS . Fixed bug #69044 (discrepency between time and microtime). (krakjoe) . Updated timelib to 2018.02. (Derick) +- EXIF: + . Fixed bug #78256 (heap-buffer-overflow on exif_process_user_comment). + (CVE-2019-11042) (Stas) + . Fixed bug #78222 (heap-buffer-overflow on exif_scan_thumbnail). + (CVE-2019-11041) (Stas) + - FTP: . Fixed bug #78039 (FTP with SSL memory leak). (Nikita) @@ -49,6 +35,7 @@ PHP NEWS socket-to-stream). (Nikita) - Opcache: + . Fixed bug #78341 (Failure to detect smart branch in DFA pass). (Nikita) . Fixed bug #78189 (file cache strips last character of uname hash). (cmb) . Fixed bug #78202 (Opcache stats for cache hits are capped at 32bit NUM). (cmb) @@ -57,6 +44,7 @@ PHP NEWS (Andrew Collington) - PCRE: + . Fixed bug #78338 (Array cross-border reading in PCRE). (cmb) . Fixed bug #78197 (PCRE2 version check in configure fails for "##.##-xxx" version strings). (pgnet, Peter Kokot) @@ -64,6 +52,12 @@ PHP NEWS . Fixed bug #78192 (SegFault when reuse statement after schema has changed). (Vincent Quatrevieux) +- Phar: + . Fixed bug #77919 (Potential UAF in Phar RSHUTDOWN). (cmb) + +- Phpdbg: + . Fixed bug #78297 (Include unexistent file memory leak). (Nikita) + - SQLite: . Upgraded to SQLite 3.28.0. (cmb) diff --git a/Zend/zend.h b/Zend/zend.h index 158fe170c6..5d9def5014 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -20,7 +20,7 @@ #ifndef ZEND_H #define ZEND_H -#define ZEND_VERSION "3.3.8RC1" +#define ZEND_VERSION "3.3.8" #define ZEND_ENGINE_3 diff --git a/configure.ac b/configure.ac index 0cfb751eb5..d32f28bcfc 100644 --- a/configure.ac +++ b/configure.ac @@ -108,7 +108,7 @@ int zend_sprintf(char *buffer, const char *format, ...); PHP_MAJOR_VERSION=7 PHP_MINOR_VERSION=3 PHP_RELEASE_VERSION=8 -PHP_EXTRA_VERSION="RC1" +PHP_EXTRA_VERSION="" 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` diff --git a/main/php_version.h b/main/php_version.h index e66cf5e9ad..f3cd495eaf 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -3,6 +3,6 @@ #define PHP_MAJOR_VERSION 7 #define PHP_MINOR_VERSION 3 #define PHP_RELEASE_VERSION 8 -#define PHP_EXTRA_VERSION "RC1" -#define PHP_VERSION "7.3.8RC1" +#define PHP_EXTRA_VERSION "" +#define PHP_VERSION "7.3.8" #define PHP_VERSION_ID 70308 |