mirror of
https://github.com/php/web-php.git
synced 2026-03-23 23:02:13 +01:00
Announce PHP 8.2.29
This commit is contained in:
@@ -3334,6 +3334,26 @@ changelog_header(8, $MINOR_VERSIONS);
|
||||
|
||||
<a id="PHP_8_2"></a>
|
||||
|
||||
<section class="version" id="8.2.29"><!-- {{{ 8.2.29 -->
|
||||
<h3>Version 8.2.29</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.2.28"><!-- {{{ 8.2.28 -->
|
||||
<h3>Version 8.2.28</h3>
|
||||
<b><?php release_date('13-Mar-2025'); ?></b>
|
||||
|
||||
@@ -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-2.xml"/>
|
||||
<xi:include href="entries/2025-07-03-1.xml"/>
|
||||
<xi:include href="entries/2025-06-11-1.xml"/>
|
||||
<xi:include href="entries/2025-06-09-1.xml"/>
|
||||
|
||||
21
archive/entries/2025-07-03-2.xml
Normal file
21
archive/entries/2025-07-03-2.xml
Normal file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<entry xmlns="http://www.w3.org/2005/Atom">
|
||||
<title>PHP 8.2.29 Released!</title>
|
||||
<id>https://www.php.net/archive/2025.php#2025-07-03-2</id>
|
||||
<published>2025-07-03T12:03:57+00:00</published>
|
||||
<updated>2025-07-03T12:03:57+00:00</updated>
|
||||
<link href="https://www.php.net/index.php#2025-07-03-2" rel="alternate" type="text/html"/>
|
||||
<link href="https://www.php.net/archive/2025.php#2025-07-03-2" 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.2.29. This is a security release.</p>
|
||||
|
||||
<p>All PHP 8.2 users are encouraged to upgrade to this version.</p>
|
||||
|
||||
<p>For source downloads of PHP 8.2.29 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.2.29">ChangeLog</a>.
|
||||
</p> </div>
|
||||
</content>
|
||||
</entry>
|
||||
@@ -2,6 +2,43 @@
|
||||
$OLDRELEASES = array (
|
||||
8 =>
|
||||
array (
|
||||
'8.2.28' =>
|
||||
array (
|
||||
'announcement' =>
|
||||
array (
|
||||
'English' => '/releases/8_2_28.php',
|
||||
),
|
||||
'tags' =>
|
||||
array (
|
||||
0 => 'security',
|
||||
),
|
||||
'date' => '13 Mar 2025',
|
||||
'source' =>
|
||||
array (
|
||||
0 =>
|
||||
array (
|
||||
'filename' => 'php-8.2.28.tar.gz',
|
||||
'name' => 'PHP 8.2.28 (tar.gz)',
|
||||
'sha256' => '3318300888de5023720cc84efad5e005e53f30b5f0072fae65a750dabcaf6ec3',
|
||||
'date' => '13 Mar 2025',
|
||||
),
|
||||
1 =>
|
||||
array (
|
||||
'filename' => 'php-8.2.28.tar.bz2',
|
||||
'name' => 'PHP 8.2.28 (tar.bz2)',
|
||||
'sha256' => '2919cc1b92190a58dc17904b92e626600b96ce49a4c72e77513786a4406acce5',
|
||||
'date' => '13 Mar 2025',
|
||||
),
|
||||
2 =>
|
||||
array (
|
||||
'filename' => 'php-8.2.28.tar.xz',
|
||||
'name' => 'PHP 8.2.28 (tar.xz)',
|
||||
'sha256' => 'af8c9153153a7f489153b7a74f2f29a5ee36f5cb2c6c6929c98411a577e89c91',
|
||||
'date' => '13 Mar 2025',
|
||||
),
|
||||
),
|
||||
'museum' => false,
|
||||
),
|
||||
'8.4.8' =>
|
||||
array (
|
||||
'announcement' =>
|
||||
|
||||
16
releases/8_2_29.php
Normal file
16
releases/8_2_29.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
$_SERVER['BASE_PAGE'] = 'releases/8_2_29.php';
|
||||
include_once __DIR__ . '/../include/prepend.inc';
|
||||
site_header('PHP 8.2.29 Release Announcement');
|
||||
?>
|
||||
<h1>PHP 8.2.29 Release Announcement</h1>
|
||||
|
||||
<p>The PHP development team announces the immediate availability of PHP 8.2.29. This is a security release.</p>
|
||||
|
||||
<p>All PHP 8.2 users are encouraged to upgrade to this version.</p>
|
||||
|
||||
<p>For source downloads of PHP 8.2.29 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.2.29">ChangeLog</a>.
|
||||
</p>
|
||||
<?php site_footer();
|
||||
Reference in New Issue
Block a user