Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: laravel/jetstream
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.1.0
Choose a base ref
...
head repository: laravel/jetstream
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.1.1
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on May 7, 2024

  1. Update CHANGELOG

    driesvints authored and github-actions[bot] committed May 7, 2024
    Copy the full SHA
    8e63ae4 View commit details

Commits on May 13, 2024

  1. fix(InviteTeamMember): replace hardcoded team invitation model table …

    …in unique validation rule (#1490)
    Tailzip authored May 13, 2024
    Copy the full SHA
    30bde13 View commit details
Showing with 7 additions and 2 deletions.
  1. +6 −1 CHANGELOG.md
  2. +1 −1 stubs/app/Actions/Jetstream/InviteTeamMember.php
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Release Notes

## [Unreleased](https://github.com/laravel/jetstream/compare/v5.0.5...5.x)
## [Unreleased](https://github.com/laravel/jetstream/compare/v5.1.0...5.x)

## [v5.1.0](https://github.com/laravel/jetstream/compare/v5.0.5...v5.1.0) - 2024-05-06

* Add Disabled Class to Primary Button by [@alnutile](https://github.com/alnutile) in https://github.com/laravel/jetstream/pull/1482
* Update banner styling and add warning banner functionality by [@gqrdev](https://github.com/gqrdev) in https://github.com/laravel/jetstream/pull/1486

## [v5.0.5](https://github.com/laravel/jetstream/compare/v5.0.4...v5.0.5) - 2024-04-29

2 changes: 1 addition & 1 deletion stubs/app/Actions/Jetstream/InviteTeamMember.php
Original file line number Diff line number Diff line change
@@ -62,7 +62,7 @@ protected function rules(Team $team): array
return array_filter([
'email' => [
'required', 'email',
Rule::unique('team_invitations')->where(function (Builder $query) use ($team) {
Rule::unique(Jetstream::teamInvitationModel())->where(function (Builder $query) use ($team) {
$query->where('team_id', $team->id);
}),
],