Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork9.7k
[SecurityBundle] Dont throw if "security.http_utils" is not found#27701
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
…t found (nicolas-grekas)This PR was merged into the 3.4 branch.Discussion----------[SecurityBundle] Dont throw if "security.http_utils" is not found| Q | A| ------------- | ---| Branch? | 3.4| Bug fix? | yes| New feature? | no| BC breaks? | no| Deprecations? | no| Tests pass? | yes| Fixed tickets |#27445| License | MIT| Doc PR | -The comment + test were misleading, the actual important thing is wiring `AddSessionDomainConstraintPass` before removing passes, which is already the case already.Commits-------db88330 [SecurityBundle] Dont throw if "security.http_utils" is not found
alexislefebvre commentedJun 29, 2018 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
It looks like it revertsc003b7a, but this PR targets Symfony 3.4, whilec003b7a targeted 2.7. Should it be backported to Symfony 2.7 and/or 2.8? I had the same bug when launching tests that worked 5 months ago :https://travis-ci.org/alexislefebvre/AsyncTweetsBundle/builds/398227684 is broken but the same commit tested 5 months ago didn't crash:https://travis-ci.org/alexislefebvre/AsyncTweetsBundle/builds/339996354 |
…t found (nicolas-grekas)This PR was merged into the 3.4 branch.Discussion----------[SecurityBundle] Dont throw if "security.http_utils" is not found| Q | A| ------------- | ---| Branch? | 3.4| Bug fix? | yes| New feature? | no| BC breaks? | no| Deprecations? | no| Tests pass? | yes| Fixed tickets |#27445| License | MIT| Doc PR | -The comment + test were misleading, the actual important thing is wiring `AddSessionDomainConstraintPass` before removing passes, which is already the case already.Commits-------db88330 [SecurityBundle] Dont throw if "security.http_utils" is not found
nicolas-grekas commentedJun 29, 2018
@alexislefebvre you're right! 2.7 is out of maintenance, so here is the cherry-pick on 2.8:6e5c15d |
alexislefebvre commentedJun 29, 2018
You were fast, thanks@nicolas-grekas :) |
* 2.8: [HttpFoundation] update phpdoc of FlashBagInterface::add() bug#27701 [SecurityBundle] Dont throw if "security.http_utils" is not found (nicolas-grekas) [Validator] Fix the namespace of RegexTest
* 3.4: [HttpFoundation] update phpdoc of FlashBagInterface::add() [ProxyManagerBridge] Fix support of private services (bis) bug#27701 [SecurityBundle] Dont throw if "security.http_utils" is not found (nicolas-grekas) [Form] relax fixtures for forward compat [Validator] Fix the namespace of RegexTest [Lock] fix locale dependent test case
* 4.0: [HttpFoundation] update phpdoc of FlashBagInterface::add() [ProxyManagerBridge] Fix support of private services (bis) bug#27701 [SecurityBundle] Dont throw if "security.http_utils" is not found (nicolas-grekas) [Form] relax fixtures for forward compat [Validator] Fix the namespace of RegexTest [Lock] fix locale dependent test case
* 4.1: [HttpFoundation] update phpdoc of FlashBagInterface::add() [ProxyManagerBridge] Fix support of private services (bis) bugsymfony#27701 [SecurityBundle] Dont throw if "security.http_utils" is not found (nicolas-grekas) [Form] relax fixtures for forward compat [Validator] Fix the namespace of RegexTest [Lock] fix locale dependent test case
alexislefebvre commentedJul 2, 2018
Is a new release of 2.8 scheduled? The last version doesn't contain this change. |
alexislefebvre commentedJul 9, 2018 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
The comment + test were misleading, the actual important thing is wiring
AddSessionDomainConstraintPassbefore removing passes, which is already the case already.