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 inertiajs/inertia-laravel from 0.5.4 to 0.6.8 #142

Closed

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jan 16, 2023

Bumps inertiajs/inertia-laravel from 0.5.4 to 0.6.8.

Release notes

Sourced from inertiajs/inertia-laravel's releases.

v0.6.8

  • Reintroduce inertia.ssr.enabled config option (#488)
  • Fix bug where SSR is dispatched twice when errors exist (#489)

v0.6.7

  • Report SSR errors (#486)
  • Auto enable SSR based on existence of SSR bundle (#487)

v0.6.6

  • Add inertia:start-ssr and inertia:stop-ssr artisan commands (#483)

v0.6.5

v0.6.4

  • Add PHP 8.2 support (#463)

v0.6.3

  • Check Vite manifest path (build/manifest.json) when determining the current asset version (#399)

v0.6.2

  • Switch to using the Vary: X-Inertia header (#404)
  • Fix bug with incompatible $request->header() method (#404)

v0.6.1

  • Set Vary: Accept header for all responses (#398)
  • Only register Blade directives when actually needed (#395)

v0.6.0

Automatic redirects

Since returning a Redirect::back() response is such a common pattern within an Inertia app, this adapter now does this automatically for you when no response is returned from a controller (#350).

For example, consider this teams controller which redirects back to the previous page after updating a team. With this new feature you can now omit the Redirect::back() response and it will happen automatically.

class TeamsController extends Controller
{
    public function update(Team $team)
    {
        $team->update(/* ... */);
-
-       return Redirect::back();
    }
}

You can disable this behavior, or even do something entirely different, by adding an onEmptyResponse method to your HandleInertiaRequests middleware:

</tr></table> 

... (truncated)

Changelog

Sourced from inertiajs/inertia-laravel's changelog.

v0.6.8 - 2023-01-14

  • Reintroduce inertia.ssr.enabled config option (#488)
  • Fix bug where SSR is dispatched twice when errors exist (#489)

v0.6.7 - 2023-01-12

  • Report SSR errors (#486)
  • Auto enable SSR based on existence of SSR bundle (#487)

v0.6.6 - 2023-01-11

  • Add inertia:start-ssr and inertia:stop-ssr artisan commands (#483)

v0.6.5 - 2023-01-10

  • Add Laravel v10 support (#480)

v0.6.4 - 2022-11-08

  • Add PHP 8.2 support (#463)

v0.6.3 - 2022-06-27

  • Check Vite manifest path (build/manifest.json) when determining the current asset version (#399)

v0.6.2 - 2022-05-24

  • Switch to using the Vary: X-Inertia header (#404)
  • Fix bug with incompatible $request->header() method (#404)

v0.6.1 - 2022-05-24

  • Set Vary: Accept header for all responses (#398)
  • Only register Blade directives when actually needed (#395)

v0.6.0 - 2022-05-10

Added

  • Inertia now redirects back by default when no response is returned from a controller (#350)
  • The Middleware has an overridable onEmptyResponse hook to customize the default 'redirect back' behavior (#350)

Changed

  • Internal: Replaced the Middleware's checkVersion method with an onVersionChange hook (#350)

Fixed

  • Fixed namespace issue with Route::inertia() method (#368)

... (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)

Bumps [inertiajs/inertia-laravel](https://github.com/inertiajs/inertia-laravel) from 0.5.4 to 0.6.8.
- [Release notes](https://github.com/inertiajs/inertia-laravel/releases)
- [Changelog](https://github.com/inertiajs/inertia-laravel/blob/master/CHANGELOG.md)
- [Commits](inertiajs/inertia-laravel@v0.5.4...v0.6.8)

---
updated-dependencies:
- dependency-name: inertiajs/inertia-laravel
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file php Pull requests that update Php code labels Jan 16, 2023
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Jan 23, 2023

Superseded by #145.

@dependabot dependabot bot closed this Jan 23, 2023
@dependabot dependabot bot deleted the dependabot/composer/inertiajs/inertia-laravel-0.6.8 branch January 23, 2023 09:08
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 php Pull requests that update Php code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants