summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Watkins <krakjoe@php.net>2018-04-24 13:35:56 +0200
committerJoe Watkins <krakjoe@php.net>2018-04-24 13:35:56 +0200
commit0f3897573515b7aca3e5425d77baee14fe33edd4 (patch)
tree89060699f5c7f1a47e6162630935754b696821a9
parent7ba447cae24ab44234b2b3feaf2ae188ef3e7795 (diff)
downloadphp-git-PHP-7.1.17.tar.gz
add news items and set versionsphp-7.1.17PHP-7.1.17
-rw-r--r--NEWS14
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 17 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 5a6addc26d..dc18476c25 100644
--- a/NEWS
+++ b/NEWS
@@ -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