From f53c8a48ca230eb3be1dbf006680dea20b414079 Mon Sep 17 00:00:00 2001 From: Daniel Scherzer Date: Tue, 30 Jun 2026 21:10:40 -0700 Subject: [PATCH 1/3] Update NEWS after cherry-pick (cherry picked from commit fb5e86bd2a560c78c57011eac93d892445578648) --- NEWS | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index 91f69440f6fd..020afbcc7197 100644 --- a/NEWS +++ b/NEWS @@ -29,9 +29,6 @@ PHP NEWS . Fixed IntlChar methods leaving stale global error state after successful calls. (Xuyang Zhang) -- Lexbor: - . Merge patch c3a6847. (ilutov, timwolla) - - PDO_ODBC: . Fixed bug GH-20726 (Crash with ODBC connection pooling when the DSN carries no credentials). (iliaal) @@ -98,6 +95,9 @@ PHP NEWS . Fixed IntlTimeZone::getDisplayName() to synchronize object error state for invalid display types. (Weilin Du) +- Lexbor: + . Merge patch c3a6847. (ilutov, timwolla) + - Opcache: . Fixed bug GH-22265 (Another tailcall vm_interrupt bug). (Levi Morrison) . Fixed bug GH-20469 (Unsafe inheritance cache replay with reentrant From a1287f0ef01042be841bec1f4cc17969b87ebb20 Mon Sep 17 00:00:00 2001 From: Ayesh Karunaratne Date: Wed, 1 Jul 2026 15:01:55 +0700 Subject: [PATCH 2/3] NEWS: fix markup --- NEWS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 650007b5a090..6ba018dab89d 100644 --- a/NEWS +++ b/NEWS @@ -165,7 +165,7 @@ PHP NEWS . pcntl_exec() now throws a ValueError if the $args array is not a list array. (Weilin Du) -- PDO_DBLIB; +- PDO_DBLIB: . Added dblib_handle_check_liveness handler. (freddy77) - PDO_PGSQL: From 9aaf634fde8b463dd0f2630f5c3b290a5e8c1837 Mon Sep 17 00:00:00 2001 From: Sergey Panteleev Date: Wed, 1 Jul 2026 11:11:52 +0300 Subject: [PATCH 3/3] PHP-8.2 is now for PHP 8.2.33-dev --- NEWS | 5 ++++- Zend/zend.h | 2 +- configure.ac | 2 +- main/php_version.h | 6 +++--- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/NEWS b/NEWS index b14ecd79eacb..787589fc6dfc 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,9 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? ??? ????, PHP 8.2.32 +?? ??? ????, PHP 8.2.33 + + +02 Jul 2026, PHP 8.2.32 - OpenSSL: . Fixed bug GH-22187 (Memory corruption (zend_mm_heap corrupted) in diff --git a/Zend/zend.h b/Zend/zend.h index b500c17a599f..029a6ecf33bd 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -20,7 +20,7 @@ #ifndef ZEND_H #define ZEND_H -#define ZEND_VERSION "4.2.32-dev" +#define ZEND_VERSION "4.2.33-dev" #define ZEND_ENGINE_3 diff --git a/configure.ac b/configure.ac index 70b0d6f604be..95e2f680dfab 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.2.32-dev],[https://github.com/php/php-src/issues],[php],[https://www.php.net]) +AC_INIT([PHP],[8.2.33-dev],[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 e431a4d08189..f56fd7802d2b 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -2,7 +2,7 @@ /* edit configure.ac to change version number */ #define PHP_MAJOR_VERSION 8 #define PHP_MINOR_VERSION 2 -#define PHP_RELEASE_VERSION 32 +#define PHP_RELEASE_VERSION 33 #define PHP_EXTRA_VERSION "-dev" -#define PHP_VERSION "8.2.32-dev" -#define PHP_VERSION_ID 80232 +#define PHP_VERSION "8.2.33-dev" +#define PHP_VERSION_ID 80233