mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-04-13 06:24:16 +00:00
v4.1.0
This commit is contained in:
parent
714bb60f15
commit
8fe62d14e0
4 changed files with 34 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
repos:
|
repos:
|
||||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
rev: v4.0.1
|
rev: v4.1.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: trailing-whitespace
|
- id: trailing-whitespace
|
||||||
- id: end-of-file-fixer
|
- id: end-of-file-fixer
|
||||||
|
|
|
||||||
31
CHANGELOG.md
31
CHANGELOG.md
|
|
@ -1,3 +1,34 @@
|
||||||
|
4.1.0 - 2021-12-22
|
||||||
|
==================
|
||||||
|
|
||||||
|
### Features
|
||||||
|
- `debug-statements`: add `pdbr` debugger.
|
||||||
|
- #614 PR by @cansarigol.
|
||||||
|
- `detect-private-key`: add detection for additional key types.
|
||||||
|
- #658 PR by @ljmf00.
|
||||||
|
- `check-executables-have-shebangs`: improve messaging on windows.
|
||||||
|
- #689 PR by @pujitm.
|
||||||
|
- #686 issue by @jmerdich.
|
||||||
|
- `check-added-large-files`: support `--enforce-all` with `git-lfs`.
|
||||||
|
- #674 PR by @amartani.
|
||||||
|
- #560 issue by @jeremy-coulon.
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
- `check-case-conflict`: improve performance.
|
||||||
|
- #626 PR by @guykisel.
|
||||||
|
- #625 issue by @guykisel.
|
||||||
|
- `forbid-new-submodules`: fix false-negatives for `pre-push`.
|
||||||
|
- #619 PR by @m-khvoinitsky.
|
||||||
|
- #609 issue by @m-khvoinitsky.
|
||||||
|
- `check-merge-conflict`: fix execution in git worktrees.
|
||||||
|
- #662 PR by @errsyn.
|
||||||
|
- #638 issue by @daschuer.
|
||||||
|
|
||||||
|
### Misc.
|
||||||
|
- Normalize case of hook names and descriptions.
|
||||||
|
- #671 PR by @dennisroche.
|
||||||
|
- #673 PR by @revolter.
|
||||||
|
|
||||||
4.0.1 - 2021-05-16
|
4.0.1 - 2021-05-16
|
||||||
==================
|
==================
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ Add this to your `.pre-commit-config.yaml`
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
rev: v4.0.1 # Use the ref you want to point at
|
rev: v4.1.0 # Use the ref you want to point at
|
||||||
hooks:
|
hooks:
|
||||||
- id: trailing-whitespace
|
- id: trailing-whitespace
|
||||||
# - id: ...
|
# - id: ...
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[metadata]
|
[metadata]
|
||||||
name = pre_commit_hooks
|
name = pre_commit_hooks
|
||||||
version = 4.0.1
|
version = 4.1.0
|
||||||
description = Some out-of-the-box hooks for pre-commit.
|
description = Some out-of-the-box hooks for pre-commit.
|
||||||
long_description = file: README.md
|
long_description = file: README.md
|
||||||
long_description_content_type = text/markdown
|
long_description_content_type = text/markdown
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue