Author: Gabriel Caruso (carusogabriel) Date: 2022-10-28T11:43:14+02:00 Commit: https://github.com/php/web-php/commit/343568c0c099680e27b25d0095ce8a18e4930969 Raw diff: https://github.com/php/web-php/commit/343568c0c099680e27b25d0095ce8a18e4930969.diff
Announce PHP 8.0.25 Changed paths: A archive/entries/2022-10-28-1.xml A releases/8_0_25.php M ChangeLog-8.php M archive/archive.xml M include/releases.inc M include/version.inc Diff: diff --git a/ChangeLog-8.php b/ChangeLog-8.php index 6f890fd7b..7afac8cc9 100644 --- a/ChangeLog-8.php +++ b/ChangeLog-8.php @@ -906,6 +906,30 @@ <a id="PHP_8_0"></a> +<section class="version" id="8.0.25"><!-- {{{ 8.0.25 --> +<h3>Version 8.0.25</h3> +<b><?php release_date('27-Oct-2022'); ?></b> +<ul><li>GD: +<ul> + <li><?php bugfix(81739); ?>: OOB read due to insufficient input validation in imageloadfont(). (CVE-2022-31630)</li> +</ul></li> +<li>Hash: +<ul> + <li><?php bugfix(81738); ?>: buffer overflow in hash_update() on long parameter. (CVE-2022-37454)</li> +</ul></li> +<li>Session: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 9583); ?> (session_create_id() fails with user defined save handler that doesn't have a validateId() method).</li> +</ul></li> +<li>Streams: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 9590); ?> (stream_select does not abort upon exception or empty valid fd set).</li> +</ul></li> +</ul> +<!-- }}} --></section> + + + <section class="version" id="8.0.24"><!-- {{{ 8.0.24 --> <h3>Version 8.0.24</h3> <b><?php release_date('29-Sep-2022'); ?></b> diff --git a/archive/archive.xml b/archive/archive.xml index f1cfab0cf..7ad0508f8 100644 --- a/archive/archive.xml +++ b/archive/archive.xml @@ -9,6 +9,7 @@ <uri>http://php.net/contact</uri> <email>php-webmaster@lists.php.net</email> </author> + <xi:include href="entries/2022-10-28-1.xml"/> <xi:include href="entries/2022-10-27-1.xml"/> <xi:include href="entries/2022-10-19-2.xml"/> <xi:include href="entries/2022-10-19-1.xml"/> diff --git a/archive/entries/2022-10-28-1.xml b/archive/entries/2022-10-28-1.xml new file mode 100644 index 000000000..ce29b038a --- /dev/null +++ b/archive/entries/2022-10-28-1.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<entry xmlns="http://www.w3.org/2005/Atom"> + <title>PHP 8.0.25 Released!</title> + <id>https://www.php.net/archive/2022.php#2022-10-28-1</id> + <published>2022-10-28T09:40:48+00:00</published> + <updated>2022-10-28T09:40:48+00:00</updated> + <link href="https://www.php.net/index.php#2022-10-28-1" rel="alternate" type="text/html"/> + <link href="https://www.php.net/archive/2022.php#2022-10-28-1" rel="via" type="text/html"/> + <category term="releases" label="New PHP release"/> + <category term="frontpage" label="PHP.net frontpage news"/> + <content type="xhtml"> + <div xmlns="http://www.w3.org/1999/xhtml"><p>The PHP development team announces the immediate availability of PHP 8.0.25. This is a security fix release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.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-8.php#8.0.25">ChangeLog</a>. +</p> </div> + </content> +</entry> diff --git a/include/releases.inc b/include/releases.inc index 7dd6a4b13..c86f097b9 100644 --- a/include/releases.inc +++ b/include/releases.inc @@ -2,6 +2,43 @@ $OLDRELEASES = array ( 8 => array ( + '8.0.24' => + array ( + 'announcement' => + array ( + 'English' => '/releases/8_0_24.php', + ), + 'tags' => + array ( + 0 => 'security', + ), + 'date' => '29 Sep 2022', + 'source' => + array ( + 0 => + array ( + 'filename' => 'php-8.0.24.tar.gz', + 'name' => 'PHP 8.0.24 (tar.gz)', + 'sha256' => '6020843a2f1ce36745d958b3ca17f3fdc42e78a43899f552ab5dbc509ff19232', + 'date' => '29 Sep 2022', + ), + 1 => + array ( + 'filename' => 'php-8.0.24.tar.bz2', + 'name' => 'PHP 8.0.24 (tar.bz2)', + 'sha256' => '908e17cea331d5abb8506b4a89c6392b962e127c391327777c7485eb4b415d43', + 'date' => '29 Sep 2022', + ), + 2 => + array ( + 'filename' => 'php-8.0.24.tar.xz', + 'name' => 'PHP 8.0.24 (tar.xz)', + 'sha256' => '8e6a63ac9cdabe4c345b32a54b18f348d9e50a1decda217faf2d61278d22f08b', + 'date' => '29 Sep 2022', + ), + ), + 'museum' => false, + ), '8.0.23' => array ( 'announcement' => diff --git a/include/version.inc b/include/version.inc index a093016f8..6fca9e007 100644 --- a/include/version.inc +++ b/include/version.inc @@ -32,13 +32,13 @@ $RELEASES = (function () { /* PHP 8.0 Release */ $data['8.0'] = [ - 'version' => '8.0.24', - 'date' => '29 Sep 2022', + 'version' => '8.0.25', + 'date' => '27 Oct 2022', 'tags' => ['security'], // Set to ['security'] for security releases. 'sha256' => [ - 'tar.gz' => '6020843a2f1ce36745d958b3ca17f3fdc42e78a43899f552ab5dbc509ff19232', - 'tar.bz2' => '908e17cea331d5abb8506b4a89c6392b962e127c391327777c7485eb4b415d43', - 'tar.xz' => '8e6a63ac9cdabe4c345b32a54b18f348d9e50a1decda217faf2d61278d22f08b', + 'tar.gz' => '349a2b5a01bfccbc9af8afdf183e57bed3349706a084f3c4694aa4c7ff7cb2e9', + 'tar.bz2' => '09d716bceb5b3db76d9023b10c1681ebbe040e51f4c18dfd35f9ff8b73bbcf8c', + 'tar.xz' => 'a291b71d0498707fc5514eb5b9513e88f0f1d4890bcdefd67282ded8a2bfb941', ] ]; diff --git a/releases/8_0_25.php b/releases/8_0_25.php new file mode 100644 index 000000000..4e6bf58de --- /dev/null +++ b/releases/8_0_25.php @@ -0,0 +1,16 @@ +<?php +$_SERVER['BASE_PAGE'] = 'releases/8_0_25.php'; +include_once __DIR__ . '/../include/prepend.inc'; +site_header('PHP 8.0.25 Release Announcement'); +?> +<h1>PHP 8.0.25 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.25. This is a security fix release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.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-8.php#8.0.25">ChangeLog</a>. +</p> +<?php site_footer(); -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php