A full upgrade to support the latest versions of all the packages involved. I've also updated the processes according to the original template.
The new version should behave the same but with slightly cleaner code and the latest of every dependency.
Breaking Change
The only breaking change in this update is to the filter-patterns input. The patterns are now just text entries instead of JSON objects.
Before
file-patterns: |
ADDED: {"pattern": "A\t"}
CHANGED: {"pattern": "M\t"}
DELETED: {"pattern": "D\t"}After
file-patterns: |
ADDED: "A\t"
CHANGED: "M\t"
DELETED: "D\t"Full Changelog: v0.4.0...v1.0.0