2.0.0
Upgrade guide
You can no longer call SqlCommenter::addComment
statically, you now need to fetch the commenter instance from the container or have it dependency injected into your code.
- SqlCommenter::addComment('My comment');
+ app(SqlCommenter::class)->addComment('My comment');
What's Changed
- Bump spatie/invade version to 2.0 by @vigneshgurusamy in #19
- Add support for laravel 11 by @shuvroroy in #20
- Add Octane compatibility by @riasvdv in #22
New Contributors
- @shuvroroy made their first contribution in #20
- @riasvdv made their first contribution in #22
Full Changelog: 1.4.0...2.0.0