Skip to content

Releases: glhd/laravel-dumper

2.0.0

16 Dec 03:35
Compare
Choose a tag to compare

Changes in Laravel 9.32 broke the way laravel-dumper registered custom casters. This release registers casters before Laravel boots to get around that change. Unfortunately, until laravel/framework#49402 gets merged, this change will only work for some classes.

There should be no backwards-incompatible changes in this release, but I'm marking it as 2.0 because this change does mean that userland custom casters are no longer supported.

1.1.0

17 Feb 21:16
Compare
Choose a tag to compare

Added Laravel 10 support

1.0.1

10 Feb 01:18
Compare
Choose a tag to compare

Fixed

  • Fixed how bindings are merged into SQL queries when dumping a query builder

1.0.0

24 Jan 14:54
Compare
Choose a tag to compare

No new features added since the 0.5.0 release. Everything is well-tested and the API seems stable, so we're releasing the 1.0 version!

0.5.0

23 Jan 01:43
Compare
Choose a tag to compare
0.5.0 Pre-release
Pre-release

Changed

  • Removed the LaravelDumper facade in favor of registering custom casters directly

Upgrading

If you were using the LaravelDumper::for() method, you need to replace it with a direct call to the CustomCaster class. The API is exactly the same—you simply need to import a different class name. See the README for more details.

0.4.0

23 Jan 00:44
Compare
Choose a tag to compare
0.4.0 Pre-release
Pre-release

Added

  • Added Laravel 9 support

0.3.0

21 Jan 19:32
9341e04
Compare
Choose a tag to compare
0.3.0 Pre-release
Pre-release

Added

  • Added support for dynamic custom casters
  • Added LaravelDumper facade
  • Added custom Properties collection for easier manipulation of dumped properties

Changed

  • Changed Caster interface to use Properties collection
  • Updated all casters to use new Properties collection

0.2.0

21 Jan 13:49
Compare
Choose a tag to compare
0.2.0 Pre-release
Pre-release

Added

  • Added ddf() and dumpf() for access to original dd() and dump() behavior

0.1.0

19 Jan 15:40
Compare
Choose a tag to compare
0.1.0 Pre-release
Pre-release

Added

  • Added support for Requests and Responses
  • Added support for ParameterBags
  • Added support for HeaderBags

Changed

  • Improved tests

0.0.1

19 Jan 03:35
Compare
Choose a tag to compare
0.0.1 Pre-release
Pre-release

Initial concept