Skip to content

Commit ce26538

Browse files
committed
Announce 8.0.7
1 parent 017e6fe commit ce26538

File tree

6 files changed

+148
-5
lines changed

6 files changed

+148
-5
lines changed

ChangeLog-8.php

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,75 @@
1010

1111
<a name="PHP_8_0"></a>
1212

13+
<section class="version" id="8.0.7"><!-- {{{ 8.0.7 -->
14+
<h3>Version 8.0.7</h3>
15+
<b><?php release_date('03-Jun-2021'); ?></b>
16+
<ul><li>Core:
17+
<ul>
18+
<li><?php bugfix(80960); ?> (opendir() warning wrong info when failed on Windows).</li>
19+
<li><?php bugfix(67792); ?> (HTTP Authorization schemes are treated as case-sensitive).</li>
20+
<li><?php bugfix(80972); ?> (Memory exhaustion on invalid string offset).</li>
21+
</ul></li>
22+
<li>FPM:
23+
<ul>
24+
<li><?php bugfix(65800); ?> (Events port mechanism).</li>
25+
</ul></li>
26+
<li>FTP:
27+
<ul>
28+
<li><?php bugfix(80901); ?> (Info leak in ftp extension).</li>
29+
<li><?php bugfix(79100); ?> (Wrong FTP error messages).</li>
30+
</ul></li>
31+
<li>GD:
32+
<ul>
33+
<li><?php bugfix(81032); ?> (GD install is affected by external libgd installation).</li>
34+
</ul></li>
35+
<li>Intl:
36+
<ul>
37+
<li><?php bugfix(81019); ?> (Unable to clone NumberFormatter after failed parse()).</li>
38+
</ul></li>
39+
<li>MBString:
40+
<ul>
41+
<li><?php bugfix(81011); ?> (mb_convert_encoding removes references from arrays).</li>
42+
</ul></li>
43+
<li>ODBC:
44+
<ul>
45+
<li><?php bugfix(80460); ?> (ODBC doesn't account for SQL_NO_TOTAL indicator).</li>
46+
</ul></li>
47+
<li>Opcache:
48+
<ul>
49+
<li><?php bugfix(81007); ?> (JIT "not supported" on 32-bit x86 -- build problem?).</li>
50+
<li><?php bugfix(81015); ?> (Opcache optimization assumes wrong part of ternary operator in if-condition).</li>
51+
<li><?php bugfix(81046); ?> (Literal compaction merges non-equal related literals).</li>
52+
</ul></li>
53+
<li>PDO_MySQL:
54+
<ul>
55+
<li><?php bugfix(81037); ?> (PDO discards error message text from prepared statement).</li>
56+
</ul></li>
57+
<li>PDO_ODBC:
58+
<ul>
59+
<li><?php bugfix(44643); ?> (bound parameters ignore explicit type definitions).</li>
60+
</ul></li>
61+
<li>pgsql:
62+
<ul>
63+
<li>Fixed php_pgsql_fd_cast() wrt. php_stream_can_cast().</li>
64+
</ul></li>
65+
<li>SPL:
66+
<ul>
67+
<li><?php bugfix(80933); ?> (SplFileObject::DROP_NEW_LINE is broken for NUL and CR).</li>
68+
</ul></li>
69+
<li>XMLReader:
70+
<ul>
71+
<li><?php bugfix(73246); ?> (XMLReader: encoding length not checked).</li>
72+
</ul></li>
73+
<li>Zip:
74+
<ul>
75+
<li><?php bugfix(80863); ?> (ZipArchive::extractTo() ignores references).</li>
76+
</ul></li>
77+
</ul>
78+
<!-- }}} --></section>
79+
80+
81+
1382
<section class="version" id="8.0.6"><!-- {{{ 8.0.6 -->
1483
<h3>Version 8.0.6</h3>
1584
<b><?php release_date('06-May-2021'); ?></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/2021-06-03-2.xml"/>
1213
<xi:include href="entries/2021-06-03-1.xml"/>
1314
<xi:include href="entries/2021-05-31-1.xml"/>
1415
<xi:include href="entries/2021-05-06-2.xml"/>

archive/entries/2021-06-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.0.7 Released!</title>
4+
<id>https://www.php.net/archive/2021.php#2021-06-03-2</id>
5+
<published>2021-06-03T22:08:39+00:00</published>
6+
<updated>2021-06-03T22:08:39+00:00</updated>
7+
<link href="https://www.php.net/index.php#id2021-06-03-2" rel="alternate" type="text/html"/>
8+
<link href="https://www.php.net/archive/2021.php#2021-06-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.0.7. This is a bug fix 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.7 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.7">ChangeLog</a>.
19+
</p> </div>
20+
</content>
21+
</entry>

include/releases.inc

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,42 @@
22
$OLDRELEASES = array (
33
8 =>
44
array (
5+
'8.0.6' =>
6+
array (
7+
'announcement' =>
8+
array (
9+
'English' => '/releases/8_0_6.php',
10+
),
11+
'tags' =>
12+
array (
13+
),
14+
'date' => '06 May 2021',
15+
'source' =>
16+
array (
17+
0 =>
18+
array (
19+
'filename' => 'php-8.0.6.tar.gz',
20+
'name' => 'PHP 8.0.6 (tar.gz)',
21+
'sha256' => '51a3dcea6deb8ab82ad035d15baa7f5398980f576ac1968313ef149f7cf20100',
22+
'date' => '06 May 2021',
23+
),
24+
1 =>
25+
array (
26+
'filename' => 'php-8.0.6.tar.bz2',
27+
'name' => 'PHP 8.0.6 (tar.bz2)',
28+
'sha256' => '26a8a9dad66012039deb0bcf151c6e22ab1e4b6a91508383ff705da41289526e',
29+
'date' => '06 May 2021',
30+
),
31+
2 =>
32+
array (
33+
'filename' => 'php-8.0.6.tar.xz',
34+
'name' => 'PHP 8.0.6 (tar.xz)',
35+
'sha256' => 'e9871d3b6c391fe9e89f86f6334852dcc10eeaaa8d5565beb8436e7f0cf30e20',
36+
'date' => '06 May 2021',
37+
),
38+
),
39+
'museum' => false,
40+
),
541
'8.0.5' =>
642
array (
743
'announcement' =>

include/version.inc

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

2121
/* PHP 8.0 Release */
2222
$data['8.0'] = [
23-
'version' => '8.0.6',
24-
'date' => '06 May 2021',
23+
'version' => '8.0.7',
24+
'date' => '03 Jun 2021',
2525
'tags' => [], // Set to ['security'] for security releases.
2626
'sha256' => [
27-
'tar.gz' => '51a3dcea6deb8ab82ad035d15baa7f5398980f576ac1968313ef149f7cf20100',
28-
'tar.bz2' => '26a8a9dad66012039deb0bcf151c6e22ab1e4b6a91508383ff705da41289526e',
29-
'tar.xz' => 'e9871d3b6c391fe9e89f86f6334852dcc10eeaaa8d5565beb8436e7f0cf30e20',
27+
'tar.gz' => '1e7462455bec8062ef3fc7c74f1f496417cb80aa374ce11edb35015de248c3c1',
28+
'tar.bz2' => '72b2f2c96f35748b1d6e8a71af4ead439b17129aefe611eb0baf1bd313635f79',
29+
'tar.xz' => 'd5fc2e4fc780a32404d88c360e3e0009bc725d936459668e9c2ac992f2d83654',
3030
]
3131
];
3232

releases/8_0_7.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_7.php';
3+
include_once __DIR__ . '/../include/prepend.inc';
4+
site_header('PHP 8.0.7 Release Announcement');
5+
?>
6+
<h1>PHP 8.0.7 Release Announcement</h1>
7+
8+
<p>The PHP development team announces the immediate availability of PHP 8.0.7. This is a bug fix 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.7 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.7">ChangeLog</a>.
15+
</p>
16+
<?php site_footer();

0 commit comments

Comments
 (0)