Skip to content

Commit

Permalink
add news items and set versions
Browse files Browse the repository at this point in the history
  • Loading branch information
krakjoe committed Apr 24, 2018
1 parent 7ba447c commit 0f38975
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -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`

Expand Down
4 changes: 2 additions & 2 deletions main/php_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 0f38975

Please sign in to comment.