Releases: glhd/laravel-dumper
Releases · glhd/laravel-dumper
2.0.0
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
1.0.1
1.0.0
0.5.0
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
0.3.0
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 useProperties
collection - Updated all casters to use new
Properties
collection