Skip to content

Commit 6232fad

Browse files
committed
Announce PHP 8.2.29
1 parent 9651a28 commit 6232fad

File tree

5 files changed

+95
-0
lines changed

5 files changed

+95
-0
lines changed

ChangeLog-8.php

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3334,6 +3334,26 @@
33343334

33353335
<a id="PHP_8_2"></a>
33363336

3337+
<section class="version" id="8.2.29"><!-- {{{ 8.2.29 -->
3338+
<h3>Version 8.2.29</h3>
3339+
<b><?php release_date('03-Jul-2025'); ?></b>
3340+
<ul><li>PGSQL:
3341+
<ul>
3342+
<li>Fixed <?php githubsecurityl('php/php-src', 'hrwm-9436-5mv3'); ?> (pgsql extension does not check for errors during escaping). (CVE-2025-1735)</li>
3343+
</ul></li>
3344+
<li>SOAP:
3345+
<ul>
3346+
<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>
3347+
</ul></li>
3348+
<li>Standard:
3349+
<ul>
3350+
<li>Fixed <?php githubsecurityl('php/php-src', '3cr5-j632-f35r'); ?> (Null byte termination in hostnames). (CVE-2025-1220)</li>
3351+
</ul></li>
3352+
</ul>
3353+
<!-- }}} --></section>
3354+
3355+
3356+
33373357
<section class="version" id="8.2.28"><!-- {{{ 8.2.28 -->
33383358
<h3>Version 8.2.28</h3>
33393359
<b><?php release_date('13-Mar-2025'); ?></b>

archive/archive.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<uri>http://php.net/contact</uri>
1010
<email>[email protected]</email>
1111
</author>
12+
<xi:include href="entries/2025-07-03-2.xml"/>
1213
<xi:include href="entries/2025-07-03-1.xml"/>
1314
<xi:include href="entries/2025-06-11-1.xml"/>
1415
<xi:include href="entries/2025-06-09-1.xml"/>

archive/entries/2025-07-03-2.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<entry xmlns="http://www.w3.org/2005/Atom">
3+
<title>PHP 8.2.29 Released!</title>
4+
<id>https://www.php.net/archive/2025.php#2025-07-03-2</id>
5+
<published>2025-07-03T12:03:57+00:00</published>
6+
<updated>2025-07-03T12:03:57+00:00</updated>
7+
<link href="https://www.php.net/index.php#2025-07-03-2" rel="alternate" type="text/html"/>
8+
<link href="https://www.php.net/archive/2025.php#2025-07-03-2" rel="via" type="text/html"/>
9+
<category term="releases" label="New PHP release"/>
10+
<category term="frontpage" label="PHP.net frontpage news"/>
11+
<content type="xhtml">
12+
<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>
13+
14+
<p>All PHP 8.2 users are encouraged to upgrade to this version.</p>
15+
16+
<p>For source downloads of PHP 8.2.29 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>,
17+
Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>.
18+
The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.29">ChangeLog</a>.
19+
</p> </div>
20+
</content>
21+
</entry>

include/releases.inc

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,43 @@
22
$OLDRELEASES = array (
33
8 =>
44
array (
5+
'8.2.28' =>
6+
array (
7+
'announcement' =>
8+
array (
9+
'English' => '/releases/8_2_28.php',
10+
),
11+
'tags' =>
12+
array (
13+
0 => 'security',
14+
),
15+
'date' => '13 Mar 2025',
16+
'source' =>
17+
array (
18+
0 =>
19+
array (
20+
'filename' => 'php-8.2.28.tar.gz',
21+
'name' => 'PHP 8.2.28 (tar.gz)',
22+
'sha256' => '3318300888de5023720cc84efad5e005e53f30b5f0072fae65a750dabcaf6ec3',
23+
'date' => '13 Mar 2025',
24+
),
25+
1 =>
26+
array (
27+
'filename' => 'php-8.2.28.tar.bz2',
28+
'name' => 'PHP 8.2.28 (tar.bz2)',
29+
'sha256' => '2919cc1b92190a58dc17904b92e626600b96ce49a4c72e77513786a4406acce5',
30+
'date' => '13 Mar 2025',
31+
),
32+
2 =>
33+
array (
34+
'filename' => 'php-8.2.28.tar.xz',
35+
'name' => 'PHP 8.2.28 (tar.xz)',
36+
'sha256' => 'af8c9153153a7f489153b7a74f2f29a5ee36f5cb2c6c6929c98411a577e89c91',
37+
'date' => '13 Mar 2025',
38+
),
39+
),
40+
'museum' => false,
41+
),
542
'8.4.8' =>
643
array (
744
'announcement' =>

releases/8_2_29.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
$_SERVER['BASE_PAGE'] = 'releases/8_2_29.php';
3+
include_once __DIR__ . '/../include/prepend.inc';
4+
site_header('PHP 8.2.29 Release Announcement');
5+
?>
6+
<h1>PHP 8.2.29 Release Announcement</h1>
7+
8+
<p>The PHP development team announces the immediate availability of PHP 8.2.29. This is a security release.</p>
9+
10+
<p>All PHP 8.2 users are encouraged to upgrade to this version.</p>
11+
12+
<p>For source downloads of PHP 8.2.29 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>,
13+
Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>.
14+
The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.29">ChangeLog</a>.
15+
</p>
16+
<?php site_footer();

0 commit comments

Comments
 (0)