Skip to content

Commit a6d5888

Browse files
committed
Announce PHP 8.0.30
1 parent 4b4d55a commit a6d5888

File tree

6 files changed

+96
-5
lines changed

6 files changed

+96
-5
lines changed

ChangeLog-8.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2527,6 +2527,22 @@
25272527

25282528
<a id="PHP_8_0"></a>
25292529

2530+
<section class="version" id="8.0.30"><!-- {{{ 8.0.30 -->
2531+
<h3>Version 8.0.30</h3>
2532+
<b><?php release_date('03-Aug-2023'); ?></b>
2533+
<ul><li>Libxml:
2534+
<ul>
2535+
<li>Fixed bug GHSA-3qrf-m4j2-pcrr (Security issue with external entity loading in XML without enabling it). (CVE-2023-3823)</li>
2536+
</ul></li>
2537+
<li>Phar:
2538+
<ul>
2539+
<li>Fixed bug GHSA-jqcx-ccgc-xwhv (Buffer mismanagement in phar_dir_read()). (CVE-2023-3824)</li>
2540+
</ul></li>
2541+
</ul>
2542+
<!-- }}} --></section>
2543+
2544+
2545+
25302546
<section class="version" id="8.0.29"><!-- {{{ 8.0.29 -->
25312547
<h3>Version 8.0.29</h3>
25322548
<b><?php release_date('08-Jun-2023'); ?></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/2023-08-04-1.xml"/>
1213
<xi:include href="entries/2023-08-03-2.xml"/>
1314
<xi:include href="entries/2023-08-03-1.xml"/>
1415
<xi:include href="entries/2023-07-29-1.xml"/>

archive/entries/2023-08-04-1.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.0.30 Released!</title>
4+
<id>https://www.php.net/archive/2023.php#2023-08-04-1</id>
5+
<published>2023-08-04T18:29:29+00:00</published>
6+
<updated>2023-08-04T18:29:29+00:00</updated>
7+
<link href="https://www.php.net/index.php#2023-08-04-1" rel="alternate" type="text/html"/>
8+
<link href="https://www.php.net/archive/2023.php#2023-08-04-1" 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.0.30. This is a security release.</p>
13+
14+
<p>All PHP 8.0 users are encouraged to upgrade to this version.</p>
15+
16+
<p>For source downloads of PHP 8.0.30 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.0.30">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.0.29' =>
6+
array (
7+
'announcement' =>
8+
array (
9+
'English' => '/releases/8_0_29.php',
10+
),
11+
'tags' =>
12+
array (
13+
0 => 'security',
14+
),
15+
'date' => '08 Jun 2023',
16+
'source' =>
17+
array (
18+
0 =>
19+
array (
20+
'filename' => 'php-8.0.29.tar.gz',
21+
'name' => 'PHP 8.0.29 (tar.gz)',
22+
'sha256' => 'db6ee08df5706365f624cde1cffb20ad6de1effe59d7e886337213a09f2e2684',
23+
'date' => '08 Jun 2023',
24+
),
25+
1 =>
26+
array (
27+
'filename' => 'php-8.0.29.tar.bz2',
28+
'name' => 'PHP 8.0.29 (tar.bz2)',
29+
'sha256' => '4801a1f0e17170286723ab54acd045ac78a9656021d56f104a64543eec922e12',
30+
'date' => '08 Jun 2023',
31+
),
32+
2 =>
33+
array (
34+
'filename' => 'php-8.0.29.tar.xz',
35+
'name' => 'PHP 8.0.29 (tar.xz)',
36+
'sha256' => '14db2fbf26c07d0eb2c9fab25dbde7e27726a3e88452cca671f0896bbb683ca9',
37+
'date' => '08 Jun 2023',
38+
),
39+
),
40+
'museum' => false,
41+
),
542
'8.1.21' =>
643
array (
744
'announcement' =>

include/version.inc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ $RELEASES = (function () {
4444

4545
/* PHP 8.0 Release */
4646
$data['8.0'] = [
47-
'version' => '8.0.29',
48-
'date' => '08 Jun 2023',
47+
'version' => '8.0.30',
48+
'date' => '03 Aug 2023',
4949
'tags' => ['security'], // Set to ['security'] for security releases.
5050
'sha256' => [
51-
'tar.gz' => 'db6ee08df5706365f624cde1cffb20ad6de1effe59d7e886337213a09f2e2684',
52-
'tar.bz2' => '4801a1f0e17170286723ab54acd045ac78a9656021d56f104a64543eec922e12',
53-
'tar.xz' => '14db2fbf26c07d0eb2c9fab25dbde7e27726a3e88452cca671f0896bbb683ca9',
51+
'tar.gz' => '449d2048fcb20a314d8c218097c6d1047a9f1c5bb72aa54d5d3eba0a27a4c80c',
52+
'tar.bz2' => '98a9cb6a0e27a6950cdf4b26dcac48f2be2d936d5224a502f066cf3d4cf19b92',
53+
'tar.xz' => '216ab305737a5d392107112d618a755dc5df42058226f1670e9db90e77d777d9',
5454
]
5555
];
5656

releases/8_0_30.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_0_30.php';
3+
include_once __DIR__ . '/../include/prepend.inc';
4+
site_header('PHP 8.0.30 Release Announcement');
5+
?>
6+
<h1>PHP 8.0.30 Release Announcement</h1>
7+
8+
<p>The PHP development team announces the immediate availability of PHP 8.0.30. This is a security release.</p>
9+
10+
<p>All PHP 8.0 users are encouraged to upgrade to this version.</p>
11+
12+
<p>For source downloads of PHP 8.0.30 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.0.30">ChangeLog</a>.
15+
</p>
16+
<?php site_footer();

0 commit comments

Comments
 (0)