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

Bump laravel/jetstream from 2.10.2 to 3.0.2 #178

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Mar 6, 2023

Bumps laravel/jetstream from 2.10.2 to 3.0.2.

Release notes

Sourced from laravel/jetstream's releases.

v3.0.2

v3.0.1

v3.0.0

Added

Changed

v2.16.2

Fixed

v2.16.1

Fixed

v2.16.0

Removed

v2.15.0

Added

v2.14.1

Fixed

v2.14.0

Changed

... (truncated)

Changelog

Sourced from laravel/jetstream's changelog.

v3.0.2 - 2023-03-01

v3.0.1 - 2023-02-15

v3.0.0 - 2023-02-14

Added

Changed

v2.16.2 - 2023-02-14

Fixed

v2.16.1 - 2023-02-03

Fixed

v2.16.0 - 2023-01-18

Changed

v2.15.0 - 2023-01-18

Added

... (truncated)

Upgrade guide

Sourced from laravel/jetstream's upgrade guide.

Upgrade Guide

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.

Jetstream 3.x Changes Common To Both Stacks

Publish Views

Before upgrading, you should publish all of Jetstream's views using the vendor:publish Artisan command. You may skip this step if you have already published Jetstream's views:

php artisan vendor:publish --tag=jetstream-views

Dependency Versions

Next, you should upgrade your laravel/jetstream dependency to ^3.0 within your application's composer.json file and run the composer update command:

composer update

Jetstream 3.x Livewire Stack

Views

You should move the published Jetstream components from resources/views/vendor/jetstream/components to resources/views/components.

You should also move the published Jetstream mail views from resources/views/vendor/jetstream/mail to resources/views/emails, taking care to note the new directory name of emails instead of mail.

Next, you should remove all references to the jet- prefix from your views. For example:

- <x-jet-banner />
+ <x-banner />

<x-jet-switchable-team :team="$team" component="jet-responsive-nav-link" />


<x-switchable-team :team="$team" component="responsive-nav-link" />


@​props(['team', 'component' => 'jet-dropdown-link'])


@​props(['team', 'component' => 'dropdown-link'])

Finally, clear your view cache:

php artisan view:clear

... (truncated)

Commits
  • 2af8f16 Use route helper in two factor authentication form (#1276)
  • 11109e0 Update JetstreamServiceProvider.php
  • 026882b [3.x] Adds type checking (#1272)
  • 4e0e034 Removes @return $this when returning static (#1268)
  • 294d97f Merge branch '2.x' into 3.x
  • d02e09d Revert "[3.x] Ensure CI considers backwards compatibility with Laravel 9 (#12...
  • 7b9a0f7 Update CHANGELOG
  • 1b8db2e [3.x] Ensure CI considers backwards compatibility with Laravel 9 (#1258)
  • 4bdd442 [3.x] Removed loadViewsFrom (#1259)
  • f165f6e Update CHANGELOG
  • Additional commits viewable in compare view

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 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)

Bumps [laravel/jetstream](https://github.com/laravel/jetstream) from 2.10.2 to 3.0.2.
- [Release notes](https://github.com/laravel/jetstream/releases)
- [Changelog](https://github.com/laravel/jetstream/blob/3.x/CHANGELOG.md)
- [Upgrade guide](https://github.com/laravel/jetstream/blob/3.x/UPGRADE.md)
- [Commits](laravel/jetstream@v2.10.2...v3.0.2)

---
updated-dependencies:
- dependency-name: laravel/jetstream
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file php Pull requests that update Php code labels Mar 6, 2023
@codecov
Copy link

codecov bot commented Mar 6, 2023

Codecov Report

Patch and project coverage have no change.

Comparison is base (e343db0) 53.89% compared to head (7163f7d) 53.89%.

Additional details and impacted files
@@            Coverage Diff            @@
##             master     #178   +/-   ##
=========================================
  Coverage     53.89%   53.89%           
  Complexity       46       46           
=========================================
  Files            19       19           
  Lines           167      167           
=========================================
  Hits             90       90           
  Misses           77       77           

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

☔ View full report at Codecov.
📢 Do you have feedback about the report comment? Let us know in this issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file php Pull requests that update Php code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants