Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork9.7k
[FrameworkBundle] Deprecate not setting some options#51325
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
[FrameworkBundle] Deprecate not setting some options#51325
Uh oh!
There was an error while loading.Please reload this page.
Conversation
73c3fc6 tob5bba1aCompareUh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php OutdatedShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
src/Symfony/Bundle/FrameworkBundle/Resources/config/schema/symfony-1.0.xsdShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
b0f411e to7f9998eComparenicolas-grekas commentedAug 17, 2023
I addressed theremaining issues. |
nicolas-grekas commentedAug 17, 2023
Thank you@Jean-Beru. |
GromNaN commentedAug 17, 2023
I think you can revert most of the changes in the tests in the 7.0 branch now that it has been merged. |
nicolas-grekas commentedAug 17, 2023
Help wanted for the cleanup on 7.0! |
…daubois)This PR was merged into the 7.0 branch.Discussion----------[FrameworkBundle] Remove config deprecations| Q | A| ------------- | ---| Branch? | 7.0| Bug fix? | no| New feature? | no <!-- please update src/**/CHANGELOG.md files -->| Deprecations? | no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files -->| Tickets | -| License | MIT| Doc PR | TodoFollow-up of:-#51325-#51357Commits-------4fe6f5b [FrameworkBundle] Remove config deprecations
Uh oh!
There was an error while loading.Please reload this page.
This PR deprecates not setting 5 options in framework configuration to match the v7.0 recipe:
handle_all_throwableswhich isfalseby default and is set totrueby recipephp_errors.logwhich use$debugvalue by default and is set totrueby recipesession.cookie_secure(if session is enabled) which isnullby default and is set toautoby recipesession.cookie_samesite(if session is enabled) which isnullby default and is set tolaxby recipesession.handler_id(if session is enabled) which issession.handler.native_fileby default and is set tonullby recipe (could besession.handler.native_fileifframework.session.save_pathis set)See#51097.