|
2 | 2 |
|
3 | 3 | ## master (unreleased)
|
4 | 4 |
|
5 |
| -* Fix bug where amending a commit with command line arguments containing |
6 |
| - Unicode characters could cause a crash due to invalid byte sequences |
| 5 | +### New Features |
| 6 | + |
| 7 | +* Hooks are now run in parallel by default |
| 8 | +* Add `concurrency` global option allowing you to specify the number of threads |
| 9 | + to use when running hooks concurrently |
| 10 | +* Add `parallelize` hook option which specifies whether or not this hook should |
| 11 | + be run in parallel (default is `true`) |
| 12 | +* Add `processors` hook option allowing you to specify how many processing |
| 13 | + units a hook should require |
7 | 14 | * Add `ForbiddenBranches` pre-commit hook which prevents creating a commit
|
8 | 15 | on any blacklisted branch by name/pattern
|
9 |
| -* Improve error message output when there is a problem processing messages |
10 |
| - via `extract_messages` pre-commit hook helper |
11 |
| -* Fix `Minitest` pre-push hook to include all test files |
12 | 16 | * Add `MessageFormat` commit-msg hook to validate commit messages against
|
13 | 17 | a regex pattern
|
| 18 | + |
| 19 | +### Changes |
| 20 | + |
| 21 | +* Improve error message output when there is a problem processing messages |
| 22 | + via `extract_messages` pre-commit hook helper |
14 | 23 | * Switch `ScssLint` pre-commit hook to use the JSON output formatter instead
|
15 | 24 | of the default formatter
|
16 | 25 | * Change tense of hook descriptions from progressive indicative form ("Running")
|
17 | 26 | to indicative present form ("Run") so output reads better in parallel hook
|
18 | 27 | runs
|
19 | 28 |
|
| 29 | +### Bug Fixes |
| 30 | + |
| 31 | +* Fix bug where amending a commit with command line arguments containing |
| 32 | + Unicode characters could cause a crash due to invalid byte sequences |
| 33 | +* Fix `Minitest` pre-push hook to include all test files |
| 34 | + |
20 | 35 | ## 0.32.0.rc1
|
21 | 36 |
|
22 | 37 | * Add `concurrency` global option allowing you to specify the number of threads
|
|
0 commit comments