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

Announce 7.2.25

This commit is contained in:
Sara Golemon
2019-11-21 13:21:46 -05:00
parent 1962bc5455
commit 70256ffb27
6 changed files with 133 additions and 6 deletions

View File

@@ -1132,6 +1132,50 @@ site_header("PHP 7 ChangeLog", array("current" => "docs", "css" => array("change
<a name="PHP_7_2"></a>
<section class="version" id="7.2.25"><!-- {{{ 7.2.25 -->
<h3>Version 7.2.25</h3>
<b><?php release_date('21-Nov-2019'); ?></b>
<ul><li>Core:
<ul>
<li><?php bugfix(78656); ?> (Parse errors classified as highest log-level).</li>
<li><?php bugfix(78752); ?> (Segfault if GC triggered while generator stack frame is being destroyed).</li>
<li><?php bugfix(78689); ?> (Closure::fromCallable() doesn't handle [Closure, '__invoke']).</li>
</ul></li>
<li>COM:
<ul>
<li><?php bugfix(78694); ?> (Appending to a variant array causes segfault).</li>
</ul></li>
<li>Date:
<ul>
<li><?php bugfix(70153); ?> (\DateInterval incorrectly unserialized).</li>
<li><?php bugfix(78751); ?> (Serialising DatePeriod converts DateTimeImmutable).</li>
</ul></li>
<li>Iconv:
<ul>
<li><?php bugfix(78642); ?> (Wrong libiconv version displayed). (gedas at martynas, cmb).</li>
</ul></li>
<li>OpCache:
<ul>
<li><?php bugfix(78654); ?> (Incorrectly computed opcache checksum on files with non-ascii characters).</li>
<li><?php bugfix(78747); ?> (OpCache corrupts custom extension result).</li>
</ul></li>
<li>OpenSSL:
<ul>
<li><?php bugfix(78775); ?> (TLS issues from HTTP request affecting other encrypted connections).</li>
</ul></li>
<li>Reflection:
<ul>
<li><?php bugfix(78697); ?> (ReflectionClass::ImplementsInterface - inaccurate error message with traits).</li>
</ul></li>
<li>Sockets:
<ul>
<li><?php bugfix(78665); ?> (Multicasting may leak memory).</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="7.2.24"><!-- {{{ 7.2.24 -->
<h3>Version 7.2.24</h3>
<b><?php release_date('24-Oct-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-11-21-2.xml"/>
<xi:include href="entries/2019-11-21-1.xml"/>
<xi:include href="entries/2019-11-14-1.xml"/>
<xi:include href="entries/2019-11-06-1.xml"/>

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<entry xmlns="http://www.w3.org/2005/Atom">
<title>PHP 7.2.25 Released</title>
<id>https://www.php.net/archive/2019.php#2019-11-21-2</id>
<published>2019-11-21T18:26:29+00:00</published>
<updated>2019-11-21T18:26:29+00:00</updated>
<link href="https://www.php.net/index.php#id2019-11-21-2" rel="alternate" type="text/html"/>
<link href="https://www.php.net/archive/2019.php#2019-11-21-2" 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">
<h1>PHP 7.2.25 Release Announcement</h1>
<p>The PHP development team announces the immediate availability of PHP
7.2.25. This is a bug fix release.</p>
<p>All PHP 7.2 users are encouraged to upgrade to this version.</p>
<p>For source downloads of PHP 7.2.25 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>,
Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>.
The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.2.25">ChangeLog</a>.
</p>
</div>
</content>
</entry>

View File

@@ -2,6 +2,43 @@
$OLDRELEASES = array (
7 =>
array (
'7.2.24' =>
array (
'announcement' =>
array (
'English' => '/releases/7_2_24.php',
),
'tags' =>
array (
0 => 'security',
),
'date' => '24 Oct 2019',
'source' =>
array (
0 =>
array (
'filename' => 'php-7.2.24.tar.bz2',
'name' => 'PHP 7.2.24 (tar.bz2)',
'sha256' => 'a079934db63068bbcc9bbd2e7b916b9891fc97719862697e5f954c639984f603',
'date' => '24 Oct 2019',
),
1 =>
array (
'filename' => 'php-7.2.24.tar.gz',
'name' => 'PHP 7.2.24 (tar.gz)',
'sha256' => '01baf7a34c856d2c552121fbad7296a8cde18389ce83db32f18252bc1cee4dd6',
'date' => '24 Oct 2019',
),
2 =>
array (
'filename' => 'php-7.2.24.tar.xz',
'name' => 'PHP 7.2.24 (tar.xz)',
'sha256' => 'a6a6cc03388060aa5f8f9e45799b72bce1c7ed7b9d7b3f1187787202aad91d25',
'date' => '24 Oct 2019',
),
),
'museum' => false,
),
'7.3.11' =>
array (
'announcement' =>

View File

@@ -27,13 +27,13 @@ $RELEASES = (function() {
);
/* PHP 7.2 Release */
$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_VERSION = "7.2.25";
$PHP_7_2_DATE = "21 Nov 2019";
$PHP_7_2_TAGS = []; // Set to ['security'] for security releases.
$PHP_7_2_SHA256 = array(
"tar.bz2" => "a079934db63068bbcc9bbd2e7b916b9891fc97719862697e5f954c639984f603",
"tar.gz" => "01baf7a34c856d2c552121fbad7296a8cde18389ce83db32f18252bc1cee4dd6",
"tar.xz" => "a6a6cc03388060aa5f8f9e45799b72bce1c7ed7b9d7b3f1187787202aad91d25",
"tar.bz2" => "7cb336b1ed0f9d87f46bbcb7b3437ee252d0d5060c0fb1a985adb6cbc73a6b9e",
"tar.gz" => "b2cb1bd46454d33b2c65c2fd559f464cd14e57dd47b953adf5caa77fdf0de52b",
"tar.xz" => "746efeedc38e6ff7b1ec1432440f5fa801537adf6cd21e4afb3f040e5b0760a9",
);
/* PHP 7.1 Release */

19
releases/7_2_25.php Normal file
View File

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