1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00

7.2.24 announcement

This commit is contained in:
Remi Collet
2019-10-24 11:15:55 +02:00
parent cced178ed8
commit f6c86fbe3b
6 changed files with 130 additions and 6 deletions

View File

@@ -1029,6 +1029,52 @@ site_header("PHP 7 ChangeLog", array("current" => "docs", "css" => array("change
<a name="PHP_7_2"></a>
<section class="version" id="7.2.24"><!-- {{{ 7.2.24 -->
<h3>Version 7.2.24</h3>
<b><?php release_date('24-Oct-2019'); ?></b>
<ul><li>Core:
<ul>
<li><?php bugfix(78535); ?> (auto_detect_line_endings value not parsed as bool).</li>
<li><?php bugfix(78620); ?> (Out of memory error).</li>
</ul></li>
<li>Exif:
<ul>
<li><?php bugfix(78442); ?> ('Illegal component' on exif_read_data since PHP7) (Kalle)</li>
</ul></li>
<li>FPM:
<ul>
<li><?php bugfix(78599); ?> (env_path_info underflow in fpm_main.c can lead to RCE). (CVE-2019-11043)</li>
</ul></li>
<li>MBString:
<ul>
<li><?php bugfix(78579); ?> (mb_decode_numericentity: args number inconsistency).</li>
<li><?php bugfix(78609); ?> (mb_check_encoding() no longer supports stringable objects).</li>
</ul></li>
<li>MySQLi:
<ul>
<li><?php bugfix(76809); ?> (SSL settings aren't respected when persistent connections are used).</li>
</ul></li>
<li>PDO_MySQL:
<ul>
<li><?php bugfix(78623); ?> (Regression caused by "SP call yields additional empty result set").</li>
</ul></li>
<li>Session:
<ul>
<li><?php bugfix(78624); ?> (session_gc return value for user defined session handlers).</li>
</ul></li>
<li>Standard:
<ul>
<li><?php bugfix(76342); ?> (file_get_contents waits twice specified timeout).</li>
<li><?php bugfix(78612); ?> (strtr leaks memory when integer keys are used and the subject string shorter).</li>
<li><?php bugfix(76859); ?> (stream_get_line skips data if used with data-generating filter).</li>
</ul></li>
<li>Zip:
<ul>
<li><?php bugfix(78641); ?> (addGlob can modify given remove_path value).</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="7.2.23"><!-- {{{ 7.2.23 -->
<h3>Version 7.2.23</h3>
<b><?php release_date('26-Sep-2019'); ?></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/2019-10-24-1.xml"/>
<xi:include href="entries/2019-10-18-1.xml"/>
<xi:include href="entries/2019-10-03-1.xml"/>
<xi:include href="entries/2019-10-02-1.xml"/>

View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<entry xmlns="http://www.w3.org/2005/Atom">
<title>PHP 7.2.24 Released</title>
<id>https://www.php.net/archive/2019.php#2019-10-24-1</id>
<published>2019-10-24T09:13:34+00:00</published>
<updated>2019-10-24T09:13:34+00:00</updated>
<link href="https://www.php.net/index.php#id2019-10-24-1" rel="alternate" type="text/html"/>
<link href="https://www.php.net/archive/2019.php#2019-10-24-1" rel="via" type="text/html"/>
<category term="frontpage" label="PHP.net frontpage news"/>
<category term="releases" label="New PHP release"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p>The PHP development team announces the immediate availability of PHP
7.2.24. This is a security release which also contains several minor bug fixes.</p>
<p>All PHP 7.2 users are encouraged to upgrade to this version.</p>
<p>For source downloads of PHP 7.2.247 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.2.24">ChangeLog</a>.
</p>
</div>
</content>
</entry>

View File

@@ -2,6 +2,42 @@
$OLDRELEASES = array (
7 =>
array (
'7.2.23' =>
array (
'announcement' =>
array (
'English' => '/releases/7_2_23.php',
),
'tags' =>
array (
),
'date' => '26 Sep 2019',
'source' =>
array (
0 =>
array (
'filename' => 'php-7.2.23.tar.bz2',
'name' => 'PHP 7.2.23 (tar.bz2)',
'sha256' => 'a17af3643d29d7e730f977e3776dc3e325d5ca00b361e41dbfc2368ebad5430d',
'date' => '26 Sep 2019',
),
1 =>
array (
'filename' => 'php-7.2.23.tar.gz',
'name' => 'PHP 7.2.23 (tar.gz)',
'sha256' => 'b32b426c84ff45154d6c11f00aff433bcac831a5c0a09bf0297075eefaea8fcc',
'date' => '26 Sep 2019',
),
2 =>
array (
'filename' => 'php-7.2.23.tar.xz',
'name' => 'PHP 7.2.23 (tar.xz)',
'sha256' => '74e045ec8ff26290db6a3688826dcdf43b87bc509e508e9cb76dab742804ca14',
'date' => '26 Sep 2019',
),
),
'museum' => false,
),
'7.2.22' =>
array (
'announcement' =>

View File

@@ -27,13 +27,13 @@ $RELEASES = (function() {
);
/* PHP 7.2 Release */
$PHP_7_2_VERSION = "7.2.23";
$PHP_7_2_DATE = "26 Sep 2019";
$PHP_7_2_TAGS = []; // Set to ['security'] for security releases.
$PHP_7_2_VERSION = "7.2.24";
$PHP_7_2_DATE = "24 Oct 2019";
$PHP_7_2_TAGS = ['security']; // Set to ['security'] for security releases.
$PHP_7_2_SHA256 = array(
"tar.bz2" => "a17af3643d29d7e730f977e3776dc3e325d5ca00b361e41dbfc2368ebad5430d",
"tar.gz" => "b32b426c84ff45154d6c11f00aff433bcac831a5c0a09bf0297075eefaea8fcc",
"tar.xz" => "74e045ec8ff26290db6a3688826dcdf43b87bc509e508e9cb76dab742804ca14",
"tar.bz2" => "a079934db63068bbcc9bbd2e7b916b9891fc97719862697e5f954c639984f603",
"tar.gz" => "01baf7a34c856d2c552121fbad7296a8cde18389ce83db32f18252bc1cee4dd6",
"tar.xz" => "a6a6cc03388060aa5f8f9e45799b72bce1c7ed7b9d7b3f1187787202aad91d25",
);
/* PHP 7.1 Release */

17
releases/7_2_24.php Normal file
View File

@@ -0,0 +1,17 @@
<?php
$_SERVER['BASE_PAGE'] = 'releases/7_2_24.php';
include_once __DIR__ . '/../include/prepend.inc';
site_header("PHP 7.2.24 Release Announcement");
?>
<h1>PHP 7.2.24 Release Announcement</h1>
<p>The PHP development team announces the immediate availability of PHP 7.2.24.
This is a security release which also contains several minor bug fixes.</p>
<p>All PHP 7.2 users are encouraged to upgrade to this version.</p>
<p>For source downloads of PHP 7.2.24 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.2.24">ChangeLog</a>.
</p>
<?php site_footer(); ?>