This package now supports PHP >= 8.2 and Laravel >= 11. Deprecated code has been removed.
Breaking Change
If you are using custom auditing, you will almost definitely need to change Event::dispatch(AuditCustom::class, [$yourModel]);
to Event::dispatch(new AuditCustom($yourModel));
What's Changed
- 🔧 drop php < 8.2 and add laravel 12 by @willpower232 in #1006
- Remove v13 deprecations by @erikn69 in #1007
- Fix null return in UserAgentResolver by @phknot in #1010
- Allow for creating an Auditable model even if application is not spun up by @cosmastech in #962
- Fix tests on pull requests by @erikn69 in #1012
- Support for auditSync and auditDetach on Auditable custom Pivot class by @txdFrancesco in #954
New Contributors
- @phknot made their first contribution in #1010
- @txdFrancesco made their first contribution in #954
Full Changelog: v13.7.0...v14.0.0