rocketlog
rocketlog copied to clipboard
Bump laravel/jetstream from 2.16.2 to 4.3.1
Bumps laravel/jetstream from 2.16.2 to 4.3.1.
Release notes
Sourced from laravel/jetstream's releases.
v4.3.1
- [4.x] Remove unnecessary e.preventDefault on modal close by
@Smef
in laravel/jetstream#1444v4.3.0
- Update to Ziggy v2 by
@bakerkretzmar
in laravel/jetstream#1442- [4.x] Change Inertia Modal.vue component to use a native by
@Smef
in laravel/jetstream#1431v4.2.2
- [4.x] Fix home route by
@jessarcher
in laravel/jetstream#1432v4.2.1
- [4.x] Remove Unreachable
return
in PHPUnit test stubs by@nathanheffley
in laravel/jetstream#1423- [4.x] Fix PHPDoc for
UpdateUserProfileInformation::update
by@rstefanic
in laravel/jetstream#1424v4.2.0
- [4.x] Vite 5 by
@timacdonald
in laravel/jetstream#1418v4.1.2
- Fix Browser Sessions not showing platform and browser by
@olumby
in laravel/jetstream#1412v4.1.1
- deleteTeam() return type by
@tanthammar
in laravel/jetstream#1406- Set password in session on update for inertia by
@taylorotwell
in laravel/jetstream#1411v4.1.0
- Typehint mutator profile_photo_url attribute function return by
@potsky
in laravel/jetstream#1396- [4.x] Use PHPUnit 10 by
@crynobone
in laravel/jetstream#1400- [4.x] Replace
jenssegers/agent
and use latestmobiledetect/mobiledetectlib
by@crynobone
in laravel/jetstream#1399v4.0.5
- Replacing left/right classes with start/end to support RTL by
@AbdullahObaid
in laravel/jetstream#1392v4.0.4
- Update UpdateProfileInformationForm.vue by
@iamcarlos94
in laravel/jetstream#1391- Fix: Livewire component premature registration by
@Omranic
in laravel/jetstream#1390v4.0.3
- [4.x] Remove outdated session migration check by
@jessarcher
in laravel/jetstream#1385v4.0.2
- Prevent calling Inertia before it's installed by
@jrd-lewis
in laravel/jetstream#1376v4.0.1
- Replace
array_merge
with spread operator inHandleInertiaRequests
by@osbre
in laravel/jetstream#1370v4.0.0
- Livewire
v3.x
support in laravel/jetstream#1360v3.3.3
- Fix memory leak and potential caching issue in laravel/jetstream#1366
... (truncated)
Changelog
Sourced from laravel/jetstream's changelog.
v4.3.1 - 2024-02-29
- [4.x] Remove unnecessary e.preventDefault on modal close by
@Smef
in laravel/jetstream#1444v4.3.0 - 2024-02-23
- Update to Ziggy v2 by
@bakerkretzmar
in laravel/jetstream#1442- [4.x] Change Inertia Modal.vue component to use a native by
@Smef
in laravel/jetstream#1431v4.2.2 - 2024-01-17
- [4.x] Fix home route by
@jessarcher
in laravel/jetstream#1432v4.2.1 - 2023-12-27
- [4.x] Remove Unreachable
return
in PHPUnit test stubs by@nathanheffley
in laravel/jetstream#1423- [4.x] Fix PHPDoc for
UpdateUserProfileInformation::update
by@rstefanic
in laravel/jetstream#1424v4.2.0 - 2023-12-19
- [4.x] Vite 5 by
@timacdonald
in laravel/jetstream#1418v4.1.2 - 2023-11-29
- Fix Browser Sessions not showing platform and browser by
@olumby
in laravel/jetstream#1412v4.1.1 - 2023-11-27
- deleteTeam() return type by
@tanthammar
in laravel/jetstream#1406- Set password in session on update for inertia by
@taylorotwell
in laravel/jetstream#1411v4.1.0 - 2023-11-07
- Typehint mutator profile_photo_url attribute function return by
@potsky
in laravel/jetstream#1396- [4.x] Use PHPUnit 10 by
@crynobone
in laravel/jetstream#1400- [4.x] Replace
jenssegers/agent
and use latestmobiledetect/mobiledetectlib
by@crynobone
in laravel/jetstream#1399v4.0.5 - 2023-10-27
- Replacing left/right classes with start/end to support RTL by
@AbdullahObaid
in laravel/jetstream#1392v4.0.4 - 2023-10-18
- Update UpdateProfileInformationForm.vue by
@iamcarlos94
in laravel/jetstream#1391- Fix: Livewire component premature registration by
@Omranic
in laravel/jetstream#1390v4.0.3 - 2023-10-02
- [4.x] Remove outdated session migration check by
@jessarcher
in laravel/jetstream#1385
... (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'scomposer.json
file. Then, run thecomposer 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'sresources/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
1cb2b30
remove e.preventDefault on modal close (#1444)b422860
Update CHANGELOGc0e19ca
[4.x] Change Inertia Modal.vue component to use a native <dialog> (#1431)e8335d0
Update to Ziggy v2 (#1442)4121a25
remove sponsor link9f0db25
Update 1_Bug_report.yml7aeafb3
Update 1_Bug_report.ymle17dd96
Update 1_Bug_report.yml5bbb533
Update 1_Bug_report.ymlc0e9c8e
Use new static analysis workflow (#1438)- Additional commits viewable in compare view
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)