Releases: zachleigh/laravel-property-bag
Releases · zachleigh/laravel-property-bag
Version 1.4.1
Version 1.4.0
- Drop support for PHP 7.1
- Add support for Laravel 6
Version 1.3.4
- Add support for Laravel 5.8
- Minor doc block improvements
Version 1.3.3
- Add withSettings method to HasSettings trait. Thanks @luizvid!
Version 1.3.2
- Update dependencies, Laravel 5.7 support
Version 1.3.1
- Allow models to use user specified primary key (thanks @Dartanjan!)
Version 1.3.0
- Optimize queries by eager loading property bag relationships (thanks @tzurbaev!)
- Update dependencies, Laravel 5.6 support
- Drop support for PHP 7.0
Version 1.2.1
- Add package auto discovery (thanks @kduma!)
- Update dependencies
Version 1.2.0
- Dropped support for PHP 5.6.
- Added support for PHP 7.2.
- New setSettingsByRequest method to set allowed settings directly from a request. (Thanks @AlexHupe!)
Version 1.1.2
- Thanks to @tzurbaev you can now access the failed key name when an
InvalidSettingsException
is thrown. Use$e->getFailedKey()
to access the key when catching the exception. - Minor fixes and improvements.