brianwebb01 / hellechat

SMS, MMS, Voicemail app for use with VOIP cloud services
MIT License
10 stars 2 forks source link

Bump laravel/jetstream from 2.16.1 to 3.0.2 #600

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps laravel/jetstream from 2.16.1 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

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

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)
dependabot[bot] commented 1 year ago

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.