From 4ce48e9a39073444d526960dd954db28e9a1164a Mon Sep 17 00:00:00 2001 From: Gabriel Caruso Date: Tue, 3 Jan 2023 11:36:20 -0300 Subject: [PATCH 1/3] [ci skip] Prepare for PHP 8.0.27 GA --- NEWS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NEWS b/NEWS index c6b0036b600..3be34b3bfd7 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,6 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? ??? 2022, PHP 8.0.27 +05 Jan 2023, PHP 8.0.27 - PDO/SQLite: . Fixed bug #81740 (PDO::quote() may return unquoted string). (CVE-2022-31631) From c2737b40d72c323ec51a6b026b720e1b196be85b Mon Sep 17 00:00:00 2001 From: Gabriel Caruso Date: Tue, 3 Jan 2023 11:39:21 -0300 Subject: [PATCH 2/3] [ci skip] Next release will be 8.0.28 --- NEWS | 3 +++ 1 file changed, 3 insertions(+) diff --git a/NEWS b/NEWS index 3be34b3bfd7..907a06b90ec 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,8 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +?? ??? ????, PHP 8.0.28 + + 05 Jan 2023, PHP 8.0.27 - PDO/SQLite: From 255e08ac56539f07cdbfa2f32922f20f7d21de5c Mon Sep 17 00:00:00 2001 From: Gabriel Caruso Date: Tue, 3 Jan 2023 13:00:44 -0300 Subject: [PATCH 3/3] Revert "Make build work with newer OpenSSL" This reverts commit 5f90134bb69a345c7edb5013e6461e84caa32dbc. --- ext/openssl/openssl.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/ext/openssl/openssl.c b/ext/openssl/openssl.c index 9827c758716..45a7e794400 100644 --- a/ext/openssl/openssl.c +++ b/ext/openssl/openssl.c @@ -1325,9 +1325,7 @@ PHP_MINIT_FUNCTION(openssl) REGISTER_LONG_CONSTANT("OPENSSL_CMS_NOSIGS", CMS_NOSIGS, CONST_CS|CONST_PERSISTENT); REGISTER_LONG_CONSTANT("OPENSSL_PKCS1_PADDING", RSA_PKCS1_PADDING, CONST_CS|CONST_PERSISTENT); -#ifdef RSA_SSLV23_PADDING REGISTER_LONG_CONSTANT("OPENSSL_SSLV23_PADDING", RSA_SSLV23_PADDING, CONST_CS|CONST_PERSISTENT); -#endif REGISTER_LONG_CONSTANT("OPENSSL_NO_PADDING", RSA_NO_PADDING, CONST_CS|CONST_PERSISTENT); REGISTER_LONG_CONSTANT("OPENSSL_PKCS1_OAEP_PADDING", RSA_PKCS1_OAEP_PADDING, CONST_CS|CONST_PERSISTENT);