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.0 #586

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps laravel/jetstream from 2.16.1 to 3.0.0.

Release notes

Sourced from laravel/jetstream's releases.

v3.0.0

Added

Changed

Changelog

Sourced from laravel/jetstream's changelog.

v3.0.0 - 2023-02-14

Added

Changed

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


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

Superseded by #589.