From 0af4f27981025dd27a35bac946862ef83fe8ab52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1t=C3=A9=20Kocsis?= Date: Sat, 25 Oct 2025 14:38:52 +0200 Subject: [PATCH] Fix GH-20274 SoapClient::__doRequest undocumented backwards incompatible in PHP 8.5 (#20278) --- NEWS | 2 +- UPGRADING | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index dd46f907d09..23933494c82 100644 --- a/NEWS +++ b/NEWS @@ -354,7 +354,7 @@ PHP NEWS . Added support for partitioned cookies. (nielsdos) - SOAP: - . Added support for configuring the URI parser for SoapClient::_doRequest() + . Added support for configuring the URI parser for SoapClient::__doRequest() as described in https://wiki.php.net/rfc/url_parsing_api#plugability. (kocsismate) diff --git a/UPGRADING b/UPGRADING index a196757eb9a..b0f3c9155b3 100644 --- a/UPGRADING +++ b/UPGRADING @@ -170,6 +170,10 @@ PHP 8.5 UPGRADE NOTES precision previously incorrectly reset the precision instead of treating it as a precision of 0. See GH-18897. +- SOAP: + . SoapClient::__doRequest() expects a new, optional $uriParserClass parameter + as described in https://wiki.php.net/rfc/url_parsing_api#plugability. + ======================================== 2. New Features ========================================