From b955adcb435eaad8e060d46d662e73e95e5e0712 Mon Sep 17 00:00:00 2001 From: Kevin Pfeifer Date: Wed, 4 Jun 2025 18:59:30 +0200 Subject: [PATCH 1/2] add Client\Http\Response method changes --- en/appendices/6-0-migration-guide.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/en/appendices/6-0-migration-guide.rst b/en/appendices/6-0-migration-guide.rst index fb30fff2e9..fb32798f74 100644 --- a/en/appendices/6-0-migration-guide.rst +++ b/en/appendices/6-0-migration-guide.rst @@ -35,6 +35,8 @@ Http - Using `$request->getParam('?')` to get the query params is no longer possible. Use `$request->getQueryParams()` instead. +- The methods ``_getCookies()``, ``_getJson()``, ``_getXml()``, ``_getHeaders()`` + and ``_getBody()`` have been removed. Use/Overwrite their non-prefixed public alternative instead. ORM --- From 0031ce92c83c3e2e9352dd65bc04d3858a6b1112 Mon Sep 17 00:00:00 2001 From: Kevin Pfeifer Date: Wed, 4 Jun 2025 19:00:21 +0200 Subject: [PATCH 2/2] fix RST syntax problem --- en/appendices/6-0-migration-guide.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en/appendices/6-0-migration-guide.rst b/en/appendices/6-0-migration-guide.rst index fb32798f74..a3261f21a5 100644 --- a/en/appendices/6-0-migration-guide.rst +++ b/en/appendices/6-0-migration-guide.rst @@ -33,8 +33,8 @@ Datasource Http ---- -- Using `$request->getParam('?')` to get the query params is no longer possible. - Use `$request->getQueryParams()` instead. +- Using ``$request->getParam('?')`` to get the query params is no longer possible. + Use ``$request->getQueryParams()`` instead. - The methods ``_getCookies()``, ``_getJson()``, ``_getXml()``, ``_getHeaders()`` and ``_getBody()`` have been removed. Use/Overwrite their non-prefixed public alternative instead.