-
Notifications
You must be signed in to change notification settings - Fork 5
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
Release 8.13.0 - Laravel 11 upgrade #746
Conversation
Accessing Faker properties was deprecated in Faker 1.14.
…ests/Bootstrap.php which was trying to load the CreatesApplication trait which isn't available as well in laravel v11 corrects laravel shift commit 9199c4a
… the framework now
Laravel 11.x Shift
In reference to the dependency updates where '(all default configuration files have been removed) the defaults are now built into the framework codebase and only changes need to be added to the application code,' does this effect how we assign config items like controllers and global site promotions? Would we no longer use the config.base file to handle those assignments and handle those adjustments in the template controller instead? |
@AmbyrElan It does not affect our code; it only affects framework-level configurations. The base.php file has not been modified in this upgrade: |
Thanks for clarifying! |
Dependency updates
Updated codebase to Laravel 11.
We used Laravel Shift to update the code automatically and it supplied us with changes it could not do on its own. This process saved at least 10 hours of developer time.
The result is a slimmer codebase (all default configuration files have been removed) the defaults are now built into the framework codebase and only changes need to be added to the application code.
Transition
With this change, it means more items are defined directly in the .env file. To upgrade sites, we will be rolling out new .env updates before upgrading the site to ensure our unique configuration values are set on deployment.
Features
There are no user-facing feature updates in this release.