rocketlog icon indicating copy to clipboard operation
rocketlog copied to clipboard

Bump laravel/jetstream from 2.16.2 to 4.3.1

Open dependabot[bot] opened this issue 11 months ago • 0 comments

Bumps laravel/jetstream from 2.16.2 to 4.3.1.

Release notes

Sourced from laravel/jetstream's releases.

v4.3.1

v4.3.0

v4.2.2

v4.2.1

v4.2.0

v4.1.2

v4.1.1

v4.1.0

v4.0.5

v4.0.4

v4.0.3

v4.0.2

v4.0.1

v4.0.0

v3.3.3

... (truncated)

Changelog

Sourced from laravel/jetstream's changelog.

v4.3.1 - 2024-02-29

v4.3.0 - 2024-02-23

v4.2.2 - 2024-01-17

v4.2.1 - 2023-12-27

v4.2.0 - 2023-12-19

v4.1.2 - 2023-11-29

v4.1.1 - 2023-11-27

v4.1.0 - 2023-11-07

v4.0.5 - 2023-10-27

v4.0.4 - 2023-10-18

v4.0.3 - 2023-10-02

... (truncated)

Upgrade guide

Sourced from laravel/jetstream's upgrade guide.

Upgrade Guide

Upgrading from Jetstream 3.x to Jetstream 4.x

Note This upgrade guide only discusses upgrading to Jetstream 4.x. Upgrading your Laravel, Tailwind, Livewire, or Inertia installations is outside the scope of this documentation and is not strictly required in order to use Jetstream 4.x. Please consult the upgrade guides for those libraries for information on their upgrade process.

Jetstream 4.x Changes Common To Both Stacks

Dependency Versions

You should upgrade your laravel/jetstream dependency to ^4.0 within your application's composer.json file. Then, run the composer update command:

composer update

Jetstream 4.x Livewire Stack

This upgrade guide assumes you have already upgraded your application to Livewire 3.x and ran the php artisan livewire:upgrade command against the views published by Jetstream.

Alpine Script

As you may know, Livewire 3 ships with Alpine by default, so you do not need to include it in your application's resources/js/app.js file.

You should include @livewireStyles and @livewireScripts in your application's resources/views/layouts/guest.blade.php file since Alpine is used by "guest" components published by Jetstream:

        <!-- Scripts -->
        @vite(['resources/css/app.css', 'resources/js/app.js'])
+
+       <!-- Styles -->
+       @livewireStyles
    </head>
    <body>
        <div class="font-sans text-gray-900 dark:text-gray-100 antialiased">
            {{ $slot }}
        </div>
+
+       @livewireScripts
    </body>

Upgrading from Jetstream 2.x to Jetstream 3.x

Note This upgrade guide only discusses upgrading to Jetstream 3.x. Upgrading your Laravel, Tailwind, Livewire, or Inertia installations is outside the scope of this documentation and is not strictly required in order to use Jetstream 3.x. Please consult the upgrade guides for those libraries for information on their upgrade process.

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

dependabot[bot] avatar Mar 05 '24 19:03 dependabot[bot]