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

Announce 8.0.6

This commit is contained in:
Sara Golemon
2021-05-07 13:41:14 +00:00
parent 7186e6a770
commit a50d9f5fca
5 changed files with 61 additions and 5 deletions

View File

@@ -10,6 +10,18 @@ site_header("PHP 8 ChangeLog", array("current" => "docs", "css" => array("change
<a name="PHP_8_0"></a>
<section class="version" id="8.0.6"><!-- {{{ 8.0.6 -->
<h3>Version 8.0.6</h3>
<b><?php release_date('06-May-2021'); ?></b>
<ul><li>PDO_pgsql:
<ul>
<li>Revert "<?php bugfix(80892); ?> (PDO::PARAM_INT is treated the same as PDO::PARAM_STR)"</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="8.0.5"><!-- {{{ 8.0.5 -->
<h3>Version 8.0.5</h3>
<b><?php release_date('29-Apr-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-05-06-2.xml"/>
<xi:include href="entries/2021-05-06-1.xml"/>
<xi:include href="entries/2021-04-30-1.xml"/>
<xi:include href="entries/2021-04-29-2.xml"/>

View File

@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<entry xmlns="http://www.w3.org/2005/Atom">
<title>PHP 8.0.6 Released!</title>
<id>https://www.php.net/archive/2021.php#2021-05-06-2</id>
<published>2021-05-06T13:41:40+00:00</published>
<updated>2021-05-06T13:41:40+00:00</updated>
<link href="https://www.php.net/index.php#id2021-05-06-2" rel="alternate" type="text/html"/>
<link href="https://www.php.net/archive/2021.php#2021-05-06-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.0.6. This release reverts a bug related to PDO_pgsql that was
introduced in PHP 8.0.5.</p>
<p>PHP 8.0 users that use PDO_pgsql are encouraged to upgrade to this version.</p>
<p>For source downloads of PHP 8.0.6 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.0.6">ChangeLog</a>.
</p>
</div>
</content>
</entry>

View File

@@ -20,13 +20,13 @@ $RELEASES = (function() {
/* PHP 8.0 Release */
$data['8.0'] = [
'version' => '8.0.5',
'date' => '29 Apr 2021',
'version' => '8.0.6',
'date' => '06 May 2021',
'tags' => [], // Set to ['security'] for security releases.
'sha256' => [
'tar.gz' => '50aeac6fe9c2b5577d534369392ebb89c3e7a342b20ef538832b1df996cccb2a',
'tar.bz2' => '195d934febefaac3b19ac586679149759324a434411ae8aca6f7d87553ef08e0',
'tar.xz' => '5dd358b35ecd5890a4f09fb68035a72fe6b45d3ead6999ea95981a107fd1f2ab',
'tar.gz' => '51a3dcea6deb8ab82ad035d15baa7f5398980f576ac1968313ef149f7cf20100',
'tar.bz2' => '26a8a9dad66012039deb0bcf151c6e22ab1e4b6a91508383ff705da41289526e',
'tar.xz' => 'e9871d3b6c391fe9e89f86f6334852dcc10eeaaa8d5565beb8436e7f0cf30e20',
]
];

18
releases/8_0_6.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
$_SERVER['BASE_PAGE'] = 'releases/8.0.6.php';
include_once __DIR__ . '/../include/prepend.inc';
site_header('PHP 8.0.6 Release Announcement');
?>
<h1>PHP 8.0.6 Release Announcement</h1>
<p>The PHP development team announces the immediate availability of PHP
8.0.6. This release reverts a bug related to PDO_pgsql that was
introduced in PHP 8.0.5.</p>
<p>PHP 8.0 users that use PDO_pgsql are encouraged to upgrade to this version.</p>
<p>For source downloads of PHP 8.0.6 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.0.6">ChangeLog</a>.
</p>
<?php site_footer();