diff --git a/ChangeLog-7.php b/ChangeLog-7.php
index 393f1caba..bee4e1e7e 100644
--- a/ChangeLog-7.php
+++ b/ChangeLog-7.php
@@ -6,7 +6,61 @@ site_header("PHP 7 ChangeLog", array("current" => "docs", "css" => array("change
?>
PHP 7 ChangeLog
-
+
+Version 7.1.17
+
+Date:
+
+ (mismatch arginfo for date_create).
+
+Exif:
+
+ Fixed bug#76130 (Heap Buffer Overflow (READ: 1786) in exif_iif_add_value).
+
+FPM:
+
+ (ERROR: failed to reload: execvp() failed: Argument list too long).
+ Fixed incorrect write to getenv result in FPM reload.
+
+GD:
+
+ (imagedashedline() - dashed line sometimes is not visible).
+
+iconv:
+
+ (stream filter convert.iconv leads to infinite loop on invalid sequence).
+
+intl:
+
+ (Intl compilation fails with icu4c 61.1).
+
+ldap:
+
+ (Malicious LDAP-Server Response causes Crash).
+
+mbstring:
+
+ (Wrong cp1251 detection).
+ (mbstring does not build with Oniguruma 6.8.1).
+
+Phar:
+
+ (fix for CVE-2018-5712 may not be complete).
+
+phpdbg:
+
+ (Memory corruption: arbitrary NUL overwrite).
+
+SPL:
+
+ (mismatch arginfo for splarray constructor).
+
+standard:
+
+ (incorrect url in header for mt_rand).
+
+
+
Version 7.0.30
diff --git a/archive/archive.xml b/archive/archive.xml
index ab773504d..835c3083c 100644
--- a/archive/archive.xml
+++ b/archive/archive.xml
@@ -9,6 +9,7 @@
http://php.net/contact
php-webmaster@lists.php.net
+
diff --git a/archive/entries/2018-04-26-3.xml b/archive/entries/2018-04-26-3.xml
new file mode 100644
index 000000000..4b9564a80
--- /dev/null
+++ b/archive/entries/2018-04-26-3.xml
@@ -0,0 +1,25 @@
+
+
+ PHP 7.1.17 Released
+ http://php.net/archive/2018.php#id2018-04-26-3
+ 2018-04-26T16:11:23+00:00
+ 2018-04-26T16:11:23+00:00
+
+
+
+
+
+
+
The PHP development team announces the immediate availability of PHP
+ 7.1.17. This is a security fix release, containing many bugfixes.
+
+ All PHP 7.1 users are encouraged to upgrade to this version.
+
+
+
For source downloads of PHP 7.1.17 please visit our downloads page ,
+ Windows source and binaries can be found on windows.php.net/download/ .
+ The list of changes is recorded in the ChangeLog .
+
+
+
+
diff --git a/include/releases.inc b/include/releases.inc
index 66930402a..82e6cf7b8 100644
--- a/include/releases.inc
+++ b/include/releases.inc
@@ -2,6 +2,39 @@
$OLDRELEASES = array (
7 =>
array (
+ '7.1.16' =>
+ array (
+ 'announcement' =>
+ array (
+ 'English' => '/releases/7_1_16.php',
+ ),
+ 'source' =>
+ array (
+ 0 =>
+ array (
+ 'filename' => 'php-7.1.16.tar.bz2',
+ 'name' => 'PHP 7.1.16 (tar.bz2)',
+ 'sha256' => '348e2af9c7c0f327a57a972674078777dfde189e2598acbcb8618b9645b0e7e5',
+ 'date' => '29 Mar 2018',
+ ),
+ 1 =>
+ array (
+ 'filename' => 'php-7.1.16.tar.gz',
+ 'name' => 'PHP 7.1.16 (tar.gz)',
+ 'sha256' => 'c8e6fed5b350b29a5b9eaa9fce7c5e8618629346e9a58212f3dc380046065442',
+ 'date' => '29 Mar 2018',
+ ),
+ 2 =>
+ array (
+ 'filename' => 'php-7.1.16.tar.xz',
+ 'name' => 'PHP 7.1.16 (tar.xz)',
+ 'sha256' => 'a5d67e477248a3911af7ef85c8400c1ba8cd632184186fd31070b96714e669f1',
+ 'date' => '29 Mar 2018',
+ ),
+ ),
+ 'date' => '29 Mar 2018',
+ 'museum' => false,
+ ),
'7.0.29' =>
array (
'announcement' =>
diff --git a/include/version.inc b/include/version.inc
index b3ce4d745..4e6534962 100644
--- a/include/version.inc
+++ b/include/version.inc
@@ -32,12 +32,12 @@ $PHP_7_2_SHA256 = array(
$PHP_7_1_RC = false; // Current RC version (e.g., '5.6.7RC1') or false
$PHP_7_1_RC_DATE = "15 Mar 2018";
-$PHP_7_1_VERSION = "7.1.16";
-$PHP_7_1_DATE = "29 Mar 2018";
+$PHP_7_1_VERSION = "7.1.17";
+$PHP_7_1_DATE = "26 Apr 2018";
$PHP_7_1_SHA256 = array(
- "tar.bz2" => "348e2af9c7c0f327a57a972674078777dfde189e2598acbcb8618b9645b0e7e5",
- "tar.gz" => "c8e6fed5b350b29a5b9eaa9fce7c5e8618629346e9a58212f3dc380046065442",
- "tar.xz" => "a5d67e477248a3911af7ef85c8400c1ba8cd632184186fd31070b96714e669f1",
+ "tar.bz2" => "e124e3ac552c50f3890ed981d07b2ee473cac961885e75186ded0bbb5b78dbcf",
+ "tar.gz" => "aba44265bf814a020282afa63321323e1f81da61bd7318ab2b941857a15cb144",
+ "tar.xz" => "1a784806866e06367f7a5c88775d239d6f30041c7ce65a8232d03a3d4de56d56",
);
/* PHP 7.0 Release */
diff --git a/releases/7_1_17.php b/releases/7_1_17.php
new file mode 100644
index 000000000..6385f73a3
--- /dev/null
+++ b/releases/7_1_17.php
@@ -0,0 +1,22 @@
+
+
+ PHP 7.1.17 Release Announcement
+
+ The PHP development team announces the immediate availability of PHP
+ 7.1.17. This is a security fix release, containing many bugfixes.
+
+ All PHP 7.1 users are encouraged to upgrade to this version.
+
+
+ For source downloads of PHP 7.1.17 please visit our downloads page ,
+ Windows source and binaries can be found on windows.php.net/download/ .
+ The list of changes is recorded in the ChangeLog .
+
+
+
+