6.1
Name already in use
Commits on Feb 1, 2023
Commits on Jan 30, 2023
-
* 6.0: [HttpFoundation] Fix bad return type in IpUtils::checkIp4() [DependencyInjection] Fix order of arguments when mixing positional and named ones [HttpClient] Fix collecting data non-late for the profiler [Security/Http] Fix compat of persistent remember-me with legacy tokens Bump Symfony version to 6.0.20 Update VERSION for 6.0.19 Update CHANGELOG for 6.0.19 Bump Symfony version to 5.4.20 Update VERSION for 5.4.19 Update CONTRIBUTORS for 5.4.19 Update CHANGELOG for 5.4.19 [Security/Http] Remove CSRF tokens from storage on successful login [HttpKernel] Remove private headers before storing responses with HttpCache
-
* 5.4: [HttpFoundation] Fix bad return type in IpUtils::checkIp4() [DependencyInjection] Fix order of arguments when mixing positional and named ones [HttpClient] Fix collecting data non-late for the profiler [Security/Http] Fix compat of persistent remember-me with legacy tokens Bump Symfony version to 5.4.20 Update VERSION for 5.4.19 Update CONTRIBUTORS for 5.4.19 Update CHANGELOG for 5.4.19 [Security/Http] Remove CSRF tokens from storage on successful login [HttpKernel] Remove private headers before storing responses with HttpCache
-
* 4.4: [Security/Http] Remove CSRF tokens from storage on successful login [HttpKernel] Remove private headers before storing responses with HttpCache
Commits on Jan 29, 2023
-
bug #49141 [HttpFoundation] Fix bad return type in IpUtils::checkIp4(…
…) (tristankretzer) This PR was squashed before being merged into the 5.4 branch. Discussion ---------- [HttpFoundation] Fix bad return type in IpUtils::checkIp4() | Q | A | ------------- | --- | Branch? | 5.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Tickets | see below | License | MIT | Doc PR | - `filter_var` returns the value if it passes the applied filters. This leads to `IpUtils::checkIp4()` returning the address part of the CIDR notation (instead of `true` which is expected) if it is a valid IPv4 address with subnet mask 0. This change fixes this behaviour. Commits ------- f694aa8 [HttpFoundation] Fix bad return type in IpUtils::checkIp4()
-
Commits on Jan 27, 2023
-
bug #49126 [DependencyInjection] Fix order of arguments when mixing p…
…ositional and named ones (nicolas-grekas) This PR was merged into the 5.4 branch. Discussion ---------- [DependencyInjection] Fix order of arguments when mixing positional and named ones | Q | A | ------------- | --- | Branch? | 5.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Tickets | Fix #49118 | License | MIT | Doc PR | - Commits ------- 45d614d [DependencyInjection] Fix order of arguments when mixing positional and named ones
Commits on Jan 25, 2023
-
bug #49104 [HttpClient] Fix collecting data non-late for the profiler…
… (nicolas-grekas) This PR was merged into the 5.4 branch. Discussion ---------- [HttpClient] Fix collecting data non-late for the profiler | Q | A | ------------- | --- | Branch? | 5.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Tickets | Fix #49096 | License | MIT | Doc PR | - `@silverbackdan` `@pforesi` could you please confirm that this fixes both your use cases? Commits ------- 3cb1d70 [HttpClient] Fix collecting data non-late for the profiler
-
-
bug #49103 [Security/Http] Fix compat of persistent remember-me with …
…legacy tokens (nicolas-grekas) This PR was merged into the 5.4 branch. Discussion ---------- [Security/Http] Fix compat of persistent remember-me with legacy tokens | Q | A | ------------- | --- | Branch? | 5.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Tickets | Fix #49100 | License | MIT | Doc PR | - In #49078, we changed the format of remember-me tokens, effectively invalidating them all. While the invalidation is intentional for signature-based remember-me handlers, persistent remember-me handlers could accept both legacy and updated tokens. This PR fixes compat with legacy tokens for persistent remember-me handlers. Commits ------- 538d660 [Security/Http] Fix compat of persistent remember-me with legacy tokens
Commits on Jan 24, 2023
-
-
-
-
-
-
-
-
-
-
-
* 6.0: [Security/Http] Check tokens before loading users from providers
-
* 5.4: [Security/Http] Check tokens before loading users from providers
-
bug #49078 [Security/Http] Check tokens before loading users from pro…
…viders (nicolas-grekas) This PR was merged into the 5.4 branch. Discussion ---------- [Security/Http] Check tokens before loading users from providers | Q | A | ------------- | --- | Branch? | 5.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Tickets | - | License | MIT | Doc PR | - Remember me cookies and login link handler tokens contain an expiry but we check this expiry only after we've loaded a user from a provider. This can create unneeded load on the provider. Note that the now legacy security subsystem was free from this issue so this PR is fixing a regression. For persistent tokens, I've removed any logic to sign them in `PersistentRememberMeHandler` because we never validate the signature, so it's just useless. Commits ------- 889d739 [Security/Http] Check tokens before loading users from providers
-
security #cve-2022-24895 [Security/Http] Remove CSRF tokens from stor…
…age on successful login (nicolas-grekas) This PR was merged into the 4.4 branch.
-
security #cve-2022-24894 [HttpKernel] Remove private headers before s…
…toring responses with HttpCache (nicolas-grekas) This PR was merged into the 4.4 branch.
Commits on Jan 23, 2023
-
* 6.0: [DependencyInjection] Fix named arguments when using ContainerBuilder before compilation