Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update pre-commit hook zricethezav/gitleaks to v8.24.0 #20

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented May 28, 2022

This PR contains the following updates:

Package Type Update Change
zricethezav/gitleaks repository minor v8.8.4 -> v8.24.0

Note: The pre-commit manager in Renovate is not supported by the pre-commit maintainers or community. Please do not report any problems there, instead create a Discussion in the Renovate repository if you have any questions.


Release Notes

zricethezav/gitleaks (zricethezav/gitleaks)

v8.24.0

Compare Source

Changelog

v8.23.3

Compare Source

Changelog

v8.23.2

Compare Source

Changelog

v8.23.1

Compare Source

Changelog

v8.23.0

Compare Source

Changelog

READ THIS!!! The default gitleaks config now uses [[rules.allowlists]]

### ⚠️ In v8.21.0 `[rules.allowlist]` was replaced with `[[rules.allowlists]]`.
### This change was backwards-compatible: instances of `[rules.allowlist]` still  work.
    #

### You can define multiple allowlists for a rule to reduce false positives.
### A finding will be ignored if _ANY_ `[[rules.allowlists]]` matches.
    [[rules.allowlists]]
    description = "ignore commit A"

### When multiple criteria are defined the default condition is "OR".
### e.g., this can match on |commits| OR |paths| OR |stopwords|.
    condition = "OR"
    commits = [ "commit-A", "commit-B"]
    paths = [
      '''go\.mod''',
      '''go\.sum'''
    ]

### note: stopwords targets the extracted secret, not the entire regex match
### like 'regexes' does. (stopwords introduced in 8.8.0)
    stopwords = [
      '''client''',
      '''endpoint''',
    ]

    [[rules.allowlists]]

### The "AND" condition can be used to make sure all criteria match.
### e.g., this matches if |regexes| AND |paths| are satisfied.
    condition = "AND"

### note: |regexes| defaults to check the _Secret_ in the finding.
### Acceptable values for |regexTarget| are "secret" (default), "match", and "line".
    regexTarget = "match"
    regexes = [ '''(?i)parseur[il]''' ]
    paths = [ '''package-lock\.json''' ]

v8.22.1

Compare Source

Changelog

v8.22.0

Compare Source

Changelog


This bumps the gitleaks binary size from around 8.5MB to 15MB but yields 2-4x speedup. Worth it imo. If you feel strongly against this change feel free to open an issue where we can discuss the tradeoffs in more depth. Credit to @​ahrav

v8.21.4

Compare Source

Changelog

v8.21.3

Compare Source

Changelog

v8.21.2

Compare Source

Changelog

v8.21.1

Compare Source

Changelog

v8.21.0

Compare Source

Changelog

respect @​rgmz @​9999years

⚠️ Note: you may find some findings that were previously ignored if using .gitleaksignore pop up in your scans. This is due to a fix for a long standing bug where gitleaks would incorrectly report merge commit SHAs instead of the actual commit where a secret was introduced. See the following issues for more context:

v8.20.1

Compare Source

Changelog

v8.20.0

Compare Source

Changelog

Huge huge thanks to @​bplaxco for supporting b64 decoding, @​recreator66 for bug fixes, and to @​rgmz for his continued support of the project in the form of PRs and reviews. Thanks you!

New Feature: Decoding

Sometimes secrets are encoded in a way that can make them difficult to find
with just regex. Now you can tell gitleaks to automatically find and decode
encoded text. The flag --max-decode-depth enables this feature (the default
value "0" means the feature is disabled by default).

Recursive decoding is supported since decoded text can also contain encoded
text. The flag --max-decode-depth sets the recursion limit. Recursion stops
when there are no new segments of encoded text to decode, so setting a really
high max depth doesn't mean it will make that many passes. It will only make as
many as it needs to decode the text. Overall, decoding only minimally increases
scan times.

The findings for encoded text differ from normal findings in the following
ways:

  • The location points the bounds of the encoded text
    • If the rule matches outside the encoded text, the bounds are adjusted to
      include that as well
  • The match and secret contain the decoded value
  • Two tags are added decoded:<encoding> and decode-depth:<depth>

Currently supported encodings:

  • base64 (both standard and base64url)

v8.19.3

Compare Source

Changelog

v8.19.2

Compare Source

Changelog

v8.19.1

Compare Source

Changelog

v8.19.0

Compare Source

Changelog

v8.18.4

Compare Source

Changelog

Shout out to @​coderabbit for their sponsorship!

v8.18.3

Compare Source

Changelog

