From 76c3fcbe73fde31a033b033f1016ba3e39593728 Mon Sep 17 00:00:00 2001 From: Volker Dusch Date: Tue, 9 Dec 2025 15:10:15 +0100 Subject: [PATCH] Update versions and NEWS for PHP 8.5.1RC2 --- NEWS | 19 ++++++++++++++----- Zend/zend.h | 2 +- configure.ac | 2 +- main/php_version.h | 4 ++-- 4 files changed, 18 insertions(+), 9 deletions(-) diff --git a/NEWS b/NEWS index d1ffa9e35f5..80901fd7e2d 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,19 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? ??? ????, PHP 8.5.1 +11 Dec 2025, PHP 8.5.1RC2 + +- FTP: + . Fix GH-20603 issue on windows 32 bits. (devnexen) + +- PDO: + . Fixed bug GH-20553 (PDO::FETCH_CLASSTYPE ignores $constructorArgs in + PHP 8.5.0). (Girgias) + +- URI: + . Update to uriparser-0.9.9-79-gf47a7f0 (timwolla) + + +04 Dec 2025, PHP 8.5.1RC1 - Core: . Sync all boost.context files with release 1.86.0. (mvorisek) @@ -48,10 +61,6 @@ PHP NEWS . Fixed bug GH-20329 (opcache.file_cache broken with full interned string buffer). (Arnaud) -- PDO: - . Fixed bug GH-20553 (PDO::FETCH_CLASSTYPE ignores $constructorArgs in - PHP 8.5.0). (Girgias) - - Phar: . Fixed bug GH-20442 (Phar does not respect case-insensitiveness of __halt_compiler() when reading stub). (ndossche, TimWolla) diff --git a/Zend/zend.h b/Zend/zend.h index e2e500022a8..0b64522dfee 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -20,7 +20,7 @@ #ifndef ZEND_H #define ZEND_H -#define ZEND_VERSION "4.5.1-dev" +#define ZEND_VERSION "4.5.1RC2" #define ZEND_ENGINE_3 diff --git a/configure.ac b/configure.ac index f81d8cf6090..2941143a79d 100644 --- a/configure.ac +++ b/configure.ac @@ -17,7 +17,7 @@ dnl Basic autoconf initialization, generation of config.nice. dnl ---------------------------------------------------------------------------- AC_PREREQ([2.68]) -AC_INIT([PHP],[8.5.1-dev],[https://github.com/php/php-src/issues],[php],[https://www.php.net]) +AC_INIT([PHP],[8.5.1RC2],[https://github.com/php/php-src/issues],[php],[https://www.php.net]) AC_CONFIG_SRCDIR([main/php_version.h]) AC_CONFIG_AUX_DIR([build]) AC_PRESERVE_HELP_ORDER diff --git a/main/php_version.h b/main/php_version.h index 87cf375f2e0..dd31e7a38a8 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -3,6 +3,6 @@ #define PHP_MAJOR_VERSION 8 #define PHP_MINOR_VERSION 5 #define PHP_RELEASE_VERSION 1 -#define PHP_EXTRA_VERSION "-dev" -#define PHP_VERSION "8.5.1-dev" +#define PHP_EXTRA_VERSION "RC2" +#define PHP_VERSION "8.5.1RC2" #define PHP_VERSION_ID 80501