1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00
This commit is contained in:
Joe Watkins
2018-03-02 06:54:59 +01:00
parent 9848b24355
commit ffa80544cf
6 changed files with 133 additions and 6 deletions

View File

@@ -64,6 +64,52 @@ site_header("PHP 7 ChangeLog", array("current" => "docs", "css" => array("change
</ul>
<!-- }}} --></section>
<section class="version" id="7.1.15"><!-- {{{ 7.1.15 -->
<h3>Version 7.1.15</h3>
<b><?php release_date('01-Mar-2018'); ?></b>
<ul><li>Apache2Handler:
<ul>
<li><?php bugfix(75882); ?> (a simple way for segfaults in threadsafe php just with configuration).</li>
</ul></li>
<li>Date:
<ul>
<li><?php bugfix(75857); ?> (Timezone gets truncated when formatted).</li>
<li><?php bugfix(75928); ?> (Argument 2 for `DateTimeZone::listIdentifiers()` should accept `null`).</li>
<li><?php bugfix(68406); ?> (calling var_dump on a DateTimeZone object modifies it).</li>
</ul></li>
<li>PGSQL:
<ul>
<li>Fixed #75838 (Memory leak in pg_escape_bytea()).</li>
</ul></li>
<li>ODBC:
<ul>
<li><?php bugfix(73725); ?> (Unable to retrieve value of varchar(max) type).</li>
</ul></li>
<li>LDAP:
<ul>
<li><?php bugfix(49876); ?> (Fix LDAP path lookup on 64-bit distros).</li>
</ul></li>
<li>libxml2:
<ul>
<li><?php bugfix(75871); ?> (use pkg-config where available).</li>
</ul></li>
<li>Phar:
<ul>
<li><?php bugfix(65414); ?> (deal with leading slash when adding files correctly).</li>
</ul></li>
<li>SPL:
<ul>
<li><?php bugfix(74519); ?> (strange behavior of AppendIterator).</li>
</ul></li>
<li>Standard:
<ul>
<li><?php bugfix(75916); ?> (DNS_CAA record results contain garbage).</li>
<li><?php bugfix(75981); ?> (stack-buffer-overflow while parsing HTTP response).</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="7.0.28"><!-- {{{ 7.0.28 -->
<h3>Version 7.0.28</h3>
<b><?php release_date('01-Mar-2018'); ?></b>

View File

@@ -9,6 +9,7 @@
<uri>http://php.net/contact</uri>
<email>php-webmaster@lists.php.net</email>
</author>
<xi:include href="entries/2018-03-02-1.xml"/>
<xi:include href="entries/2018-03-01-3.xml"/>
<xi:include href="entries/2018-03-01-2.xml"/>
<xi:include href="entries/2018-03-01-1.xml"/>

View File

@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<entry xmlns="http://www.w3.org/2005/Atom">
<title>PHP 7.1.15 Released</title>
<id>http://php.net/archive/2018.php#id2018-03-02-1</id>
<published>2018-03-02T05:54:19+00:00</published>
<updated>2018-03-02T05:54:19+00:00</updated>
<category term="frontpage" label="PHP.net frontpage news"/>
<category term="releases" label="New PHP release"/>
<link href="http://php.net/index.php#id2018-03-02-1" rel="alternate" type="text/html"/>
<link href="http://php.net/archive/2018.php#id2018-03-02-1" rel="via" type="text/html"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p>The PHP development team announces the immediate availability of PHP
7.1.15. This is a security fix release, containing one security fix and many bug fixes.
All PHP 7.1 users are encouraged to upgrade to this version.
</p>
<p>For source downloads of PHP 7.1.15 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>,
Windows source and binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.
The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-7.php#7.1.15">ChangeLog</a>.
</p>
</div>
</content>
</entry>

View File

@@ -2,6 +2,39 @@
$OLDRELEASES = array (
7 =>
array (
'7.1.14' =>
array (
'announcement' =>
array (
'English' => '/releases/7_1_14.php',
),
'source' =>
array (
0 =>
array (
'filename' => 'php-7.1.14.tar.bz2',
'name' => 'PHP 7.1.14 (tar.bz2)',
'sha256' => '63b2fd139ed7656756b0fa290bc42f8fff854723c3d2710a700e646370c581f4',
'date' => '1 Feb 2018',
),
1 =>
array (
'filename' => 'php-7.1.14.tar.gz',
'name' => 'PHP 7.1.14 (tar.gz)',
'sha256' => '8c7360209d255ee46d388bdcd43ef1a2d14b370c331be30ea628ece18a1e7683',
'date' => '1 Feb 2018',
),
2 =>
array (
'filename' => 'php-7.1.14.tar.xz',
'name' => 'PHP 7.1.14 (tar.xz)',
'sha256' => 'c09f0c1074f5689b492d79034adb84e6a6c6d08c6763c02282e6318d41156779',
'date' => '1 Feb 2018',
),
),
'date' => '1 Feb 2018',
'museum' => false,
),
'7.2.2' =>
array (
'announcement' =>

View File

@@ -29,15 +29,15 @@ $PHP_7_2_SHA256 = array(
);
/* PHP 7.1 Release */
$PHP_7_1_RC = "7.1.15RC1"; // Current RC version (e.g., '5.6.7RC1') or false
$PHP_7_1_RC = false; // Current RC version (e.g., '5.6.7RC1') or false
$PHP_7_1_RC_DATE = "15 Feb 2018";
$PHP_7_1_VERSION = "7.1.14";
$PHP_7_1_DATE = "1 Feb 2018";
$PHP_7_1_VERSION = "7.1.15";
$PHP_7_1_DATE = "1 Mar 2018";
$PHP_7_1_SHA256 = array(
"tar.bz2" => "63b2fd139ed7656756b0fa290bc42f8fff854723c3d2710a700e646370c581f4",
"tar.gz" => "8c7360209d255ee46d388bdcd43ef1a2d14b370c331be30ea628ece18a1e7683",
"tar.xz" => "c09f0c1074f5689b492d79034adb84e6a6c6d08c6763c02282e6318d41156779",
"tar.bz2" => "e117a54738e9485de5fc75673d39dbe937dd87f0f9cc9e281960ef9b961adcbd",
"tar.gz" => "0669c68a52cbd2f1cfa83354918ed03b0bcaa34ed9bafaee7dfd343461b881d4",
"tar.xz" => "0e17192fb43532e4ebaa190ecec9c7e59deea7dadb7dab67b19c2081a68bd817",
);
/* PHP 7.0 Release */

22
releases/7_1_15.php Normal file
View File

@@ -0,0 +1,22 @@
<?php
// $Id$
$_SERVER['BASE_PAGE'] = 'releases/7_1_15.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
site_header("PHP 7.1.15 Release Announcement");
?>
<h1>PHP 7.1.15 Release Announcement</h1>
<p>The PHP development team announces the immediate availability of PHP
7.1.15. This is a security fix release, containing one security fix and many bug fixes.
All PHP 7.1 users are encouraged to upgrade to this version.
</p>
<p>For source downloads of PHP 7.1.15 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>,
Windows source and binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.
The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-7.php#7.1.15">ChangeLog</a>.
</p>
<?php site_footer(); ?>