We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ede3d1 commit 739e44aCopy full SHA for 739e44a
UPGRADE-8.0.md
@@ -336,18 +336,17 @@ SecurityBundle
336
* Remove the deprecated `algorithm` and `key` options from the OIDC token handler configuration, use `algorithms` and `keyset` instead
337
338
```diff
339
- # config/packages/security.yaml
340
- security:
341
- firewalls:
342
- main:
343
- access_token:
344
- token_handler:
345
- oidc:
+ # config/packages/security.yaml
+ security:
+ firewalls:
+ main:
+ access_token:
+ token_handler:
+ oidc:
346
- algorithm: 'RS256'
347
- key: 'https://example.com/.well-known/jwks.json'
348
+ algorithms: ['RS256']
349
+ keyset: 'https://example.com/.well-known/jwks.json'
350
- ```
351
352
Serializer
353
----------
0 commit comments