-
-
Notifications
You must be signed in to change notification settings - Fork 48
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 11.x Shift #189
base: main
Are you sure you want to change the base?
Laravel 11.x Shift #189
Conversation
ℹ️ To slim down the Laravel installation, Laravel 11 no longer has most of the core files previously included in the default Laravel application. While you are welcome to publish and customize these files, they are no longer required. Shift takes an iterative approach to removing core files which are not customized or where its customizations may be done elsewhere in a modern Laravel 11 application. As such, you may see some commits removing files and others re-registering your customizations. |
|
ℹ️ Laravel 11 no longer requires you to maintain the default configuration files. Your configuration now merges with framework defaults. Shift streamlined your configuration files by removing options that matched the Laravel defaults and preserving your true customizations. These are values which are not changeable through If you wish to keep the full set of configuration files, Shift recommends running |
ℹ️ Shift detected customized options within your configuration files which may be set with an AUTH_PASSWORD_RESET_TOKEN_TABLE=password_resets
BCRYPT_ROUNDS=10
CACHE_STORE=file
DB_CONNECTION=mysql
LOG_STACK=single,flare
MAIL_MAILER=smtp
QUEUE_CONNECTION=sync
SESSION_DRIVER=file Note: some of these may simply be values which changed between Laravel 10 and Laravel 11. You may ignore any |
Shift automated this change for your committed files, but you should review any additional locations where your environment is configured and update to the new variable names. |
❌ The |
ℹ️ Shift updated your dependencies for Laravel 11. 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 11. Watch dealing with dependencies for tips on handling any Composer issues. |
ℹ️ The base Shift detected your base controller did not have any public methods, so it was safe to mark as |
|
ℹ️ Laravel 11 now updates the timestamp when publishing vendor migrations. This may cause problems in existing applications when these migrations were previously published and ran with their default timestamp. To preserve the original behavior, Shift disabled this feature in your |
|
|
ℹ️ All of the underlying Symfony components used by Laravel have been upgraded to Symfony 7.0. Shift detected references to Symfony classes within your application. These are most likely type hints and can safely be ignored. If you are using Symfony classes directly or experience issues relating to Symfony, you should review the Symfony change log for any additional changes. |
|
🎉 Congratulations, you're now running the latest version of Laravel! Next, you may optionally run the following Shifts to ensure your application is fully upgraded, adopts the latest Laravel conventions, and easier to maintain in the future:
You may also use the Shift Workbench to automate common tasks for maintaining your Laravel application. |
Hello @driesvints I saw your tweet about paste.laravel.io This PR is one commit away from being ready. Running And updating <?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
+ protected function setUp(): void
+ {
+ parent::setUp();
+
+ $this->withoutVite();
+ }
} |
@alphaolomi amazing. Can you send in a PR with that? Thanks! |
* allow test withoutVite manifest + update lock * revert to php version "8.3.*"
@driesvints In getting the PR ready, what conflict resolution method is best in this scenario? Merge commit or rebase. |
preferable merge |
* Bump doctrine/dbal from 3.8.3 to 3.8.4 (#193) Bumps [doctrine/dbal](https://github.com/doctrine/dbal) from 3.8.3 to 3.8.4. - [Release notes](https://github.com/doctrine/dbal/releases) - [Commits](doctrine/dbal@3.8.3...3.8.4) --- updated-dependencies: - dependency-name: doctrine/dbal dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump phpunit/phpunit from 10.5.19 to 10.5.20 (#192) Bumps [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) from 10.5.19 to 10.5.20. - [Release notes](https://github.com/sebastianbergmann/phpunit/releases) - [Changelog](https://github.com/sebastianbergmann/phpunit/blob/10.5.20/ChangeLog-10.5.md) - [Commits](sebastianbergmann/phpunit@10.5.19...10.5.20) --- updated-dependencies: - dependency-name: phpunit/phpunit dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump the php-dependencies group with 3 updates (#191) Bumps the php-dependencies group with 3 updates: [ramsey/uuid](https://github.com/ramsey/uuid), [sentry/sentry-laravel](https://github.com/getsentry/sentry-laravel) and [spatie/laravel-ignition](https://github.com/spatie/laravel-ignition). Updates `ramsey/uuid` from 4.7.5 to 4.7.6 - [Release notes](https://github.com/ramsey/uuid/releases) - [Changelog](https://github.com/ramsey/uuid/blob/4.x/CHANGELOG.md) - [Commits](ramsey/uuid@4.7.5...4.7.6) Updates `sentry/sentry-laravel` from 4.5.0 to 4.5.1 - [Release notes](https://github.com/getsentry/sentry-laravel/releases) - [Changelog](https://github.com/getsentry/sentry-laravel/blob/master/CHANGELOG.md) - [Commits](getsentry/sentry-laravel@4.5.0...4.5.1) Updates `spatie/laravel-ignition` from 2.5.2 to 2.6.2 - [Release notes](https://github.com/spatie/laravel-ignition/releases) - [Changelog](https://github.com/spatie/laravel-ignition/blob/main/CHANGELOG.md) - [Commits](spatie/laravel-ignition@2.5.2...2.6.2) --- updated-dependencies: - dependency-name: ramsey/uuid dependency-type: direct:production update-type: version-update:semver-patch dependency-group: php-dependencies - dependency-name: sentry/sentry-laravel dependency-type: direct:production update-type: version-update:semver-patch dependency-group: php-dependencies - dependency-name: spatie/laravel-ignition dependency-type: direct:production update-type: version-update:semver-minor dependency-group: php-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump the js-dependencies group with 2 updates (#190) Bumps the js-dependencies group with 2 updates: [alpinejs](https://github.com/alpinejs/alpine/tree/HEAD/packages/alpinejs) and [sass](https://github.com/sass/dart-sass). Updates `alpinejs` from 3.13.9 to 3.13.10 - [Release notes](https://github.com/alpinejs/alpine/releases) - [Commits](https://github.com/alpinejs/alpine/commits/v3.13.10/packages/alpinejs) Updates `sass` from 1.75.0 to 1.76.0 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](sass/dart-sass@1.75.0...1.76.0) --- updated-dependencies: - dependency-name: alpinejs dependency-type: direct:production update-type: version-update:semver-patch dependency-group: js-dependencies - dependency-name: sass dependency-type: direct:development update-type: version-update:semver-minor dependency-group: js-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump spatie/laravel-ignition in the php-dependencies group (#194) Bumps the php-dependencies group with 1 update: [spatie/laravel-ignition](https://github.com/spatie/laravel-ignition). Updates `spatie/laravel-ignition` from 2.6.2 to 2.7.0 - [Release notes](https://github.com/spatie/laravel-ignition/releases) - [Changelog](https://github.com/spatie/laravel-ignition/blob/main/CHANGELOG.md) - [Commits](spatie/laravel-ignition@2.6.2...2.7.0) --- updated-dependencies: - dependency-name: spatie/laravel-ignition dependency-type: direct:production update-type: version-update:semver-minor dependency-group: php-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump the js-dependencies group with 2 updates (#195) Bumps the js-dependencies group with 2 updates: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) and [sass](https://github.com/sass/dart-sass). Updates `vite` from 5.2.10 to 5.2.11 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.2.11/packages/vite) Updates `sass` from 1.76.0 to 1.77.0 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](sass/dart-sass@1.76.0...1.77.0) --- updated-dependencies: - dependency-name: vite dependency-type: direct:production update-type: version-update:semver-patch dependency-group: js-dependencies - dependency-name: sass dependency-type: direct:development update-type: version-update:semver-minor dependency-group: js-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump sass from 1.77.0 to 1.77.1 in the js-dependencies group (#196) Bumps the js-dependencies group with 1 update: [sass](https://github.com/sass/dart-sass). Updates `sass` from 1.77.0 to 1.77.1 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](sass/dart-sass@1.77.0...1.77.1) --- updated-dependencies: - dependency-name: sass dependency-type: direct:development update-type: version-update:semver-patch dependency-group: js-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * --- (#197) updated-dependencies: - dependency-name: alpinejs dependency-type: direct:production update-type: version-update:semver-minor dependency-group: js-dependencies - dependency-name: laravel-vite-plugin dependency-type: direct:production update-type: version-update:semver-patch dependency-group: js-dependencies - dependency-name: sass dependency-type: direct:development update-type: version-update:semver-patch dependency-group: js-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * --- (#198) updated-dependencies: - dependency-name: mockery/mockery dependency-type: direct:development update-type: version-update:semver-patch dependency-group: php-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump league/flysystem-aws-s3-v3 in the php-dependencies group (#200) Bumps the php-dependencies group with 1 update: [league/flysystem-aws-s3-v3](https://github.com/thephpleague/flysystem-aws-s3-v3). Updates `league/flysystem-aws-s3-v3` from 3.27.0 to 3.28.0 - [Commits](thephpleague/flysystem-aws-s3-v3@3.27.0...3.28.0) --- updated-dependencies: - dependency-name: league/flysystem-aws-s3-v3 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: php-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump vite from 5.2.11 to 5.2.12 in the js-dependencies group (#199) Bumps the js-dependencies group with 1 update: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). Updates `vite` from 5.2.11 to 5.2.12 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.2.12/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-type: direct:production update-type: version-update:semver-patch dependency-group: js-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump sass from 1.77.2 to 1.77.4 in the js-dependencies group (#201) Bumps the js-dependencies group with 1 update: [sass](https://github.com/sass/dart-sass). Updates `sass` from 1.77.2 to 1.77.4 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](sass/dart-sass@1.77.2...1.77.4) --- updated-dependencies: - dependency-name: sass dependency-type: direct:development update-type: version-update:semver-patch dependency-group: js-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump sentry/sentry-laravel in the php-dependencies group (#202) Bumps the php-dependencies group with 1 update: [sentry/sentry-laravel](https://github.com/getsentry/sentry-laravel). Updates `sentry/sentry-laravel` from 4.5.1 to 4.6.0 - [Release notes](https://github.com/getsentry/sentry-laravel/releases) - [Changelog](https://github.com/getsentry/sentry-laravel/blob/master/CHANGELOG.md) - [Commits](getsentry/sentry-laravel@4.5.1...4.6.0) --- updated-dependencies: - dependency-name: sentry/sentry-laravel dependency-type: direct:production update-type: version-update:semver-minor dependency-group: php-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump the js-dependencies group with 3 updates (#203) Bumps the js-dependencies group with 3 updates: [tailwindcss](https://github.com/tailwindlabs/tailwindcss), [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) and [sass](https://github.com/sass/dart-sass). Updates `tailwindcss` from 3.4.3 to 3.4.4 - [Release notes](https://github.com/tailwindlabs/tailwindcss/releases) - [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.4/CHANGELOG.md) - [Commits](tailwindlabs/tailwindcss@v3.4.3...v3.4.4) Updates `vite` from 5.2.12 to 5.2.13 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v5.2.13/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.2.13/packages/vite) Updates `sass` from 1.77.4 to 1.77.5 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](sass/dart-sass@1.77.4...1.77.5) --- updated-dependencies: - dependency-name: tailwindcss dependency-type: direct:production update-type: version-update:semver-patch dependency-group: js-dependencies - dependency-name: vite dependency-type: direct:production update-type: version-update:semver-patch dependency-group: js-dependencies - dependency-name: sass dependency-type: direct:development update-type: version-update:semver-patch dependency-group: js-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump braces from 3.0.2 to 3.0.3 in the npm_and_yarn group (#204) Bumps the npm_and_yarn group with 1 update: [braces](https://github.com/micromatch/braces). Updates `braces` from 3.0.2 to 3.0.3 - [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md) - [Commits](micromatch/braces@3.0.2...3.0.3) --- updated-dependencies: - dependency-name: braces dependency-type: indirect dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump the js-dependencies group with 3 updates (#206) Bumps the js-dependencies group with 3 updates: [alpinejs](https://github.com/alpinejs/alpine/tree/HEAD/packages/alpinejs), [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) and [sass](https://github.com/sass/dart-sass). Updates `alpinejs` from 3.14.0 to 3.14.1 - [Release notes](https://github.com/alpinejs/alpine/releases) - [Commits](https://github.com/alpinejs/alpine/commits/v3.14.1/packages/alpinejs) Updates `vite` from 5.2.13 to 5.3.1 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.3.1/packages/vite) Updates `sass` from 1.77.5 to 1.77.6 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](sass/dart-sass@1.77.5...1.77.6) --- updated-dependencies: - dependency-name: alpinejs dependency-type: direct:production update-type: version-update:semver-patch dependency-group: js-dependencies - dependency-name: vite dependency-type: direct:production update-type: version-update:semver-minor dependency-group: js-dependencies - dependency-name: sass dependency-type: direct:development update-type: version-update:semver-patch dependency-group: js-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump the php-dependencies group with 2 updates (#205) Bumps the php-dependencies group with 2 updates: [sentry/sentry-laravel](https://github.com/getsentry/sentry-laravel) and [spatie/laravel-ignition](https://github.com/spatie/laravel-ignition). Updates `sentry/sentry-laravel` from 4.6.0 to 4.6.1 - [Release notes](https://github.com/getsentry/sentry-laravel/releases) - [Changelog](https://github.com/getsentry/sentry-laravel/blob/master/CHANGELOG.md) - [Commits](getsentry/sentry-laravel@4.6.0...4.6.1) Updates `spatie/laravel-ignition` from 2.7.0 to 2.8.0 - [Release notes](https://github.com/spatie/laravel-ignition/releases) - [Changelog](https://github.com/spatie/laravel-ignition/blob/main/CHANGELOG.md) - [Commits](spatie/laravel-ignition@2.7.0...2.8.0) --- updated-dependencies: - dependency-name: sentry/sentry-laravel dependency-type: direct:production update-type: version-update:semver-patch dependency-group: php-dependencies - dependency-name: spatie/laravel-ignition dependency-type: direct:production update-type: version-update:semver-minor dependency-group: php-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump phpunit/phpunit from 10.5.20 to 10.5.25 (#207) Bumps [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) from 10.5.20 to 10.5.25. - [Release notes](https://github.com/sebastianbergmann/phpunit/releases) - [Changelog](https://github.com/sebastianbergmann/phpunit/blob/10.5.25/ChangeLog-10.5.md) - [Commits](sebastianbergmann/phpunit@10.5.20...10.5.25) --- updated-dependencies: - dependency-name: phpunit/phpunit dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump doctrine/dbal from 3.8.4 to 3.8.6 (#208) Bumps [doctrine/dbal](https://github.com/doctrine/dbal) from 3.8.4 to 3.8.6. - [Release notes](https://github.com/doctrine/dbal/releases) - [Commits](doctrine/dbal@3.8.4...3.8.6) --- updated-dependencies: - dependency-name: doctrine/dbal dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump the js-dependencies group with 2 updates (#209) Bumps the js-dependencies group with 2 updates: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) and [postcss](https://github.com/postcss/postcss). Updates `vite` from 5.3.1 to 5.3.3 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.3.3/packages/vite) Updates `postcss` from 8.4.38 to 8.4.39 - [Release notes](https://github.com/postcss/postcss/releases) - [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md) - [Commits](postcss/postcss@8.4.38...8.4.39) --- updated-dependencies: - dependency-name: vite dependency-type: direct:production update-type: version-update:semver-patch dependency-group: js-dependencies - dependency-name: postcss dependency-type: direct:development update-type: version-update:semver-patch dependency-group: js-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump the js-dependencies group with 3 updates (#210) Bumps the js-dependencies group with 3 updates: [highlight.js](https://github.com/highlightjs/highlight.js), [laravel-vite-plugin](https://github.com/laravel/vite-plugin) and [sass](https://github.com/sass/dart-sass). Updates `highlight.js` from 11.9.0 to 11.10.0 - [Release notes](https://github.com/highlightjs/highlight.js/releases) - [Changelog](https://github.com/highlightjs/highlight.js/blob/main/CHANGES.md) - [Commits](highlightjs/highlight.js@11.9.0...11.10.0) Updates `laravel-vite-plugin` from 1.0.4 to 1.0.5 - [Release notes](https://github.com/laravel/vite-plugin/releases) - [Changelog](https://github.com/laravel/vite-plugin/blob/1.x/CHANGELOG.md) - [Commits](laravel/vite-plugin@v1.0.4...v1.0.5) Updates `sass` from 1.77.6 to 1.77.7 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](sass/dart-sass@1.77.6...1.77.7) --- updated-dependencies: - dependency-name: highlight.js dependency-type: direct:production update-type: version-update:semver-minor dependency-group: js-dependencies - dependency-name: laravel-vite-plugin dependency-type: direct:production update-type: version-update:semver-patch dependency-group: js-dependencies - dependency-name: sass dependency-type: direct:development update-type: version-update:semver-patch dependency-group: js-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump the php-dependencies group with 2 updates (#212) Bumps the php-dependencies group with 2 updates: [blade-ui-kit/blade-heroicons](https://github.com/blade-ui-kit/blade-heroicons) and [sentry/sentry-laravel](https://github.com/getsentry/sentry-laravel). Updates `blade-ui-kit/blade-heroicons` from 2.3.0 to 2.4.0 - [Release notes](https://github.com/blade-ui-kit/blade-heroicons/releases) - [Changelog](https://github.com/blade-ui-kit/blade-heroicons/blob/main/CHANGELOG.md) - [Commits](blade-ui-kit/blade-heroicons@2.3.0...2.4.0) Updates `sentry/sentry-laravel` from 4.6.1 to 4.7.0 - [Release notes](https://github.com/getsentry/sentry-laravel/releases) - [Changelog](https://github.com/getsentry/sentry-laravel/blob/master/CHANGELOG.md) - [Commits](getsentry/sentry-laravel@4.6.1...4.7.0) --- updated-dependencies: - dependency-name: blade-ui-kit/blade-heroicons dependency-type: direct:production update-type: version-update:semver-minor dependency-group: php-dependencies - dependency-name: sentry/sentry-laravel dependency-type: direct:production update-type: version-update:semver-minor dependency-group: php-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump the js-dependencies group with 3 updates (#211) Bumps the js-dependencies group with 3 updates: [tailwindcss](https://github.com/tailwindlabs/tailwindcss), [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) and [sass](https://github.com/sass/dart-sass). Updates `tailwindcss` from 3.4.4 to 3.4.6 - [Release notes](https://github.com/tailwindlabs/tailwindcss/releases) - [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.6/CHANGELOG.md) - [Commits](tailwindlabs/tailwindcss@v3.4.4...v3.4.6) Updates `vite` from 5.3.3 to 5.3.4 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.3.4/packages/vite) Updates `sass` from 1.77.7 to 1.77.8 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](sass/dart-sass@1.77.7...1.77.8) --- updated-dependencies: - dependency-name: tailwindcss dependency-type: direct:production update-type: version-update:semver-patch dependency-group: js-dependencies - dependency-name: vite dependency-type: direct:production update-type: version-update:semver-patch dependency-group: js-dependencies - dependency-name: sass dependency-type: direct:development update-type: version-update:semver-patch dependency-group: js-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump the php-dependencies group with 2 updates (#213) * Bump the php-dependencies group with 2 updates Bumps the php-dependencies group with 2 updates: [guzzlehttp/guzzle](https://github.com/guzzle/guzzle) and [sentry/sentry-laravel](https://github.com/getsentry/sentry-laravel). Updates `guzzlehttp/guzzle` from 7.8.1 to 7.9.1 - [Release notes](https://github.com/guzzle/guzzle/releases) - [Changelog](https://github.com/guzzle/guzzle/blob/7.9/CHANGELOG.md) - [Commits](guzzle/guzzle@7.8.1...7.9.1) Updates `sentry/sentry-laravel` from 4.7.0 to 4.7.1 - [Release notes](https://github.com/getsentry/sentry-laravel/releases) - [Changelog](https://github.com/getsentry/sentry-laravel/blob/master/CHANGELOG.md) - [Commits](getsentry/sentry-laravel@4.7.0...4.7.1) --- updated-dependencies: - dependency-name: guzzlehttp/guzzle dependency-type: direct:production update-type: version-update:semver-minor dependency-group: php-dependencies - dependency-name: sentry/sentry-laravel dependency-type: direct:production update-type: version-update:semver-patch dependency-group: php-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> * Fix code styling --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <dependabot[bot]@users.noreply.github.com> * Bump guzzlehttp/guzzle from 7.9.1 to 7.9.2 in the php-dependencies group (#214) Bumps the php-dependencies group with 1 update: [guzzlehttp/guzzle](https://github.com/guzzle/guzzle). Updates `guzzlehttp/guzzle` from 7.9.1 to 7.9.2 - [Release notes](https://github.com/guzzle/guzzle/releases) - [Changelog](https://github.com/guzzle/guzzle/blob/7.9/CHANGELOG.md) - [Commits](guzzle/guzzle@7.9.1...7.9.2) --- updated-dependencies: - dependency-name: guzzlehttp/guzzle dependency-type: direct:production update-type: version-update:semver-patch dependency-group: php-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump the js-dependencies group with 3 updates (#215) Bumps the js-dependencies group with 3 updates: [tailwindcss](https://github.com/tailwindlabs/tailwindcss), [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) and [postcss](https://github.com/postcss/postcss). Updates `tailwindcss` from 3.4.6 to 3.4.7 - [Release notes](https://github.com/tailwindlabs/tailwindcss/releases) - [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.7/CHANGELOG.md) - [Commits](tailwindlabs/tailwindcss@v3.4.6...v3.4.7) Updates `vite` from 5.3.4 to 5.3.5 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.3.5/packages/vite) Updates `postcss` from 8.4.39 to 8.4.40 - [Release notes](https://github.com/postcss/postcss/releases) - [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md) - [Commits](postcss/postcss@8.4.39...8.4.40) --- updated-dependencies: - dependency-name: tailwindcss dependency-type: direct:production update-type: version-update:semver-patch dependency-group: js-dependencies - dependency-name: vite dependency-type: direct:production update-type: version-update:semver-patch dependency-group: js-dependencies - dependency-name: postcss dependency-type: direct:development update-type: version-update:semver-patch dependency-group: js-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * allow test withoutVite manifest + update lock * revert to php version "8.3.*" --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <dependabot[bot]@users.noreply.github.com>
This pull request includes the changes for upgrading to Laravel 11.x. Feel free to commit any additional changes to the
shift-117652
branch.Before merging, you need to:
shift-117652
branchcomposer update
(if the scripts fail, try with--no-scripts
)If you need help with your upgrade, check out the Human Shifts.