Skip to content

Commit 3f0c7ae

Browse files
committed
Announce PHP 8.3.2
1 parent 9614b52 commit 3f0c7ae

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
@@ -8,6 +8,88 @@
88
?>
99
<a id="PHP_8_3"></a>
1010

11+
<section class="version" id="8.3.2"><!-- {{{ 8.3.2 -->
12+
<h3>Version 8.3.2</h3>
13+
<b><?php release_date('18-Jan-2024'); ?></b>
14+
<ul><li>Core:
15+
<ul>
16+
<li>Fixed bug <?php githubissuel('php/php-src', 12953); ?> (false positive SSA integrity verification failed when loading composer classmaps with more than 11k elements).</li>
17+
<li>Fixed bug <?php githubissuel('php/php-src', 12999); ?> (zend_strnlen build when strnlen is unsupported).</li>
18+
<li>Fixed bug <?php githubissuel('php/php-src', 12966); ?> (missing cross-compiling 3rd argument so Autoconf doesn't emit warnings).</li>
19+
<li>Fixed bug <?php githubissuel('php/php-src', 12854); ?> (8.3 - as final trait-used method does not correctly report visibility in Reflection).</li>
20+
</ul></li>
21+
<li>Cli:
22+
<ul>
23+
<li>Fix incorrect timeout in built-in web server when using router script and max_input_time.</li>
24+
</ul></li>
25+
<li>DOM:
26+
<ul>
27+
<li>Fixed bug <?php githubissuel('php/php-src', 12870); ?> (Creating an xmlns attribute results in a DOMException).</li>
28+
<li>Fix crash when toggleAttribute() is used without a document.</li>
29+
<li>Fix crash in adoptNode with attribute references.</li>
30+
<li>Fixed bug <?php githubissuel('php/php-src', 13012); ?> (DOMNode::isEqualNode() is incorrect when attribute order is different).</li>
31+
</ul></li>
32+
<li>FFI:
33+
<ul>
34+
<li>Fixed bug <?php githubissuel('php/php-src', 9698); ?> (stream_wrapper_register crashes with FFI\CData).</li>
35+
<li>Fixed bug <?php githubissuel('php/php-src', 12905); ?> (FFI::new interacts badly with observers).</li>
36+
</ul></li>
37+
<li>Intl:
38+
<ul>
39+
<li>Fixed <?php githubissuel('php/php-src', 12943); ?> (IntlDateFormatter::__construct accepts 'C' as valid locale).</li>
40+
</ul></li>
41+
<li>Hash:
42+
<ul>
43+
<li>Fixed bug <?php githubissuel('php/php-src', 12936); ?> (hash() function hangs endlessly if using sha512 on strings &gt;= 4GiB).</li>
44+
</ul></li>
45+
<li>ODBC:
46+
<ul>
47+
<li>Fix crash on Apache shutdown with persistent connections.</li>
48+
</ul></li>
49+
<li>Opcache:
50+
<ul>
51+
<li>Fixed oss-fuzz #64727 (JIT undefined array key warning may overwrite DIM with NULL when DIM is the same var as result).</li>
52+
<li>Added workaround for SELinux mprotect execheap issue. See https://bugzilla.kernel.org/show_bug.cgi?id=218258.</li>
53+
</ul></li>
54+
<li>OpenSSL:
55+
<ul>
56+
<li>Fixed bug <?php githubissuel('php/php-src', 12987); ?> (openssl_csr_sign might leak new cert on error).</li>
57+
</ul></li>
58+
<li>PDO:
59+
<ul>
60+
<li>Fix <?php githubissuel('php/php-src', 12969); ?> (Fixed PDO::getAttribute() to get PDO::ATTR_STRINGIFY_FETCHES).</li>
61+
</ul></li>
62+
<li>PDO_ODBC:
63+
<ul>
64+
<li>Fixed bug <?php githubissuel('php/php-src', 12767); ?> (Unable to turn on autocommit mode with setAttribute()).</li>
65+
</ul></li>
66+
<li>PGSQL:
67+
<ul>
68+
<li>Fixed auto_reset_persistent handling and allow_persistent type.</li>
69+
<li>Fixed bug <?php githubissuel('php/php-src', 12974); ?> (Apache crashes on shutdown when using pg_pconnect()).</li>
70+
</ul></li>
71+
<li>Phar:
72+
<ul>
73+
<li><?php bugfix(77432); ?> (Segmentation fault on including phar file).</li>
74+
</ul></li>
75+
<li>PHPDBG:
76+
<ul>
77+
<li>Fixed bug <?php githubissuel('php/php-src', 12962); ?> (Double free of init_file in phpdbg_prompt.c).</li>
78+
</ul></li>
79+
<li>SimpleXML:
80+
<ul>
81+
<li>Fix getting the address of an uninitialized property of a SimpleXMLElement resulting in a crash.</li>
82+
<li>Fixed bug <?php githubissuel('php/php-src', 12929); ?> (SimpleXMLElement with stream_wrapper_register can segfault).</li>
83+
</ul></li>
84+
<li>Tidy:
85+
<ul>
86+
<li>Fixed bug <?php githubissuel('php/php-src', 12980); ?> (tidynode.props.attribute is missing "Boolean Attributes" and empty attributes).</li>
87+
</ul></li>
88+
</ul>
89+
<!-- }}} --></section>
90+
91+
92+
1193
<section class="version" id="8.3.1"><!-- {{{ 8.3.1 -->
1294
<h3>Version 8.3.1</h3>
1395
<b><?php release_date('21-Dec-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/2024-01-18-1.xml"/>
1213
<xi:include href="entries/2024-01-15-3.xml"/>
1314
<xi:include href="entries/2024-01-15-2.xml"/>
1415
<xi:include href="entries/2024-01-15-1.xml"/>

archive/entries/2024-01-18-1.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.3.2 Released!</title>
4+
<id>https://www.php.net/archive/2024.php#2024-01-18-1</id>
5+
<published>2024-01-18T14:47:41+00:00</published>
6+
<updated>2024-01-18T14:47:41+00:00</updated>
7+
<link href="https://www.php.net/index.php#2024-01-18-1" rel="alternate" type="text/html"/>
8+
<link href="https://www.php.net/archive/2024.php#2024-01-18-1" 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.3.2. This is a bug fix release.</p>
13+
14+
<p>All PHP 8.3 users are encouraged to upgrade to this version.</p>
15+
16+
<p>For source downloads of PHP 8.3.2 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.3.2">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.3.1' =>
6+
array (
7+
'announcement' =>
8+
array (
9+
'English' => '/releases/8_3_1.php',
10+
),
11+
'tags' =>
12+
array (
13+
),
14+
'date' => '21 Dec 2023',
15+
'source' =>
16+
array (
17+
0 =>
18+
array (
19+
'filename' => 'php-8.3.1.tar.gz',
20+
'name' => 'PHP 8.3.1 (tar.gz)',
21+
'sha256' => '2b10218b5e81915d1708ab4b6351362d073556ec73a790553c61fd89c119924e',
22+
'date' => '21 Dec 2023',
23+
),
24+
1 =>
25+
array (
26+
'filename' => 'php-8.3.1.tar.bz2',
27+
'name' => 'PHP 8.3.1 (tar.bz2)',
28+
'sha256' => 'c40fae9197fa68a532f6a062c316dafe3b04c545136b54b9ead4932fc26c6ae1',
29+
'date' => '21 Dec 2023',
30+
),
31+
2 =>
32+
array (
33+
'filename' => 'php-8.3.1.tar.xz',
34+
'name' => 'PHP 8.3.1 (tar.xz)',
35+
'sha256' => '56445b1771b2ba5b7573453f9e8a9451e2d810b1741a352fa05259733b1e9758',
36+
'date' => '21 Dec 2023',
37+
),
38+
),
39+
'museum' => false,
40+
),
541
'8.2.13' =>
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.3 Release */
2222
$data['8.3'] = [
23-
'version' => '8.3.1',
24-
'date' => '21 Dec 2023',
23+
'version' => '8.3.2',
24+
'date' => '18 Jan 2023',
2525
'tags' => [], // Set to ['security'] for security releases.
2626
'sha256' => [
27-
'tar.gz' => '2b10218b5e81915d1708ab4b6351362d073556ec73a790553c61fd89c119924e',
28-
'tar.bz2' => 'c40fae9197fa68a532f6a062c316dafe3b04c545136b54b9ead4932fc26c6ae1',
29-
'tar.xz' => '56445b1771b2ba5b7573453f9e8a9451e2d810b1741a352fa05259733b1e9758',
27+
'tar.gz' => 'decf0f51e5415b21fb6350753e45b6c3be5cc0868e4ec561e5c89326c8e6ef16',
28+
'tar.bz2' => '582b3c837a8d952efffe274a5e49706c43a88c162830c2a8c358089fe7449284',
29+
'tar.xz' => '4ffa3e44afc9c590e28dc0d2d31fc61f0139f8b335f11880a121b9f9b9f0634e',
3030
]
3131
];
3232

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

0 commit comments

Comments
 (0)