Skip to content

Commit 6abd27b

Browse files
committed
Announce PHP 8.3.7
1 parent 547f294 commit 6abd27b

File tree

6 files changed

+165
-6
lines changed

6 files changed

+165
-6
lines changed

ChangeLog-8.php

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,90 @@
88
?>
99
<a id="PHP_8_3"></a>
1010

11+
<section class="version" id="8.3.7"><!-- {{{ 8.3.7 -->
12+
<h3>Version 8.3.7</h3>
13+
<b><?php release_date('09-May-2024'); ?></b>
14+
<ul><li>Core:
15+
<ul>
16+
<li>Fixed zend_call_stack build with Linux/uclibc-ng without thread support.</li>
17+
<li>Fixed bug <?php githubissuel('php/php-src', 13772); ?> (Invalid execute_data-&gt;opline pointers in observer fcall handlers when JIT is enabled).</li>
18+
<li>Fixed bug <?php githubissuel('php/php-src', 13931); ?> (Applying zero offset to null pointer in Zend/zend_opcode.c).</li>
19+
<li>Fixed bug <?php githubissuel('php/php-src', 13942); ?> (Align the behavior of zend-max-execution-timers with other timeout implementations).</li>
20+
<li>Fixed bug <?php githubissuel('php/php-src', 14003); ?> (Broken cleanup of unfinished calls with callable convert parameters).</li>
21+
<li>Fixed bug <?php githubissuel('php/php-src', 14013); ?> (Erroneous dnl appended in configure).</li>
22+
<li>Fixed bug <?php githubissuel('php/php-src', 10232); ?> (If autoloading occurs during constant resolution filename and lineno are identified incorrectly).</li>
23+
<li>Fixed bug <?php githubissuel('php/php-src', 13727); ?> (Missing void keyword).</li>
24+
</ul></li>
25+
<li>Fibers:
26+
<ul>
27+
<li>Fixed bug <?php githubissuel('php/php-src', 13903); ?> (ASAN false positive underflow when executing copy()).</li>
28+
</ul></li>
29+
<li>Fileinfo:
30+
<ul>
31+
<li>Fixed bug <?php githubissuel('php/php-src', 13795); ?> (Test failing in ext/fileinfo/tests/bug78987.phpt on big-endian PPC).</li>
32+
</ul></li>
33+
<li>FPM:
34+
<ul>
35+
<li>Fixed bug <?php githubissuel('php/php-src', 13563); ?> (Setting bool values via env in FPM config fails).</li>
36+
</ul></li>
37+
<li>Intl:
38+
<ul>
39+
<li>Fixed build for icu 74 and onwards.</li>
40+
</ul></li>
41+
<li>MySQLnd:
42+
<ul>
43+
<li>Fix shift out of bounds on 32-bit non-fast-path platforms.</li>
44+
</ul></li>
45+
<li>Opcache:
46+
<ul>
47+
<li>Fixed bug <?php githubissuel('php/php-src', 13433); ?> (Segmentation Fault in zend_class_init_statics when using opcache.preload).</li>
48+
<li>Fixed incorrect assumptions across compilation units for static calls.</li>
49+
</ul></li>
50+
<li>OpenSSL:
51+
<ul>
52+
<li>Fixed bug <?php githubissuel('php/php-src', 10495); ?> (feof on OpenSSL stream hangs indefinitely).</li>
53+
</ul></li>
54+
<li>PDO SQLite:
55+
<ul>
56+
<li>Fix <?php githubissuel('php/php-src', 13984); ?> (Buffer size is now checked before memcmp).</li>
57+
<li>Fix <?php githubissuel('php/php-src', 13998); ?> (Manage refcount of agg_context-&gt;val correctly).</li>
58+
</ul></li>
59+
<li>Phar:
60+
<ul>
61+
<li>Fixed bug <?php githubissuel('php/php-src', 13836); ?> (Renaming a file in a Phar to an already existing filename causes a NULL pointer dereference).</li>
62+
<li>Fixed bug <?php githubissuel('php/php-src', 13833); ?> (Applying zero offset to null pointer in zend_hash.c).</li>
63+
<li>Fix potential NULL pointer dereference before calling EVP_SignInit.</li>
64+
</ul></li>
65+
<li>PHPDBG:
66+
<ul>
67+
<li>Fixed bug <?php githubissuel('php/php-src', 13827); ?> (Null pointer access of type 'zval' in phpdbg_frame).</li>
68+
</ul></li>
69+
<li>Posix:
70+
<ul>
71+
<li>Fix usage of reentrant functions in ext/posix.</li>
72+
</ul></li>
73+
<li>Session:
74+
<ul>
75+
<li>Fixed bug <?php githubissuel('php/php-src', 13856); ?> (Member access within null pointer of type 'ps_files' in ext/session/mod_files.c).</li>
76+
<li>Fixed bug <?php githubissuel('php/php-src', 13891); ?> (memleak and segfault when using ini_set with session.trans_sid_hosts).</li>
77+
<li>Fixed buffer _read/_write size limit on windows for the file mode.</li>
78+
</ul></li>
79+
<li>Streams:
80+
<ul>
81+
<li>Fixed file_get_contents() on Windows fails with "errno=22 Invalid argument".</li>
82+
<li>Fixed bug <?php githubissuel('php/php-src', 13264); ?> (Part 1 - Memory leak on stream filter failure).</li>
83+
<li>Fixed bug <?php githubissuel('php/php-src', 13860); ?> (Incorrect PHP_STREAM_OPTION_CHECK_LIVENESS case in ext/openssl/xp_ssl.c - causing use of dead socket).</li>
84+
<li>Fixed bug <?php githubissuel('php/php-src', 11678); ?> (Build fails on musl 1.2.4 - lfs64).</li>
85+
</ul></li>
86+
<li>Treewide:
87+
<ul>
88+
<li>Fix gcc-14 Wcalloc-transposed-args warnings.</li>
89+
</ul></li>
90+
</ul>
91+
<!-- }}} --></section>
92+
93+
94+
1195
<section class="version" id="8.3.6"><!-- {{{ 8.3.6 -->
1296
<h3>Version 8.3.6</h3>
1397
<b><?php release_date('11-Apr-2024'); ?></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-05-09-2.xml"/>
1213
<xi:include href="entries/2024-05-09-1.xml"/>
1314
<xi:include href="entries/2024-04-24-1.xml"/>
1415
<xi:include href="entries/2024-04-11-3.xml"/>

archive/entries/2024-05-09-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.3.7 Released!</title>
4+
<id>https://www.php.net/archive/2024.php#2024-05-09-2</id>
5+
<published>2024-05-09T14:40:06+00:00</published>
6+
<updated>2024-05-09T14:40:06+00:00</updated>
7+
<link href="https://www.php.net/index.php#2024-05-09-2" rel="alternate" type="text/html"/>
8+
<link href="https://www.php.net/archive/2024.php#2024-05-09-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.3.7. 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.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.3.7">ChangeLog</a>.
19+
</p> </div>
20+
</content>
21+
</entry>

include/releases.inc

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,43 @@
22
$OLDRELEASES = array (
33
8 =>
44
array (
5+
'8.3.6' =>
6+
array (
7+
'announcement' =>
8+
array (
9+
'English' => '/releases/8_3_6.php',
10+
),
11+
'tags' =>
12+
array (
13+
0 => 'security',
14+
),
15+
'date' => '11 Apr 2024',
16+
'source' =>
17+
array (
18+
0 =>
19+
array (
20+
'filename' => 'php-8.3.6.tar.gz',
21+
'name' => 'PHP 8.3.6 (tar.gz)',
22+
'sha256' => '39695f5bd107892e36fd2ed6b3d3a78140fd4b05d556d6c6531a921633cacb5f',
23+
'date' => '11 Apr 2024',
24+
),
25+
1 =>
26+
array (
27+
'filename' => 'php-8.3.6.tar.bz2',
28+
'name' => 'PHP 8.3.6 (tar.bz2)',
29+
'sha256' => '6324b1ddd8eb3025b041034b88dc2bc0b4819b0022129eeaeba37e47803108bc',
30+
'date' => '11 Apr 2024',
31+
),
32+
2 =>
33+
array (
34+
'filename' => 'php-8.3.6.tar.xz',
35+
'name' => 'PHP 8.3.6 (tar.xz)',
36+
'sha256' => '53c8386b2123af97626d3438b3e4058e0c5914cb74b048a6676c57ac647f5eae',
37+
'date' => '11 Apr 2024',
38+
),
39+
),
40+
'museum' => false,
41+
),
542
'8.2.18' =>
643
array (
744
'announcement' =>

include/version.inc

Lines changed: 6 additions & 6 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.6',
24-
'date' => '11 Apr 2024',
25-
'tags' => ['security'], // Set to ['security'] for security releases.
23+
'version' => '8.3.7',
24+
'date' => '09 May 2024',
25+
'tags' => [], // Set to ['security'] for security releases.
2626
'sha256' => [
27-
'tar.gz' => '39695f5bd107892e36fd2ed6b3d3a78140fd4b05d556d6c6531a921633cacb5f',
28-
'tar.bz2' => '6324b1ddd8eb3025b041034b88dc2bc0b4819b0022129eeaeba37e47803108bc',
29-
'tar.xz' => '53c8386b2123af97626d3438b3e4058e0c5914cb74b048a6676c57ac647f5eae',
27+
'tar.gz' => '2e11d10b651459a8767401e66b5d70e3b048e446579fcdeb0b69bcba789af8c4',
28+
'tar.bz2' => '01c20cde1c5a5696651875ed22f507849679fba740f8c421616b7d43d7f797da',
29+
'tar.xz' => 'd53433c1ca6b2c8741afa7c524272e6806c1e895e5912a058494fea89988570a',
3030
]
3131
];
3232

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

0 commit comments

Comments
 (0)