-
-
Notifications
You must be signed in to change notification settings - Fork 732
Comparing changes
Open a pull request
base repository: pre-commit/pre-commit-hooks
base: v3.1.0
head repository: pre-commit/pre-commit-hooks
compare: v3.2.0
- 12 commits
- 32 files changed
- 5 contributors
Commits on May 20, 2020
-
Configuration menu - View commit details
-
Copy full SHA for f35bfed - Browse repository at this point
Copy the full SHA f35bfedView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0e509dd - Browse repository at this point
Copy the full SHA 0e509ddView commit details
Commits on May 27, 2020
-
slightly speed up tests by avoiding pre-commit install
Committed via https://github.com/asottile/all-repos
Configuration menu - View commit details
-
Copy full SHA for 1da4a7f - Browse repository at this point
Copy the full SHA 1da4a7fView commit details -
Merge pull request #491 from pre-commit/all-repos_autofix_faster-tests
slightly speed up tests by avoiding pre-commit install
Configuration menu - View commit details
-
Copy full SHA for f0bf512 - Browse repository at this point
Copy the full SHA f0bf512View commit details
Commits on Jun 17, 2020
-
Configuration menu - View commit details
-
Copy full SHA for c14b3aa - Browse repository at this point
Copy the full SHA c14b3aaView commit details
Commits on Jun 19, 2020
-
Document the default always_run behaviour of no-commit-to-branch
Include instructions on how to use files/types/excludes/exclude_types with the no-commit-to-branch hook, along with the caveat of it allowing empty commits
Configuration menu - View commit details
-
Copy full SHA for b469434 - Browse repository at this point
Copy the full SHA b469434View commit details -
Merge pull request #501 from marcjay/document-no-commit-to-branch-alw…
…ays-run Document the default always_run behaviour of no-commit-to-branch
Configuration menu - View commit details
-
Copy full SHA for f7dd0c0 - Browse repository at this point
Copy the full SHA f7dd0c0View commit details
Commits on Jul 1, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 53a05b9 - Browse repository at this point
Copy the full SHA 53a05b9View commit details
Commits on Jul 2, 2020
-
Merge pull request #502 from jgeerds/feature/catch-pydevd-pycharm-deb…
…ug-statement debug-statements: Add "pydevd_pycharm" to list of debug statements
Configuration menu - View commit details
-
Copy full SHA for 5372f44 - Browse repository at this point
Copy the full SHA 5372f44View commit details
Commits on Jul 30, 2020
-
Fix parsing of git output with unusual characters
On Windows, all files are "executable". Therefore, to know if a file is supposed to be executed, we check how its attributes were recorded by git: we run a `git ls-files` command in a subprocess. By default, this command outputs information on multiple lines (file and their data separated by newlines). When a file contains an unusual character, the character is escaped with an integer sequence (such as `\303\261`), and git wraps the whole filename in double-quotes because of the backslashes. It breaks the current code because we try to open the filename containing the double-quotes: it doesn't exist, of course. Instead of trying to fix this special case by removing the double-quotes, and breaking other cases (a double-quote is a valid filename character on Linux), we tell git to separate each item with the null character `\0` instead of a new line `\n`, with the option `-z`. With this option, git doesn't escape unusual characters with integer sequence, so the output is fixed, and we parse it by splitting on `\0` instead of `\n`. Fixes #508.
Configuration menu - View commit details
-
Copy full SHA for 4faed34 - Browse repository at this point
Copy the full SHA 4faed34View commit details -
Merge pull request #509 from pawamoy/patch-1
Fix parsing of git output with unusual characters
Configuration menu - View commit details
-
Copy full SHA for 9eab799 - Browse repository at this point
Copy the full SHA 9eab799View commit details -
Configuration menu - View commit details
-
Copy full SHA for e1668fe - Browse repository at this point
Copy the full SHA e1668feView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v3.1.0...v3.2.0