14
0

- update to 2.17.0:

- add warnings for regexes containing `[\\/]`.
  - upgrade supported ruby versions.
  - allow `language: conda` to use `mamba` or `micromamba` via
    `PRE_COMMIT_USE_MAMBA=1` or `PRE_COMMIT_USE_MICROMAMBA=1` respectively.
  - display `git --version` in error report.
  - add `language: lua` as a supported language.
  - temporarily add `setuptools` to the zipapp.
  - use `go install` instead of `go get` for go 1.18+ support.
  - fix `language: r` with a local renv and `RENV_PROJECT` set.
  - forbid overriding `entry` in `language: meta` hooks which breaks them.
  - always use `#!/bin/sh` on windows for hook script.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pre-commit?expand=0&rev=15
This commit is contained in:
2022-03-26 19:50:57 +00:00
committed by Git OBS Bridge
parent e397b774d0
commit a9a6c08f03
4 changed files with 24 additions and 4 deletions

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Sat Mar 26 19:25:34 UTC 2022 - Dirk Müller <dmueller@suse.com>
- update to 2.17.0:
- add warnings for regexes containing `[\\/]`.
- upgrade supported ruby versions.
- allow `language: conda` to use `mamba` or `micromamba` via
`PRE_COMMIT_USE_MAMBA=1` or `PRE_COMMIT_USE_MICROMAMBA=1` respectively.
- display `git --version` in error report.
- add `language: lua` as a supported language.
- temporarily add `setuptools` to the zipapp.
- use `go install` instead of `go get` for go 1.18+ support.
- fix `language: r` with a local renv and `RENV_PROJECT` set.
- forbid overriding `entry` in `language: meta` hooks which breaks them.
- always use `#!/bin/sh` on windows for hook script.
-------------------------------------------------------------------
Tue Jan 11 01:29:44 UTC 2022 - Steve Kowalik <steven.kowalik@suse.com>