Skip to content
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

Laravel 7.x Shift #57

Merged
merged 6 commits into from
Dec 19, 2020
Merged

Laravel 7.x Shift #57

merged 6 commits into from
Dec 19, 2020

Conversation

gallib
Copy link
Owner

@gallib gallib commented Mar 3, 2020

This pull request includes the changes for upgrading to Laravel 7.x. Feel free to commit any additional changes to the shift-23858 branch.

Before merging, you need to:

  • Checkout the shift-23858 branch
  • Review all pull request comments for additional changes
  • Update your dependencies for Laravel 7
  • Run composer update (if the scripts fail, add --no-scripts)
  • Thoroughly test your application (no tests?)

If you need help with your upgrade, check out the Human Shifts. You may also join the Shifty Coders Slack workspace to level-up your Laravel skills.

@gallib
Copy link
Owner Author

gallib commented Mar 3, 2020

ℹ️ Laravel 7 upgraded to Symfony 5 which passes instances of the Throwable interface instead of Exception instances to core components like the Exceptions\Handler.

Shift automated this change. However, if you receive a Throwable type mismatch error there may be additional references you need to convert.

@gallib
Copy link
Owner Author

gallib commented Mar 3, 2020

ℹ️ Laravel 7 moved the Authentication components into a separate laravel/ui package, which includes the make commands as well as the traits related to authentication.

Shift added this dependency for convenience. However, if you do not plan to use the Authentication components, you may remove this dependency as well as the Auth controllers from your application.

@gallib
Copy link
Owner Author

gallib commented Mar 3, 2020

ℹ️ Shift updated your session.php configuration file to have a fallback value of null for the secure option and a value of lax for the same_site option.

These are related to the underlying Symfony 5 updates. You may change them if you are familiar with these options.

@gallib
Copy link
Owner Author

gallib commented Mar 3, 2020

❌ The MAIL_DRIVER environment variable was renamed in Laravel 7 to MAIL_MAILER in order to support multiple mail configurations. Be sure to update any environment configuration to reflect the new variable name.

@gallib
Copy link
Owner Author

gallib commented Mar 3, 2020

ℹ️ Shift updated your dependencies for Laravel 7. While many of the popular packages are reviewed, you may have to update additional packages in order for your application to be compatible with Laravel 7.

Watch dealing with dependencies for tips on handling package incompatibilities.

@gallib
Copy link
Owner Author

gallib commented Mar 3, 2020

ℹ️ Laravel 7 removed some of the PHPUnit configuration in favor of the defaults. While this is not a required changed, it is a good opportunity to compare your phpunit.xml with the default Laravel 7 version to modernize your configuration.

@gallib
Copy link
Owner Author

gallib commented Mar 3, 2020

⚠️ Laravel 7 uses a new date format when serializing models. The previous format was 2019-12-02 20:01:00. Now, dates are serialized using an ISO-8601 compatible date format of 2019-12-02T20:01:00.283041Z.

This does not affect how dates are stored. Only how they are serialized when using the toArray or toJson Eloquent methods.

If you need to preserve the previous format, you may override the serializeDate method on your model. Review the Date Serialization section of the Upgrade Guide for more details.

@gallib
Copy link
Owner Author

gallib commented Mar 3, 2020

ℹ️ All of the underlying Symfony components used by Laravel have been upgraded to Symfony 5. If you are directly interacting with Symfony components, you should review the Symfony change log for additional changes.

@gallib
Copy link
Owner Author

gallib commented Mar 3, 2020

ℹ️ The deprecated --daemon flag on the queue:work command has been removed. In Laravel 7, the worker runs as a daemon by default. If you were using this flag, you may remove it.

@gallib
Copy link
Owner Author

gallib commented Mar 3, 2020

🎉 Congratulations, you're now running the latest version of Laravel.

The following Shifts can ensure your app is fully upgraded and following the practices recommended by Laravel and the community:

  • Laravel Linter analyzes your codebase for potential opportunities to do things "The Laravel Way".
  • Laravel Fixer automates many of the suggestions found by the Linter and other Shifts.
  • Upgrade Checker ensures your application is fully upgraded by detecting any outdated code.

In addition, stay upgraded forever as well as run these Shifts by subscribing to one of the new Shifty Plans.

@gallib gallib merged commit 471b936 into develop Dec 19, 2020
@gallib gallib deleted the shift-23858 branch December 19, 2020 21:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants