-
-
Notifications
You must be signed in to change notification settings - Fork 11
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
Upgrade Laravel #354
Merged
Merged
Upgrade Laravel #354
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Updates laravel to v7.30 and all other Composer packages to their latest version, including the new laravel/ui package for the `Auth` backend.
Codecov Report
@@ Coverage Diff @@
## develop #354 +/- ##
=============================================
- Coverage 96.56% 96.46% -0.11%
- Complexity 365 366 +1
=============================================
Files 67 66 -1
Lines 962 962
=============================================
- Hits 929 928 -1
- Misses 33 34 +1
Continue to review full report at Codecov.
|
* Bumps composer dependencies * Renames database/seeds to database/seeders * Rewrites `UserFactory` inline with new class-based approach(!) * Updates `User` model and `RequiresAuth` trait for new factory
These directories get moved or deleted when the test passes so, when they fail and get left behind, we don't want the next run to break purely as a result of the last one failing. By checking `is_dir` first, we can continue silently and only create when it doesn't exist.
Renames the maintenance mode middleware in line with the default files and updates the public index.php to use the cached file if it exists. Also sorts the .gitignore alphabetically where maintenance.php is added.
Drops the `$namespace` property so we can use fully qualified classes in our routes. As part of the updates to `RouteServiceProvider`, the rate limiting code has also moved here from `Http\Kernel::middlewareGroups`.
* Updates default .env template * Drops redis facade from config/app.php * Sets same-site cookies to be 'lax' and updates CORS paths * Adds 'ably' as a supported broadcaster (whatever ably is...) * Adds an `unverified` factory state, although it may not stay * Updates `RedirectIfAuthenticated` to support multiple guards * Adds `uuid` field to `failed_jobs` table for batching support * Prevents `current_password` from being flashed in exception handler * Removes unused `report()` and `render()` exception handler methods * Removes unused `bindings` alias from `Http\Kernel::$routeMiddleware` * Removes unused `filesystems.cloud` config option * Enables overriding of log level with `LOG_LEVEL` environment variable * Adds `auth.password` and `validation.multiple_of` to lang files
dshoreman
force-pushed
the
laravel-upgrade
branch
from
February 27, 2021 13:22
e72a678
to
3cc4031
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Updates laravel and all other Composer packages to their latest
version, including the new laravel/ui package for the
Auth
backend.Default files have also been brought inline with laravel/laravel.
Commits split out from PR #353 when it became apparent that 8.1 support would be easier said than done.