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:
Ferenc Kovacs
2018-09-13 19:58:32 +02:00
parent 92ef73d6d7
commit 721689c1aa
6 changed files with 96 additions and 5 deletions

View File

@@ -8,6 +8,16 @@ site_header("PHP 5 ChangeLog", array("current" => "docs", "css" => array("change
<h1>PHP 5 ChangeLog</h1>
<section class="version" id="5.6.38"><!-- {{{ 5.6.38 -->
<h3>Version 5.6.38</h3>
<b><?php release_date('13-Sep-2018'); ?></b>
<ul><li>Apache2:
<ul>
<li><?php bugfix(76582); ?> (XSS due to the header Transfer-Encoding: chunked).</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="5.6.37"><!-- {{{ 5.6.37 -->
<h3>Version 5.6.37</h3>
<b><?php release_date('19-Jul-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-09-13-5.xml"/>
<xi:include href="entries/2018-09-13-4.xml"/>
<xi:include href="entries/2018-09-13-3.xml"/>
<xi:include href="entries/2018-09-13-2.xml"/>

View File

@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<entry xmlns="http://www.w3.org/2005/Atom">
<title>PHP 5.6.38 Released</title>
<id>http://php.net/archive/2018.php#id2018-09-13-5</id>
<published>2018-09-13T19:56:28+02:00</published>
<updated>2018-09-13T19:56:28+02: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-09-13-5" rel="alternate" type="text/html"/>
<link href="http://php.net/archive/2018.php#id2018-09-13-5" 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
5.6.38. This is a security release. One security bug has been fixed
in this release.
All PHP 5.6 users are encouraged to upgrade to this version.</p>
<p>For source downloads of PHP 5.6.38 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-5.php#5.6.38">ChangeLog</a>.
</p>
</div>
</content>
</entry>

View File

@@ -2117,6 +2117,39 @@ $OLDRELEASES = array (
),
5 =>
array (
'5.6.37' =>
array (
'announcement' =>
array (
'English' => '/releases/5_6_37.php',
),
'source' =>
array (
0 =>
array (
'filename' => 'php-5.6.37.tar.bz2',
'name' => 'PHP 5.6.37 (tar.bz2)',
'sha256' => '886ad63d05d94ea3e54322691aadea0cf1d4bcdb4450b02fe300e5b570788b23',
'date' => '19 Jul 2018',
),
1 =>
array (
'filename' => 'php-5.6.37.tar.gz',
'name' => 'PHP 5.6.37 (tar.gz)',
'sha256' => 'b7ec077f35ef3a8cdd33c29124140b1761111a1429878b4c463bb20d2a31b184',
'date' => '19 Jul 2018',
),
2 =>
array (
'filename' => 'php-5.6.37.tar.xz',
'name' => 'PHP 5.6.37 (tar.xz)',
'sha256' => '5000d82610f9134aaedef28854ec3591f68dedf26a17b8935727dac2843bd256',
'date' => '19 Jul 2018',
),
),
'date' => '19 Jul 2018',
'museum' => false,
),
'5.6.36' =>
array (
'announcement' =>

View File

@@ -59,12 +59,12 @@ $PHP_7_0_SHA256 = array(
$PHP_5_6_RC = false; // Current RC version (e.g., '5.6.7RC1') or false
$PHP_5_6_RC_DATE = "05 Jan 2017";
$PHP_5_6_VERSION = "5.6.37";
$PHP_5_6_DATE = "19 Jul 2018";
$PHP_5_6_VERSION = "5.6.38";
$PHP_5_6_DATE = "13 Sep 2018";
$PHP_5_6_SHA256 = array(
"tar.bz2" => "886ad63d05d94ea3e54322691aadea0cf1d4bcdb4450b02fe300e5b570788b23",
"tar.gz" => "b7ec077f35ef3a8cdd33c29124140b1761111a1429878b4c463bb20d2a31b184",
"tar.xz" => "5000d82610f9134aaedef28854ec3591f68dedf26a17b8935727dac2843bd256",
"tar.bz2" => "d65b231bbdd63be4439ef5ced965cfd63e62983429dbd4dfcfb49981593ebc03",
"tar.gz" => "3b74d46cd79a45cce90c8059e09d8bd0beeb5de562cbb0cb42f96ff8fa665fd4",
"tar.xz" => "c2fac47dc6316bd230f0ea91d8a5498af122fb6a3eb43f796c9ea5f59b04aa1e",
);
$RELEASES = array(

22
releases/5_6_38.php Normal file
View File

@@ -0,0 +1,22 @@
<?php
// $Id$
$_SERVER['BASE_PAGE'] = 'releases/5_6_38.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
site_header("PHP 5.6.38 Release Announcement");
?>
<h1>PHP 5.6.38 Release Announcement</h1>
<p>The PHP development team announces the immediate availability of PHP
5.6.38. This is a security release. One security bug has been fixed
in this release.
All PHP 5.6 users are encouraged to upgrade to this version.
</p>
<p>For source downloads of PHP 5.6.38 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-5.php#5.6.38">ChangeLog</a>.
</p>
<?php site_footer(); ?>