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: v4.0.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: v4.0.1
Choose a head ref
  • 3 commits
  • 3 files changed
  • 3 contributors

Commits on Aug 24, 2023

  1. Update CHANGELOG

    nunomaduro authored and github-actions[bot] committed Aug 24, 2023
    Copy the full SHA
    bcea369 View commit details

Commits on Aug 25, 2023

  1. Update README.md (#1368)

    Invalid Livewire & Inertia Link
    lovecoding-git authored Aug 25, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    bfe0c95 View commit details

Commits on Aug 27, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    21f3f26 View commit details
Showing with 13 additions and 9 deletions.
  1. +5 −1 CHANGELOG.md
  2. +1 −1 README.md
  3. +7 −7 stubs/inertia/app/Http/Middleware/HandleInertiaRequests.php
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Release Notes

## [Unreleased](https://github.com/laravel/jetstream/compare/v3.3.3...3.x)
## [Unreleased](https://github.com/laravel/jetstream/compare/v4.0.0...4.x)

## [v4.0.0](https://github.com/laravel/jetstream/compare/v3.3.3...v4.0.0) - 2023-08-24

- Livewire `v3.x` support in https://github.com/laravel/jetstream/pull/1360

## [v3.3.3](https://github.com/laravel/jetstream/compare/v3.3.2...v3.3.3) - 2023-08-23

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@

Laravel Jetstream is a beautifully designed application scaffolding for Laravel. Jetstream provides the perfect starting point for your next Laravel application and includes login, registration, email verification, two-factor authentication, session management, API support via [Laravel Sanctum](https://github.com/laravel/sanctum), and optional team management.

Jetstream is designed using [Tailwind CSS](https://tailwindcss.com) and offers your choice of [Livewire](https://jetstream.laravel.com/2.x/stacks/livewire.html) or [Inertia](https://jetstream.laravel.com/2.x/stacks/inertia.html) scaffolding.
Jetstream is designed using [Tailwind CSS](https://tailwindcss.com) and offers your choice of [Livewire](https://jetstream.laravel.com/stacks/livewire.html) or [Inertia](https://jetstream.laravel.com/stacks/inertia.html) scaffolding.

## Official Documentation

14 changes: 7 additions & 7 deletions stubs/inertia/app/Http/Middleware/HandleInertiaRequests.php
Original file line number Diff line number Diff line change
@@ -30,12 +30,12 @@ public function version(Request $request): ?string
*/
public function share(Request $request): array
{
return array_merge(parent::share($request), [
'ziggy' => function () use ($request) {
return array_merge((new Ziggy)->toArray(), [
'location' => $request->url(),
]);
},
]);
return [
...parent::share($request),
'ziggy' => fn () => [
...(new Ziggy)->toArray(),
'location' => $request->url(),
],
];
}
}