Skip to content

Commit 0df37ba

Browse files
Announce PHP 8.1.25
1 parent 353056b commit 0df37ba

File tree

6 files changed

+161
-5
lines changed

6 files changed

+161
-5
lines changed

ChangeLog-8.php

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1228,6 +1228,88 @@
12281228

12291229
<a id="PHP_8_1"></a>
12301230

1231+
<section class="version" id="8.1.25"><!-- {{{ 8.1.25 -->
1232+
<h3>Version 8.1.25</h3>
1233+
<b><?php release_date('26-Oct-2023'); ?></b>
1234+
<ul><li>Core:
1235+
<ul>
1236+
<li>Fixed bug <?php githubissuel('php/php-src', 12207); ?> (memory leak when class using trait with doc block).</li>
1237+
<li>Fixed bug <?php githubissuel('php/php-src', 12215); ?> (Module entry being overwritten causes type errors in ext/dom).</li>
1238+
<li>Fixed bug <?php githubissuel('php/php-src', 12273); ?> (__builtin_cpu_init check).</li>
1239+
<li><?php bugfix(80092); ?> (ZTS + preload = segfault on shutdown).</li>
1240+
</ul></li>
1241+
<li>CLI:
1242+
<ul>
1243+
<li>Ensure a single Date header is present.</li>
1244+
</ul></li>
1245+
<li>CType:
1246+
<ul>
1247+
<li>Fixed bug <?php githubissuel('php/php-src', 11997); ?> (ctype_alnum 5 times slower in PHP 8.1 or greater).</li>
1248+
</ul></li>
1249+
<li>DOM:
1250+
<ul>
1251+
<li>Restore old namespace reconciliation behaviour.</li>
1252+
<li>Fixed bug <?php githubissuel('php/php-src', 8996); ?> (DOMNode serialization on PHP ^8.1).</li>
1253+
</ul></li>
1254+
<li>Fileinfo:
1255+
<ul>
1256+
<li>Fixed bug <?php githubissuel('php/php-src', 11891); ?> (fileinfo returns text/xml for some svg files).</li>
1257+
</ul></li>
1258+
<li>Filter:
1259+
<ul>
1260+
<li>Fix explicit FILTER_REQUIRE_SCALAR with FILTER_CALLBACK (ilutov)</li>
1261+
</ul></li>
1262+
<li>Hash:
1263+
<ul>
1264+
<li>Fixed bug <?php githubissuel('php/php-src', 12186); ?> (segfault copying/cloning a finalized HashContext).</li>
1265+
</ul></li>
1266+
<li>Intl:
1267+
<ul>
1268+
<li>Fixed bug <?php githubissuel('php/php-src', 12243); ?> (segfault on IntlDateFormatter::construct).</li>
1269+
<li>Fixed bug <?php githubissuel('php/php-src', 12282); ?> (IntlDateFormatter::construct should throw an exception on an invalid locale).</li>
1270+
</ul></li>
1271+
<li>MySQLnd:
1272+
<ul>
1273+
<li>Fixed bug <?php githubissuel('php/php-src', 12297); ?> (PHP Startup: Invalid library (maybe not a PHP library) 'mysqlnd.so' in Unknown on line).</li>
1274+
</ul></li>
1275+
<li>Opcache:
1276+
<ul>
1277+
<li>Fixed opcache_invalidate() on deleted file.</li>
1278+
<li>Fixed bug <?php githubissuel('php/php-src', 12380); ?> (JIT+private array property access inside closure accesses private property in child class).</li>
1279+
</ul></li>
1280+
<li>PCRE:
1281+
<ul>
1282+
<li>Fixed bug <?php githubissuel('php/php-src', 11956); ?> (Backport upstream fix, PCRE regular expressions with JIT enabled gives different result).</li>
1283+
</ul></li>
1284+
<li>SimpleXML:
1285+
<ul>
1286+
<li>Fixed bug <?php githubissuel('php/php-src', 12170); ?> (Can't use xpath with comments in SimpleXML).</li>
1287+
<li>Fixed bug <?php githubissuel('php/php-src', 12223); ?> (Entity reference produces infinite loop in var_dump/print_r).</li>
1288+
<li>Fixed bug <?php githubissuel('php/php-src', 12167); ?> (Unable to get processing instruction contents in SimpleXML).</li>
1289+
<li>Fixed bug <?php githubissuel('php/php-src', 12169); ?> (Unable to get comment contents in SimpleXML).</li>
1290+
</ul></li>
1291+
<li>Streams:
1292+
<ul>
1293+
<li>Fixed bug <?php githubissuel('php/php-src', 12190); ?> (binding ipv4 address with both address and port at 0).</li>
1294+
</ul></li>
1295+
<li>XML:
1296+
<ul>
1297+
<li>Fix return type of stub of xml_parse_into_struct().</li>
1298+
<li>Fix memory leak when calling xml_parse_into_struct() twice.</li>
1299+
</ul></li>
1300+
<li>XSL:
1301+
<ul>
1302+
<li>Fix type error on XSLTProcessor::transformToDoc return value with SimpleXML.</li>
1303+
</ul></li>
1304+
<li>Sockets:
1305+
<ul>
1306+
<li>Fix socket_export_stream() with wrong protocol (twosee)</li>
1307+
</ul></li>
1308+
</ul>
1309+
<!-- }}} --></section>
1310+
1311+
1312+
12311313
<section class="version" id="8.1.24"><!-- {{{ 8.1.24 -->
12321314
<h3>Version 8.1.24</h3>
12331315
<b><?php release_date('28-Sep-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-10-26-3.xml"/>
1213
<xi:include href="entries/2023-10-26-2.xml"/>
1314
<xi:include href="entries/2023-10-26-1.xml"/>
1415
<xi:include href="entries/2023-10-20-1.xml"/>

archive/entries/2023-10-26-3.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.1.25 Released!</title>
4+
<id>https://www.php.net/archive/2023.php#2023-10-26-3</id>
5+
<published>2023-10-26T23:49:55+00:00</published>
6+
<updated>2023-10-26T23:49:55+00:00</updated>
7+
<link href="https://www.php.net/index.php#2023-10-26-3" rel="alternate" type="text/html"/>
8+
<link href="https://www.php.net/archive/2023.php#2023-10-26-3" 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.1.25. This is a bug fix release.</p>
13+
14+
<p>All PHP 8.1 users are encouraged to upgrade to this version.</p>
15+
16+
<p>For source downloads of PHP 8.1.25 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.1.25">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.1.24' =>
6+
array (
7+
'announcement' =>
8+
array (
9+
'English' => '/releases/8_1_24.php',
10+
),
11+
'tags' =>
12+
array (
13+
),
14+
'date' => '28 Sep 2023',
15+
'source' =>
16+
array (
17+
0 =>
18+
array (
19+
'filename' => 'php-8.1.24.tar.gz',
20+
'name' => 'PHP 8.1.24 (tar.gz)',
21+
'sha256' => 'd6001a5c16765cd1897609fc71ff083e35db9a28c8874a1ff191cdebe80a6460',
22+
'date' => '28 Sep 2023',
23+
),
24+
1 =>
25+
array (
26+
'filename' => 'php-8.1.24.tar.bz2',
27+
'name' => 'PHP 8.1.24 (tar.bz2)',
28+
'sha256' => 'b0ae5804a9ad53a7e28d0a32629495f816f935b10830c71f4ec15827185a73c9',
29+
'date' => '28 Sep 2023',
30+
),
31+
2 =>
32+
array (
33+
'filename' => 'php-8.1.24.tar.xz',
34+
'name' => 'PHP 8.1.24 (tar.xz)',
35+
'sha256' => 'ee61f6232bb29bd2e785daf325d2177f2272bf80d086c295a724594e710bce3d',
36+
'date' => '28 Sep 2023',
37+
),
38+
),
39+
'museum' => false,
40+
),
541
'8.2.11' =>
642
array (
743
'announcement' =>

include/version.inc

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

3333
/* PHP 8.1 Release */
3434
$data['8.1'] = [
35-
'version' => '8.1.24',
36-
'date' => '28 Sep 2023',
35+
'version' => '8.1.25',
36+
'date' => '26 Oct 2023',
3737
'tags' => [], // Set to ['security'] for security releases.
3838
'sha256' => [
39-
'tar.gz' => 'd6001a5c16765cd1897609fc71ff083e35db9a28c8874a1ff191cdebe80a6460',
40-
'tar.bz2' => 'b0ae5804a9ad53a7e28d0a32629495f816f935b10830c71f4ec15827185a73c9',
41-
'tar.xz' => 'ee61f6232bb29bd2e785daf325d2177f2272bf80d086c295a724594e710bce3d',
39+
'tar.gz' => '1a8c59d6b3eccb404c229e947558d2bf1220c3dec0b0036690fadc07f39934ab',
40+
'tar.bz2' => 'a86a88c1840c1bc832bcfd2fbec3b8a1942c8314da5dff53f09f9c98d0c12e8a',
41+
'tar.xz' => '66fdba064aa119b1463a7969571d42f4642690275d8605ab5149bcc5107e2484',
4242
]
4343
];
4444

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

0 commit comments

Comments
 (0)