Skip to content

Commit fa06c8b

Browse files
Merge branch '7.4' into 8.0
* 7.4: [Security] Set OIDC JWKS cache TTL from provider headers [DependencyInjection] Call default index method when index is not provided by tag [Console] Remove a redundant local variable in the console Application class. [Cache] Recognize commit events as writes in `CacheDataCollector` [Routing] Align routing.schema.json with YamlFileLoader behavior Bump Symfony version to 7.4.0 Update VERSION for 7.4.0-RC1 Update CHANGELOG for 7.4.0-RC1
2 parents 08a1295 + 48a64e7 commit fa06c8b

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

DependencyInjection/Security/AccessToken/OidcTokenHandlerFactory.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ public function create(ContainerBuilder $container, string $id, array|string $co
3131
->replaceArgument(2, $config['audience'])
3232
->replaceArgument(3, $config['issuers'])
3333
->replaceArgument(4, $config['claim'])
34+
->addTag('container.reversible')
3435
);
3536

3637
if (!ContainerBuilder::willBeAvailable('web-token/jwt-library', Algorithm::class, ['symfony/security-bundle'])) {

Resources/config/security_authenticator_access_token.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242
use Symfony\Component\Security\Http\AccessToken\Oidc\OidcUserInfoTokenHandler;
4343
use Symfony\Component\Security\Http\AccessToken\QueryAccessTokenExtractor;
4444
use Symfony\Component\Security\Http\Authenticator\AccessTokenAuthenticator;
45-
use Symfony\Component\Security\Http\Command\OidcTokenGenerateCommand;
4645
use Symfony\Contracts\HttpClient\HttpClientInterface;
4746

4847
return static function (ContainerConfigurator $container) {

0 commit comments

Comments
 (0)