Skip to content

Commit

Permalink
Announce PHP 8.1.31
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickallaert committed Nov 21, 2024
1 parent f641991 commit 01a0e55
Show file tree
Hide file tree
Showing 6 changed files with 113 additions and 5 deletions.
33 changes: 33 additions & 0 deletions ChangeLog-8.php
Original file line number Diff line number Diff line change
Expand Up @@ -3791,6 +3791,39 @@

<a id="PHP_8_1"></a>

<section class="version" id="8.1.31"><!-- {{{ 8.1.31 -->
<h3>Version 8.1.31</h3>
<b><?php release_date('21-Nov-2024'); ?></b>
<ul><li>CLI:
<ul>
<li>Fixed bug <?php githubsecurityl('php/php-src', '4w77-75f9-2c8w'); ?> (Heap-Use-After-Free in sapi_read_post_data Processing in CLI SAPI Interface).</li>
</ul></li>
<li>LDAP:
<ul>
<li>Fixed bug <?php githubsecurityl('php/php-src', 'g665-fm4p-vhff'); ?> (OOB access in ldap_escape). (CVE-2024-8932)</li>
</ul></li>
<li>MySQLnd:
<ul>
<li>Fixed bug <?php githubsecurityl('php/php-src', 'h35g-vwh6-m678'); ?> (Leak partial content of the heap through heap buffer over-read). (CVE-2024-8929)</li>
</ul></li>
<li>PDO DBLIB:
<ul>
<li>Fixed bug <?php githubsecurityl('php/php-src', '5hqh-c84r-qjcv'); ?> (Integer overflow in the dblib quoter causing OOB writes). (CVE-2024-11236)</li>
</ul></li>
<li>PDO Firebird:
<ul>
<li>Fixed bug <?php githubsecurityl('php/php-src', '5hqh-c84r-qjcv'); ?> (Integer overflow in the firebird quoter causing OOB writes). (CVE-2024-11236)</li>
</ul></li>
<li>Streams:
<ul>
<li>Fixed bug <?php githubsecurityl('php/php-src', 'c5f2-jwm7-mmq2'); ?> (Configuring a proxy in a stream context might allow for CRLF injection in URIs). (CVE-2024-11234)</li>
<li>Fixed bug <?php githubsecurityl('php/php-src', 'r977-prxv-hc43'); ?> (Single byte overread with convert.quoted-printable-decode filter). (CVE-2024-11233)</li>
</ul></li>
</ul>
<!-- }}} --></section>



<section class="version" id="8.1.30"><!-- {{{ 8.1.30 -->
<h3>Version 8.1.30</h3>
<b><?php release_date('26-Sep-2024'); ?></b>
Expand Down
1 change: 1 addition & 0 deletions archive/archive.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<uri>http://php.net/contact</uri>
<email>[email protected]</email>
</author>
<xi:include href="entries/2024-11-21-3.xml"/>
<xi:include href="entries/2024-11-21-2.xml"/>
<xi:include href="entries/2024-11-21-1.xml"/>
<xi:include href="entries/2024-11-07-1.xml"/>
Expand Down
21 changes: 21 additions & 0 deletions archive/entries/2024-11-21-3.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<entry xmlns="http://www.w3.org/2005/Atom">
<title>PHP 8.1.31 Released!</title>
<id>https://www.php.net/archive/2024.php#2024-11-21-3</id>
<published>2024-11-21T06:23:55+00:00</published>
<updated>2024-11-21T06:23:55+00:00</updated>
<link href="https://www.php.net/index.php#2024-11-21-3" rel="alternate" type="text/html"/>
<link href="https://www.php.net/archive/2024.php#2024-11-21-3" 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.1.31. This is a security release.</p>

<p>All PHP 8.1 users are encouraged to upgrade to this version.</p>

<p>For source downloads of PHP 8.1.31 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.1.31">ChangeLog</a>.
</p> </div>
</content>
</entry>
37 changes: 37 additions & 0 deletions include/releases.inc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,43 @@
$OLDRELEASES = array (
8 =>
array (
'8.1.30' =>
array (
'announcement' =>
array (
'English' => '/releases/8_1_30.php',
),
'tags' =>
array (
0 => 'security',
),
'date' => '26 Sep 2024',
'source' =>
array (
0 =>
array (
'filename' => 'php-8.1.30.tar.gz',
'name' => 'PHP 8.1.30 (tar.gz)',
'sha256' => '80addd302b7e9708e0d106779c3827520eccaf14af1149174b51da33d63e6af7',
'date' => '26 Sep 2024',
),
1 =>
array (
'filename' => 'php-8.1.30.tar.bz2',
'name' => 'PHP 8.1.30 (tar.bz2)',
'sha256' => 'cb1625e5ac49b91037477e3e7767bb0624343971aeb992f4791b618af571d23e',
'date' => '26 Sep 2024',
),
2 =>
array (
'filename' => 'php-8.1.30.tar.xz',
'name' => 'PHP 8.1.30 (tar.xz)',
'sha256' => 'f24a6007f0b25a53cb7fbaee69c85017e0345b62089c2425a0afb7e177192ed1',
'date' => '26 Sep 2024',
),
),
'museum' => false,
),
'8.3.13' =>
array (
'announcement' =>
Expand Down
10 changes: 5 additions & 5 deletions include/version.inc
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ $RELEASES = (function () {

/* PHP 8.1 Release */
$data['8.1'] = [
'version' => '8.1.30',
'date' => '26 Sep 2024',
'version' => '8.1.31',
'date' => '21 Nov 2024',
'tags' => ['security'], // Set to ['security'] for security releases.
'sha256' => [
'tar.gz' => '80addd302b7e9708e0d106779c3827520eccaf14af1149174b51da33d63e6af7',
'tar.bz2' => 'cb1625e5ac49b91037477e3e7767bb0624343971aeb992f4791b618af571d23e',
'tar.xz' => 'f24a6007f0b25a53cb7fbaee69c85017e0345b62089c2425a0afb7e177192ed1',
'tar.gz' => '618923b407c4575bfee085f00c4aaa16a5cc86d4b1eb893c0f352d61541bbfb1',
'tar.bz2' => '0b39828b345151caf1b795d9f4b923c9887231776c33076dfc9d90a44390d0dc',
'tar.xz' => 'c4f244d46ba51c72f7d13d4f66ce6a9e9a8d6b669c51be35e01765ba58e7afca',
]
];

Expand Down
16 changes: 16 additions & 0 deletions releases/8_1_31.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php
$_SERVER['BASE_PAGE'] = 'releases/8_1_31.php';
include_once __DIR__ . '/../include/prepend.inc';
site_header('PHP 8.1.31 Release Announcement');
?>
<h1>PHP 8.1.31 Release Announcement</h1>

<p>The PHP development team announces the immediate availability of PHP 8.1.31. This is a security release.</p>

<p>All PHP 8.1 users are encouraged to upgrade to this version.</p>

<p>For source downloads of PHP 8.1.31 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.1.31">ChangeLog</a>.
</p>
<?php site_footer();

0 comments on commit 01a0e55

Please sign in to comment.