1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00
This commit is contained in:
Christoph M. Becker
2021-08-26 13:36:28 +02:00
parent 9ce8ebca3c
commit 52eae814b2
4 changed files with 55 additions and 5 deletions

View File

@@ -1676,6 +1676,18 @@ changelog_header(7, $MINOR_VERSIONS);
<a id="PHP_7_3"></a>
<section class="version" id="7.3.30"><!-- {{{ 7.3.30 -->
<h3>Version 7.3.30</h3>
<b><?php release_date('26-Aug-2021'); ?></b>
<ul><li>Phar:
<ul>
<li><?php bugfix(81211); ?>: Symlinks are followed when creating PHAR archive.</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="7.3.29"><!-- {{{ 7.3.29 -->
<h3>Version 7.3.29</h3>
<b><?php release_date('01-Jul-2021'); ?></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/2021-08-26-2.xml"/>
<xi:include href="entries/2021-08-26-1.xml"/>
<xi:include href="entries/2021-08-19-1.xml"/>
<xi:include href="entries/2021-08-05-2.xml"/>

View File

@@ -329,6 +329,43 @@ $OLDRELEASES = array (
),
7 =>
array (
'7.3.29' =>
array (
'announcement' =>
array (
'English' => '/releases/7_3_29.php',
),
'tags' =>
array (
0 => 'security',
),
'date' => '01 Jul 2021',
'source' =>
array (
0 =>
array (
'filename' => 'php-7.3.29.tar.gz',
'name' => 'PHP 7.3.29 (tar.gz)',
'sha256' => 'ba4de3955b0cbd33baee55a83568acc4347605e210a54b5654e4c1e09b544659',
'date' => '01 Jul 2021',
),
1 =>
array (
'filename' => 'php-7.3.29.tar.bz2',
'name' => 'PHP 7.3.29 (tar.bz2)',
'sha256' => 'a83a2878140bd86935f0046bbfe92672c8ab688fbe4ccf9704add6b9605ee4d0',
'date' => '01 Jul 2021',
),
2 =>
array (
'filename' => 'php-7.3.29.tar.xz',
'name' => 'PHP 7.3.29 (tar.xz)',
'sha256' => '7db2834511f3d86272dca3daee3f395a5a4afce359b8342aa6edad80e12eb4d0',
'date' => '01 Jul 2021',
),
),
'museum' => false,
),
'7.4.21' =>
array (
'announcement' =>

View File

@@ -44,13 +44,13 @@ $RELEASES = (function() {
/* PHP 7.3 Release */
$data['7.3'] = [
'version' => '7.3.29',
'date' => '01 Jul 2021',
'version' => '7.3.30',
'date' => '26 Aug 2021',
'tags' => ['security'],
'sha256' => [
'tar.gz' => 'ba4de3955b0cbd33baee55a83568acc4347605e210a54b5654e4c1e09b544659',
'tar.bz2' => 'a83a2878140bd86935f0046bbfe92672c8ab688fbe4ccf9704add6b9605ee4d0',
'tar.xz' => '7db2834511f3d86272dca3daee3f395a5a4afce359b8342aa6edad80e12eb4d0',
'tar.gz' => '3810a9b631eb7f236ecf02b9a78bab8d957b6cfdb1646a29e3b34e01d36c0510',
'tar.bz2' => 'ccc532e660761df9b5509b9b913d2dc049b0a9954108fe212aeeb8bc2556b502',
'tar.xz' => '0ebfd656df0f3b1ea37ff2887f8f2d1a71cd160fb0292547c0ee0a99e58ffd1b',
]
];