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

Announce PHP 8.0.29

This commit is contained in:
Gabriel Caruso
2023-06-08 11:07:19 +02:00
parent 1417fc7d79
commit e234c4665e
6 changed files with 93 additions and 5 deletions

View File

@@ -2129,6 +2129,18 @@ changelog_header(8, $MINOR_VERSIONS);
<a id="PHP_8_0"></a>
<section class="version" id="8.0.29"><!-- {{{ 8.0.29 -->
<h3>Version 8.0.29</h3>
<b><?php release_date('08-Jun-2023'); ?></b>
<ul><li>Soap:
<ul>
<li>Fixed bug GHSA-76gg-c692-v2mw (Missing error check and insufficient random bytes in HTTP Digest authentication for SOAP).</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="8.0.28"><!-- {{{ 8.0.28 -->
<h3>Version 8.0.28</h3>
<b><?php release_date('14-Feb-2023'); ?></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/2023-06-08-1.xml"/>
<xi:include href="entries/2023-06-03-1.xml"/>
<xi:include href="entries/2023-05-23-1.xml"/>
<xi:include href="entries/2023-05-11-2.xml"/>

View File

@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<entry xmlns="http://www.w3.org/2005/Atom">
<title>PHP 8.0.29 Released!</title>
<id>https://www.php.net/archive/2023.php#2023-06-08-1</id>
<published>2023-06-08T09:03:22+00:00</published>
<updated>2023-06-08T09:03:22+00:00</updated>
<link href="https://www.php.net/index.php#2023-06-08-1" rel="alternate" type="text/html"/>
<link href="https://www.php.net/archive/2023.php#2023-06-08-1" 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.0.29. This is a security release.</p>
<p>All PHP 8.0 users are encouraged to upgrade to this version.</p>
<p>For source downloads of PHP 8.0.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/#php-8.0">windows.php.net/download/</a>.
The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.29">ChangeLog</a>.
</p> </div>
</content>
</entry>

View File

@@ -2,6 +2,43 @@
$OLDRELEASES = array (
8 =>
array (
'8.0.28' =>
array (
'announcement' =>
array (
'English' => '/releases/8_0_28.php',
),
'tags' =>
array (
0 => 'security',
),
'date' => '14 Feb 2023',
'source' =>
array (
0 =>
array (
'filename' => 'php-8.0.28.tar.gz',
'name' => 'PHP 8.0.28 (tar.gz)',
'sha256' => '7432184eae01e4e8e39f03f80e8ec0ca2c8bfebc56e9a7b983541ca8805df22f',
'date' => '14 Feb 2023',
),
1 =>
array (
'filename' => 'php-8.0.28.tar.bz2',
'name' => 'PHP 8.0.28 (tar.bz2)',
'sha256' => '9d5e74935c900e3b9c7b6bc740596b71933630eb9f63717c0c4923d8c788c62e',
'date' => '14 Feb 2023',
),
2 =>
array (
'filename' => 'php-8.0.28.tar.xz',
'name' => 'PHP 8.0.28 (tar.xz)',
'sha256' => '5e07278a1f315a67d36a676c01343ca2d4da5ec5bdb15d018e4248b3012bc0cd',
'date' => '14 Feb 2023',
),
),
'museum' => false,
),
'8.1.18' =>
array (
'announcement' =>

View File

@@ -44,13 +44,13 @@ $RELEASES = (function () {
/* PHP 8.0 Release */
$data['8.0'] = [
'version' => '8.0.28',
'date' => '14 Feb 2023',
'version' => '8.0.29',
'date' => '08 Jun 2023',
'tags' => ['security'], // Set to ['security'] for security releases.
'sha256' => [
'tar.gz' => '7432184eae01e4e8e39f03f80e8ec0ca2c8bfebc56e9a7b983541ca8805df22f',
'tar.bz2' => '9d5e74935c900e3b9c7b6bc740596b71933630eb9f63717c0c4923d8c788c62e',
'tar.xz' => '5e07278a1f315a67d36a676c01343ca2d4da5ec5bdb15d018e4248b3012bc0cd',
'tar.gz' => 'db6ee08df5706365f624cde1cffb20ad6de1effe59d7e886337213a09f2e2684',
'tar.bz2' => '4801a1f0e17170286723ab54acd045ac78a9656021d56f104a64543eec922e12',
'tar.xz' => '14db2fbf26c07d0eb2c9fab25dbde7e27726a3e88452cca671f0896bbb683ca9',
]
];

16
releases/8_0_29.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
$_SERVER['BASE_PAGE'] = 'releases/8_0_29.php';
include_once __DIR__ . '/../include/prepend.inc';
site_header('PHP 8.0.29 Release Announcement');
?>
<h1>PHP 8.0.29 Release Announcement</h1>
<p>The PHP development team announces the immediate availability of PHP 8.0.29. This is a security release.</p>
<p>All PHP 8.0 users are encouraged to upgrade to this version.</p>
<p>For source downloads of PHP 8.0.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/#php-8.0">windows.php.net/download/</a>.
The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.29">ChangeLog</a>.
</p>
<?php site_footer();