diff options
-rw-r--r-- | NEWS | 14 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | main/php_version.h | 4 |
3 files changed, 17 insertions, 3 deletions
@@ -5,6 +5,10 @@ PHP NEWS - Date: . Fixed bug #76131 (mismatch arginfo for date_create). (carusogabriel) +- Exif: + . Fixed bug#76130 (Heap Buffer Overflow (READ: 1786) in exif_iif_add_value). + (Stas) + - FPM: . Fixed bug #68440 (ERROR: failed to reload: execvp() failed: Argument list too long). (Jacob Hipps) @@ -14,14 +18,24 @@ PHP NEWS . Fixed bug #52070 (imagedashedline() - dashed line sometimes is not visible). (cmb) +- iconv: + . Fixed bug #76249 (stream filter convert.iconv leads to infinite loop on + invalid sequence). (Stas) + - intl: . Fixed bug #76153 (Intl compilation fails with icu4c 61.1). (Anatol) +- ldap: + . Fixed bug #76248 (Malicious LDAP-Server Response causes Crash). (Stas) + - mbstring: . Fixed bug #75944 (Wrong cp1251 detection). (dmk001) . Fixed bug #76113 (mbstring does not build with Oniguruma 6.8.1). (chrullrich, cmb) +- Phar: + . Fixed bug #76129 (fix for CVE-2018-5712 may not be complete). (Stas) + - phpdbg: . Fixed bug #76143 (Memory corruption: arbitrary NUL overwrite). (Laruence) diff --git a/configure.in b/configure.in index ab677b4bb0..afef0b4200 100644 --- a/configure.in +++ b/configure.in @@ -120,7 +120,7 @@ int zend_sprintf(char *buffer, const char *format, ...); PHP_MAJOR_VERSION=7 PHP_MINOR_VERSION=1 PHP_RELEASE_VERSION=17 -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 a96c41b9cf..2ed0a7f2d4 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -3,6 +3,6 @@ #define PHP_MAJOR_VERSION 7 #define PHP_MINOR_VERSION 1 #define PHP_RELEASE_VERSION 17 -#define PHP_EXTRA_VERSION "RC1" -#define PHP_VERSION "7.1.17RC1" +#define PHP_EXTRA_VERSION "" +#define PHP_VERSION "7.1.17" #define PHP_VERSION_ID 70117 |