You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 4.4:
[VarDumper] fix typo
Fix support for PHP8 union types
[FrameworkBundle] preserve dots in query-string when redirecting
[3.4] Fix support for PHP8 union types
[PhpUnitBridge] Streamline ansi/no-ansi of composer according to phpunit --colors option
[3.4] Small update in our internal terminology
[Cache] fix compat with DBAL v3
[HttpClient] Convert CurlHttpClient::handlePush() to instance method
[VarDumper] Fix CliDumper coloration
[DI] tighten detection of local dirs to prevent false positives
[FrameworkBundle] preserve dots in query-string when redirecting
Fix precendence in 4.4
bumped Symfony version to 3.4.43
updated VERSION for 3.4.42
update CONTRIBUTORS for 3.4.42
updated CHANGELOG for 3.4.42
@@ -117,8 +127,7 @@ public function urlRedirectAction(Request $request, string $path, bool $permanen
117
127
$scheme = $request->getScheme();
118
128
}
119
129
120
-
$qs = $request->getQueryString();
121
-
if ($qs) {
130
+
if ($qs = $request->server->get('QUERY_STRING') ?: $request->getQueryString()) {
122
131
if (false === strpos($path, '?')) {
123
132
$qs = '?'.$qs;
124
133
} else {
@@ -176,4 +185,49 @@ public function __invoke(Request $request): Response
176
185
177
186
thrownew \RuntimeException(sprintf('The parameter "path" or "route" is required to configure the redirect action in "%s" routing configuration.', $request->attributes->get('_route')));
0 commit comments