v8.18.2

Compare Source

Changelog

v8.18.1

Compare Source

Changelog

v8.18.0

Compare Source

What's Changed

New Contributors

Full Changelog: gitleaks/gitleaks@v8.17.0...v8.18.0

v8.17.0

Compare Source

What's Changed

New Contributors

Full Changelog: gitleaks/gitleaks@v8.16.4...v8.17.0

v8.16.4

Compare Source

Changelog


Configuration

📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.8.5 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.8.6 May 28, 2022
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from cd17387 to f802098 Compare May 28, 2022 20:05
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.8.6 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.8.7 Jun 3, 2022
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from f802098 to f236df8 Compare June 3, 2022 00:07
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from f236df8 to 59efce3 Compare June 20, 2022 23:51
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.8.7 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.8.8 Jun 20, 2022
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from 59efce3 to 59015fd Compare June 27, 2022 19:25
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.8.8 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.8.9 Jun 27, 2022
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from 59015fd to 1e86050 Compare June 27, 2022 22:47
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.8.9 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.8.10 Jun 27, 2022
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from 1e86050 to 12dec77 Compare June 28, 2022 14:49
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.8.10 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.8.11 Jun 28, 2022
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.8.11 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.11.2 Sep 2, 2022
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from 12dec77 to aaf7afb Compare September 2, 2022 11:12
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from aaf7afb to 33c2fff Compare September 25, 2022 18:12
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.11.2 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.13.0 Sep 25, 2022
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from 33c2fff to 0b67f0b Compare November 20, 2022 19:19
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.13.0 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.15.1 Nov 20, 2022
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.15.1 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.16.0 Mar 11, 2023
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from 0b67f0b to 56a4d7a Compare March 11, 2023 16:45
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.16.0 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.16.1 Mar 18, 2023
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from 56a4d7a to 3188a63 Compare March 18, 2023 02:09
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.16.1 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.16.3 Jun 1, 2023
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from 3188a63 to 492a78b Compare June 1, 2023 20:35
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from 492a78b to 37affee Compare June 10, 2023 08:20
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.16.3 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.16.4 Jun 10, 2023
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.16.4 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.17.0 Jun 16, 2023
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from 37affee to 0269dbf Compare June 16, 2023 05:53
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.17.0 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.18.0 Aug 23, 2023
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from 0269dbf to 299df75 Compare August 23, 2023 02:39
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.19.1 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.19.2 Sep 17, 2024
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from 126eb20 to 450f428 Compare September 27, 2024 05:29
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.19.2 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.19.3 Sep 27, 2024
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from 450f428 to bce0a50 Compare October 4, 2024 02:59
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.19.3 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.20.0 Oct 4, 2024
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from bce0a50 to 7e7ec89 Compare October 8, 2024 02:57
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.20.0 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.20.1 Oct 8, 2024
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from 7e7ec89 to 94ca784 Compare October 16, 2024 06:01
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.20.1 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.21.0 Oct 16, 2024
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from 94ca784 to 8d793b9 Compare October 20, 2024 05:25
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.21.0 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.21.1 Oct 20, 2024
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from 8d793b9 to b24982e Compare October 30, 2024 20:40
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.21.1 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.21.2 Oct 30, 2024
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from b24982e to 0085e5f Compare December 20, 2024 02:55
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.21.2 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.21.3 Dec 20, 2024
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from 0085e5f to 53c3299 Compare December 21, 2024 23:46
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.21.3 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.22.0 Dec 21, 2024
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from 53c3299 to 7071b61 Compare December 31, 2024 05:54
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.22.0 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.22.1 Dec 31, 2024
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from 7071b61 to 5af18b0 Compare January 15, 2025 07:59
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.22.1 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.23.0 Jan 15, 2025
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from 5af18b0 to 436a393 Compare January 17, 2025 07:28
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.23.0 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.23.1 Jan 17, 2025
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from 436a393 to f35f114 Compare January 25, 2025 02:57
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.23.1 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.23.2 Jan 25, 2025
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from f35f114 to eda5088 Compare January 31, 2025 03:18
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.23.2 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.23.3 Jan 31, 2025
@renovate renovate bot force-pushed the renovate/zricethezav-gitleaks-8.x branch from eda5088 to 11a6ba3 Compare February 20, 2025 04:01
@renovate renovate bot changed the title chore(deps): update pre-commit hook zricethezav/gitleaks to v8.23.3 chore(deps): update pre-commit hook zricethezav/gitleaks to v8.24.0 Feb 20, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants