Version 2.19.0
What's Changed
- Bump actions/cache from 4 to 5 by @dependabot[bot] in #1201
- Require --raw diffs for gitlib by @veewee in #1207
Upgrading
❗ Requires re-initialization from git hooks
In the new version of our dependency gitlib, you need to pass the --raw option to the git diff that is being parsed by the pre-commit hooks. This means you'll need to change your git hook after upgrading:
./vendor/bin/grumphp git:initIf you are using a custom hook, make sure to add the --raw parameter to git diff first:
DIFF=$(git -c diff.mnemonicprefix=false -c diff.noprefix=false --no-pager diff --raw -r -p -m -M --full-index --no-color --staged | cat)
Full Changelog: v2.18.0...v2.19.0