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

Announce PHP 8.1.33

This commit is contained in:
Ben Ramsey
2025-07-03 09:42:26 -05:00
parent 90227b56e3
commit 0f25be280a
6 changed files with 100 additions and 5 deletions

View File

@@ -5871,6 +5871,26 @@ changelog_header(8, $MINOR_VERSIONS);
<a id="PHP_8_1"></a>
<section class="version" id="8.1.33"><!-- {{{ 8.1.33 -->
<h3>Version 8.1.33</h3>
<b><?php release_date('03-Jul-2025'); ?></b>
<ul><li>PGSQL:
<ul>
<li>Fixed <?php githubsecurityl('php/php-src', 'hrwm-9436-5mv3'); ?> (pgsql extension does not check for errors during escaping). (CVE-2025-1735)</li>
</ul></li>
<li>SOAP:
<ul>
<li>Fixed <?php githubsecurityl('php/php-src', '453j-q27h-5p8x'); ?> (NULL Pointer Dereference in PHP SOAP Extension via Large XML Namespace Prefix). (CVE-2025-6491)</li>
</ul></li>
<li>Standard:
<ul>
<li>Fixed <?php githubsecurityl('php/php-src', '3cr5-j632-f35r'); ?> (Null byte termination in hostnames). (CVE-2025-1220)</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="8.1.32"><!-- {{{ 8.1.32 -->
<h3>Version 8.1.32</h3>
<b><?php release_date('13-Mar-2025'); ?></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/2025-07-03-3.xml"/>
<xi:include href="entries/2025-07-03-2.xml"/>
<xi:include href="entries/2025-07-03-1.xml"/>
<xi:include href="entries/2025-06-11-1.xml"/>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<entry xmlns="http://www.w3.org/2005/Atom">
<title>PHP 8.1.33 Released!</title>
<id>https://www.php.net/archive/2025.php#2025-07-03-3</id>
<published>2025-07-03T14:35:29+00:00</published>
<updated>2025-07-03T14:35:29+00:00</updated>
<link href="https://www.php.net/index.php#2025-07-03-3" rel="alternate" type="text/html"/>
<link href="https://www.php.net/archive/2025.php#2025-07-03-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.33. 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.33 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.33">ChangeLog</a>.
</p> </div>
</content>
</entry>

View File

@@ -2,6 +2,43 @@
$OLDRELEASES = array (
8 =>
array (
'8.1.32' =>
array (
'announcement' =>
array (
'English' => '/releases/8_1_32.php',
),
'tags' =>
array (
0 => 'security',
),
'date' => '13 Mar 2025',
'source' =>
array (
0 =>
array (
'filename' => 'php-8.1.32.tar.gz',
'name' => 'PHP 8.1.32 (tar.gz)',
'sha256' => '4846836d1de27dbd28e89180f073531087029a77e98e8e019b7b2eddbdb1baff',
'date' => '13 Mar 2025',
),
1 =>
array (
'filename' => 'php-8.1.32.tar.bz2',
'name' => 'PHP 8.1.32 (tar.bz2)',
'sha256' => 'a04fdd3df05f948df8a8f2c5d27ab54c1f43822c525f31fd20c19a282452d07c',
'date' => '13 Mar 2025',
),
2 =>
array (
'filename' => 'php-8.1.32.tar.xz',
'name' => 'PHP 8.1.32 (tar.xz)',
'sha256' => 'c582ac682a280bbc69bc2186c21eb7e3313cc73099be61a6bc1d2cd337cbf383',
'date' => '13 Mar 2025',
),
),
'museum' => false,
),
'8.2.28' =>
array (
'announcement' =>

View File

@@ -56,13 +56,13 @@ $RELEASES = (function () {
/* PHP 8.1 Release */
$data['8.1'] = [
'version' => '8.1.32',
'date' => '13 Mar 2025',
'version' => '8.1.33',
'date' => '3 Jul 2025',
'tags' => ['security'], // Set to ['security'] for security releases.
'sha256' => [
'tar.gz' => '4846836d1de27dbd28e89180f073531087029a77e98e8e019b7b2eddbdb1baff',
'tar.bz2' => 'a04fdd3df05f948df8a8f2c5d27ab54c1f43822c525f31fd20c19a282452d07c',
'tar.xz' => 'c582ac682a280bbc69bc2186c21eb7e3313cc73099be61a6bc1d2cd337cbf383',
'tar.gz' => 'ee33568a0e2be0b722b3f9a88cecc578316b66b25c90cd0a4f3b1a5cdc3cd826',
'tar.bz2' => 'b6553451841c1a569865d7fdc83024621ee4434cd8fbfeb0a31588ac9c70685f',
'tar.xz' => '9db83bf4590375562bc1a10b353cccbcf9fcfc56c58b7c8fb814e6865bb928d1',
]
];

16
releases/8_1_33.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
$_SERVER['BASE_PAGE'] = 'releases/8_1_33.php';
include_once __DIR__ . '/../include/prepend.inc';
site_header('PHP 8.1.33 Release Announcement');
?>
<h1>PHP 8.1.33 Release Announcement</h1>
<p>The PHP development team announces the immediate availability of PHP 8.1.33. 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.33 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.33">ChangeLog</a>.
</p>
<?php site_footer();