Skip to content

Releases: diglactic/laravel-breadcrumbs

v9.0.0

12 Mar 00:42
88e8f01
Compare
Choose a tag to compare

Add support for Laravel 11.x. See the upgrade guide for details.

v8.1.1

17 Apr 23:32
Compare
Choose a tag to compare

Update PHPDoc tags + other cosmetic housekeeping with help from @Oleksandr-Moik 🚀

v8.1.0

06 Feb 22:49
Compare
Choose a tag to compare

Add support for Laravel 10.x, courtesy of @SamuelNitsche! 🙌

v8.0.1

02 Sep 16:29
b2c594e
Compare
Choose a tag to compare

Great catch by @mad-briller for finding a DocBlock still listing the deprecated ::for method 🙌

v8.0.0

27 Jul 07:00
2d21326
Compare
Choose a tag to compare

A mix between a bug fix and feature change, this release updates how we pull in and pass route parameters to breadcrumb closures to prevent unexpected results when setting parameters via middleware. This is ultimately a breaking change, as it excludes passing parameters set via middleware altogether.

See this PR comment for more details.

Thanks, @jaulz!

v7.2.0

03 May 05:44
Compare
Choose a tag to compare

Allow Blade templates to be published by running php artisan vendor:publish --tag=breadcrumbs-views.

You rock, @nasrulhazim!

v7.1.1

12 Jan 18:21
Compare
Choose a tag to compare

Add support for Laravel 9.x. Thanks, @freekmurze!

v7.0.0

23 May 16:58
Compare
Choose a tag to compare

Chainable calls are here! Combined with arrow functions in PHP 7.4, you can now use the following elegant syntax:

<?php

use Diglactic\Breadcrumbs\Breadcrumbs;
use Diglactic\Breadcrumbs\Generator as BreadcrumbTrail;

Breadcrumbs::for(
    'post',
    fn (BreadcrumbTrail $trail, Post $post) => $trail
        ->parent('blog')
        ->push($post->title, route('post', $post))
);

Thanks to @tabuna for the original PR.

7.x also introduces some breaking housekeeping changes. Take a moment to review the upgrade guide.

v6.1.1

12 Apr 22:59
8f73674
Compare
Choose a tag to compare
  • Informed Composer of incompatibility with davejamesmiller/laravel-breadcrumbs package. Thanks, lloricode! 🚀

v6.1.0

25 Jan 18:45
0271785
Compare
Choose a tag to compare
  • Added support for Bootstrap 5. Thanks, Kvaksrud! 🎉