Skip to content

Commit

Permalink
Update upgrading
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertBoes committed Apr 26, 2024
1 parent c54c3aa commit ba9c478
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,31 @@ This document outlines breaking changes introduced in 0.x versions and major rel

We accept PRs to improve this guide.

## From 0.4.x to 0.5.x

### Upgrading dependencies

This release adds support for Laravel 11. This package now also requires `inertiajs/inertia-laravel: ^1.0`.

### Custom shared key

@squiaios added the ability to change the prop key used to share the breadcrumbs.
By default these are shared using the `breadcrumbs` key.
It's recommended to keep your config up-to-date with this change:

```diff
return [
'middleware' => [
// ...
+
+ /**
+ * The key of shared breadcrumbs
+ */
+ 'key' => 'breadcrumbs',
],
];
```

## From 0.3.x to 0.4.x

### Query string is now ignored when determining the current URL (#9)
Expand Down

0 comments on commit ba9c478

Please sign in to comment.