Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 17, 2026

This PR contains the following updates:

Package Type Update Change
google/yamlfmt repository minor v0.19.0v0.21.0
renovatebot/pre-commit-hooks repository minor 42.78.242.84.0
zizmorcore/zizmor-pre-commit repository minor v1.20.0v1.22.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

google/yamlfmt (google/yamlfmt)

v0.21.0

Compare Source

Sorry to folks who were likely waiting on the stuff in this release, it's pretty packed. I got sick in December and took my holiday leave early, and I decided to fully and completely disconnect. Lots of stuff packed into this one now that I'm back. Happy new year!

Features

Force single or double quotes #​288

You can now force all quoted strings in a yaml document to be ' or ". See the basic formatter docs for more info.

KYAML Formatter #​302

yamlfmt can now support the new KYAML format from the Kubernetes project. The support for this is via a new formatter type called kyaml. I built support for alternate formatters into the architecture of yamlfmt all the way back when I first started the tool, but this is the first time I'm actually publishing a new formatter. I recommend a full read of the formatter documentation to get a sense of how to use this alternate formatter.

Bug Fixes

Gitlab output format #​272

I don't use Gitlab and didn't implement the feature so I'm not sure if this has been broken the whole time or if there was a schema change somewhere that bricked it, but Gitlab output format from yamlfmt was missing some required fields. This should work now with the new fields added into the output schema.

/dev/stdin as an argument instead of - did not work #​291

You're only allowed to read from stdin once in POSIX, but I inadvertently had a codepath that would read the file for a different purpose before reading it for formatting. This caused yamlfmt not to work under that circumstance. This edge case is handled now.

Filepath collector panic #​300

In a scenario where filepath.Walk fails to read something from the filesystem, I wasn't handling the error case properly. This never came up because I never had an error case ever appear locally and the linter that would yell at me about missed error checks didn't pick up that particular pattern that filepath.Walk propogates errors with. There should no longer be panics in error scenarios; new behaviour is that paths that failed to read will be surfaced and all other successful reads will be formatted.

Contributions

Thanks to @​slipknois for fixing the Gitlab output format.

v0.20.0

Compare Source

Features

-version flag works when using go install

The previous method of version retrieval only worked when downloading the binary through GitHub releases or one of the community-made packages. When using go install, the version would always be dev because the ldflags weren't being used to set the version. It now falls back to debug.BuildInfo so that the version will be displayed properly when installing through this method.

Fixes

Performance Issues when formatting large files

Details in #​283. Two fixes were submitted:

  • Use of strings.Repeat instead of manually looping during string construction #​284
  • Changing logic to only construct a diff string when the debug code is active #​287

If you have experienced similar performance issues, these fixes should help.

Contributors

Thanks @​artur-beznosyuk-verkada for the performance issue analysis and the strings.Repeat fix.

renovatebot/pre-commit-hooks (renovatebot/pre-commit-hooks)

v42.84.0

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.84.0 for more changes

v42.83.3

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.83.3 for more changes

v42.83.2

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.83.2 for more changes

v42.83.1

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.83.1 for more changes

v42.83.0

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.83.0 for more changes

v42.82.3

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.82.3 for more changes

v42.82.2

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.82.2 for more changes

v42.82.1

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.82.1 for more changes

v42.82.0

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.82.0 for more changes

v42.81.16

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.81.16 for more changes

v42.81.15

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.81.15 for more changes

v42.81.14

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.81.14 for more changes

v42.81.13

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.81.13 for more changes

v42.81.11

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.81.11 for more changes

v42.81.9

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.81.9 for more changes

v42.81.8

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.81.8 for more changes

v42.81.7

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.81.7 for more changes

v42.81.6

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.81.6 for more changes

v42.81.5

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.81.5 for more changes

v42.81.4

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.81.4 for more changes

v42.81.3

Compare Source

v42.81.2

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.81.2 for more changes

v42.81.1

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.81.1 for more changes

v42.81.0

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.81.0 for more changes

v42.80.3

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.80.3 for more changes

v42.80.2

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.80.2 for more changes

v42.80.1

Compare Source

v42.80.0

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.80.0 for more changes

v42.79.2

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.79.2 for more changes

v42.79.1

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.79.1 for more changes

v42.79.0

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/42.79.0 for more changes

zizmorcore/zizmor-pre-commit (zizmorcore/zizmor-pre-commit)

v1.22.0

Compare Source

See: https://github.com/zizmorcore/zizmor/releases/tag/v1.22.0

v1.21.0

Compare Source

See: https://github.com/zizmorcore/zizmor/releases/tag/v1.21.0


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 added the dependencies Pull requests that update a dependency file label Jan 17, 2026
@codecov
Copy link

codecov bot commented Jan 17, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 68.70%. Comparing base (9577b53) to head (2ec70f7).
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #906   +/-   ##
=======================================
  Coverage   68.70%   68.70%           
=======================================
  Files          45       45           
  Lines         620      620           
=======================================
  Hits          426      426           
  Misses        194      194           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@ulgens ulgens merged commit 140ca4d into main Jan 17, 2026
4 checks passed
@ulgens ulgens deleted the renovate/pre-commit-dependencies branch January 17, 2026 12:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant