-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[SecurityBundle] Rename firewalls.logout.csrf_token_generator
to firewalls.logout.csrf_token_manager
#48387
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Hey! I think @TimoBakx has recently worked with this code. Maybe they can help review this? Cheers! Carsonbot |
90e4d48
to
5f56da3
Compare
…irewalls.logout.csrf_token_manager`
5f56da3
to
0a0a98a
Compare
Thank you @MatTheCat. |
@@ -60,4 +60,5 @@ SecurityBundle | |||
Validator | |||
-------------- | |||
|
|||
* Implementing the `ConstraintViolationInterface` without implementing the `getConstraint()` method is deprecated | |||
* Implementing the `ConstraintViolationInterface` without implementing the `getConstraint()` method is deprecated | |||
* Deprecate the `security.firewalls.logout.csrf_token_generator` config option, use `security.firewalls.logout.csrf_token_manager` instead |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should not be in the Validator
section
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed in 377982f
…csrf_token_manager` (MatTheCat) This PR was squashed before being merged into the 6.3 branch. Discussion ---------- [Security] Rename logout’s `csrf_token_generator` to `csrf_token_manager` Follow-up of symfony/symfony#48387 Should I still mention the deprecated `csrf_token_generator` in the documentation? If yes, how? Commits ------- ced6562 [Security] Rename logout’s `csrf_token_generator` to `csrf_token_manager`
… to XSD (HeahDude) This PR was merged into the 6.3 branch. Discussion ---------- [SecurityBundle] Add `firewalls.logout.csrf_token_manager` to XSD | Q | A | ------------- | --- | Branch? | 6.3 | Bug fix? | yes | New feature? | no | Deprecations? | no | Tickets | ~ | License | MIT | Doc PR | ~ The XSD has been missed in #48387. Commits ------- 742e5c2 [SecurityBundle] Add `firewalls.logout.csrf_token_manager` to XSD
A long time ago, #6554 replaced
CsrfProviderInterface
byCsrfTokenGeneratorInterface
, and #9216 split the latter intoCsrfTokenManagerInterface
andTokenGeneratorInterface
. #9587 later introducedcsrf_token_generator
, which was already wrong at the time.Given that token generators exist, it feels weird to have to set
csrf_token_generator
tosecurity.csrf.token_manager
as mentioned in the documentation.As this confusion recently led to #48339, I propose to rename
firewalls.logout.csrf_token_generator
tofirewalls.logout.csrf_token_manager
.