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 1.6.1 to 2.6.6 #361

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 16, 2022

Bumps laravel/jetstream from 1.6.1 to 2.6.6.

Release notes

Sourced from laravel/jetstream's releases.

v2.6.6

Fixed

  • Install command find the path to the php binary used (#976)
  • Priorize 'accepted' validation rule for terms checkbox (#980)
  • Mail Faker need on test cancelled invitations (#978, a03b8ec)

v2.6.5

Fixed

  • Fixed avatar multibyte character issue (#973)

v2.6.4

Changed

  • Fix PHP 8.1 return type (#969)

v2.6.3

Changed

  • Switch to Laravel 8.37 >= anonymous migrations (#961)

Fixed

  • Add Check before deleting a profile photo (#959)
  • Always return array to ui from allTeams() (#966)

v2.6.2

Changed

  • Route group Sanctum guard (#957)
  • Add config option for guard (82724e7)
  • Make config stub and set default guard (fff4df4)

v2.6.1

Changed

  • Bump inertiajs/inertia-laravel (#954)

v2.6.0

Changed

  • Laravel 9 Support (#948)
  • Anonymize default profile photo url calls (#940)

v2.5.1

Changed

v2.5.0

Changed

  • Update to Tailwind CSS v3 (#920, #926)
  • Use KeyboardEvent key attribute for Escape (#911)

v2.4.4

Changed

... (truncated)

Changelog

Sourced from laravel/jetstream's changelog.

v2.6.6 - 2022-02-15

Fixed

  • Install command find the path to the php binary used (#976)
  • Priorize 'accepted' validation rule for terms checkbox (#980)
  • Mail Faker need on test cancelled invitations (#978, a03b8ec)

v2.6.5 - 2022-02-08

Fixed

  • Fixed avatar multibyte character issue (#973)

v2.6.4 (2022-02-01)

Changed

  • Fix PHP 8.1 return type (#969)

v2.6.3 (2022-01-25)

Changed

  • Switch to Laravel 8.37 >= anonymous migrations (#961)

Fixed

  • Add Check before deleting a profile photo (#959)
  • Always return array to ui from allTeams() (#966)

v2.6.2 (2022-01-18)

Changed

  • Route group Sanctum guard (#957)
  • Add config option for guard (82724e7)
  • Make config stub and set default guard (fff4df4)

v2.6.1 (2022-01-13)

Changed

  • Bump inertiajs/inertia-laravel (#954)

v2.6.0 (2022-01-12)

Changed

  • Laravel 9 Support (#948)

... (truncated)

Upgrade guide

Sourced from laravel/jetstream's upgrade guide.

Upgrade Guide

Upgrading From Jetstream 1.x To Jetstream 2.x

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

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 ^2.0 within your application's composer.json file and run the composer update command:

composer update

Remove Team Member Action

You should place the new RemoveTeamMember action within your application's app/Actions/Jetstream directory.

In addition, you should register this action with Jetstream by adding the following code to the boot method of your application's JetstreamServiceProvider:

use App\Actions\Jetstream\RemoveTeamMember;
Jetstream::removeTeamMembersUsing(RemoveTeamMember::class);

Team Invitation Model

You should place the new TeamInvitation model within your application's app/Models directory.

In addition, you should create a team_invitations database migration:

php artisan make:migration create_team_invitations_table

The generated migration should have the following content:

<?php
use Illuminate\Database\Migrations\Migration;
</tr></table>

... (truncated)

Commits
  • a03b8ec wip
  • 0c877ab Apply fixes from StyleCI
  • 4701ed5 Mail Faker need on test cancelled invitations (#978)
  • e778091 Priorize 'accepted' validation rule for terms checkbox (#980)
  • 2bd67c5 Install command find the path to the php binary used (#976)
  • cc9ecf2 Update CHANGELOG.md
  • 49acffb Rename update-changelog.md to update-changelog.yml
  • 5127db8 Create update-changelog.md
  • 082a0fa Fixed avatar multibyte character issue (#973)
  • ae5afdf Update CHANGELOG.md
  • 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 1.6.1 to 2.6.6.
- [Release notes](https://github.com/laravel/jetstream/releases)
- [Changelog](https://github.com/laravel/jetstream/blob/2.x/CHANGELOG.md)
- [Upgrade guide](https://github.com/laravel/jetstream/blob/2.x/UPGRADE.md)
- [Commits](laravel/jetstream@v1.6.1...v2.6.6)

---
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 the dependencies Pull requests that update a dependency file label Feb 16, 2022
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants