From 0fa26a1db82758f554f376de1fdc48c2e4d17b33 Mon Sep 17 00:00:00 2001 From: Volker Dusch Date: Thu, 18 Dec 2025 15:43:22 +0100 Subject: [PATCH] Announce PHP 8.5.1 --- ChangeLog-8.php | 95 ++++++++++++++++++++++++++++++++ archive/archive.xml | 1 + archive/entries/2025-12-18-1.xml | 21 +++++++ include/release-qa.php | 2 +- include/releases.inc | 37 +++++++++++++ include/version.inc | 12 ++-- releases/8_5_1.php | 16 ++++++ 7 files changed, 177 insertions(+), 7 deletions(-) create mode 100644 archive/entries/2025-12-18-1.xml create mode 100644 releases/8_5_1.php diff --git a/ChangeLog-8.php b/ChangeLog-8.php index 7c089a69f..241fc72b4 100644 --- a/ChangeLog-8.php +++ b/ChangeLog-8.php @@ -9,6 +9,101 @@ changelog_header(8, $MINOR_VERSIONS); +
+

Version 8.5.1

+ + +
+ + +

Version 8.5.0

diff --git a/archive/archive.xml b/archive/archive.xml index 617423e22..6ff52cc24 100644 --- a/archive/archive.xml +++ b/archive/archive.xml @@ -9,6 +9,7 @@ http://php.net/contact php-webmaster@lists.php.net + diff --git a/archive/entries/2025-12-18-1.xml b/archive/entries/2025-12-18-1.xml new file mode 100644 index 000000000..2d8d77264 --- /dev/null +++ b/archive/entries/2025-12-18-1.xml @@ -0,0 +1,21 @@ + + + PHP 8.5.1 Released! + https://www.php.net/archive/2025.php#2025-12-18-1 + 2025-12-18T14:37:54+00:00 + 2025-12-18T14:37:54+00:00 + + + + + +

The PHP development team announces the immediate availability of PHP 8.5.1. This is a security release.

+ +

All PHP 8.5 users are encouraged to upgrade to this version.

+ +

For source downloads of PHP 8.5.1 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +

+
+
diff --git a/include/release-qa.php b/include/release-qa.php index 16bf2d66b..193047b68 100644 --- a/include/release-qa.php +++ b/include/release-qa.php @@ -101,7 +101,7 @@ $QA_RELEASES = [ 'active' => true, 'release' => [ 'type' => 'RC', - 'number' => 2, + 'number' => 0, 'sha256_bz2' => '5285c132e3635dddfa920d57edb9acf8fd84432f53fd2d5e3585637d14a09a29', 'sha256_gz' => '394ae2e58140107199fe25c44cb70382fb4b4a4106a3e127ce0220b1cffc9089', 'sha256_xz' => '18b766c67022ef5e84b15e4adc7e9041811668977e16f91fe02bf7c7e3231299', diff --git a/include/releases.inc b/include/releases.inc index 28c88737c..39e730cf6 100644 --- a/include/releases.inc +++ b/include/releases.inc @@ -2,6 +2,43 @@ $OLDRELEASES = array ( 8 => array ( + '8.5.0' => + array ( + 'announcement' => + array ( + 'English' => '/releases/8_5_0.php', + ), + 'tags' => + array ( + 0 => '', + ), + 'date' => '20 Nov 2025', + 'source' => + array ( + 0 => + array ( + 'filename' => 'php-8.5.0.tar.gz', + 'name' => 'PHP 8.5.0 (tar.gz)', + 'sha256' => 'dc3651369c9b63320dd4ea8e272c6a23f18e50f67c13d10ee368c86961dbd10f', + 'date' => '20 Nov 2025', + ), + 1 => + array ( + 'filename' => 'php-8.5.0.tar.bz2', + 'name' => 'PHP 8.5.0 (tar.bz2)', + 'sha256' => 'cd16cb045b34a6cec6a83008e1b335f365c7a832fcc483df82308664c6d021f9', + 'date' => '20 Nov 2025', + ), + 2 => + array ( + 'filename' => 'php-8.5.0.tar.xz', + 'name' => 'PHP 8.5.0 (tar.xz)', + 'sha256' => '39cb6e4acd679b574d3d3276f148213e935fc25f90403eb84fb1b836a806ef1e', + 'date' => '20 Nov 2025', + ), + ), + 'museum' => false, + ), '8.4.14' => array ( 'announcement' => diff --git a/include/version.inc b/include/version.inc index 08ddd87f2..ec358f16a 100644 --- a/include/version.inc +++ b/include/version.inc @@ -20,15 +20,15 @@ $RELEASES = (function () { /* PHP 8.5 Release */ $data['8.5'] = [ - 'version' => '8.5.0', - 'date' => '20 Nov 2025', - 'tags' => [''], // Set to ['security'] for security releases. + 'version' => '8.5.1', + 'date' => '18 Dec 2025', + 'tags' => ['security'], // Set to ['security'] for security releases. 'sha256' => [ // WARNING: Order of SHA256 entries here is DIFFERENT from the // order in the manifest - 'tar.gz' => 'dc3651369c9b63320dd4ea8e272c6a23f18e50f67c13d10ee368c86961dbd10f', - 'tar.bz2' => 'cd16cb045b34a6cec6a83008e1b335f365c7a832fcc483df82308664c6d021f9', - 'tar.xz' => '39cb6e4acd679b574d3d3276f148213e935fc25f90403eb84fb1b836a806ef1e', + 'tar.gz' => '915492958081409a5e3ef99df969bcfa5b33bdf9517bd077991747e17fa2c1b7', + 'tar.bz2' => '55f428c426e7241752ea9afff160bb64c32a9321cbd6d17d1c145b8df8823737', + 'tar.xz' => '3f5bf99ce81201f526d25e288eddb2cfa111d068950d1e9a869530054ff98815', ] ]; diff --git a/releases/8_5_1.php b/releases/8_5_1.php new file mode 100644 index 000000000..de528c246 --- /dev/null +++ b/releases/8_5_1.php @@ -0,0 +1,16 @@ + +

PHP 8.5.1 Release Announcement

+ +

The PHP development team announces the immediate availability of PHP 8.5.1. This is a security release.

+ +

All PHP 8.5 users are encouraged to upgrade to this version.

+ +

For source downloads of PHP 8.5.1 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +

+