Commit 97312f4
authored
Build: Bump prek from 0.2.27 to 0.2.30 (#2925)
Bumps [prek](https://github.com/j178/prek) from 0.2.27 to 0.2.30.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/j178/prek/releases">prek's
releases</a>.</em></p>
<blockquote>
<h2>0.2.30</h2>
<h2>Release Notes</h2>
<p>Released on 2026-01-18.</p>
<h3>Enhancements</h3>
<ul>
<li>Build binaries using minimal-size profile (<a
href="https://redirect.github.com/j178/prek/pull/1376">#1376</a>)</li>
<li>Check for duplicate keys in <code>check-json5</code> builtin hook
(<a
href="https://redirect.github.com/j178/prek/pull/1387">#1387</a>)</li>
<li>Preserve quoting style in <code>auto-update</code> (<a
href="https://redirect.github.com/j178/prek/pull/1379">#1379</a>)</li>
<li>Show warning if file lock acquiring blocks for long time (<a
href="https://redirect.github.com/j178/prek/pull/1353">#1353</a>)</li>
<li>Singleflight Python health checks with cached interpreter info (<a
href="https://redirect.github.com/j178/prek/pull/1381">#1381</a>)</li>
</ul>
<h3>Bug fixes</h3>
<ul>
<li>Do not resolve entry for docker_image (<a
href="https://redirect.github.com/j178/prek/pull/1386">#1386</a>)</li>
<li>Fix command lookup on Windows (<a
href="https://redirect.github.com/j178/prek/pull/1383">#1383</a>)</li>
</ul>
<h3>Documentation</h3>
<ul>
<li>Document language support details (<a
href="https://redirect.github.com/j178/prek/pull/1380">#1380</a>)</li>
<li>Document that <code>check-json5</code> now rejects duplicate keys
(<a
href="https://redirect.github.com/j178/prek/pull/1391">#1391</a>)</li>
</ul>
<h3>Contributors</h3>
<ul>
<li><a href="https://github.com/j178"><code>@j178</code></a></li>
</ul>
<h2>Install prek 0.2.30</h2>
<h3>Install prebuilt binaries via shell script</h3>
<pre lang="sh"><code>curl --proto '=https' --tlsv1.2 -LsSf
https://github.com/j178/prek/releases/download/v0.2.30/prek-installer.sh
| sh
</code></pre>
<h3>Install prebuilt binaries via powershell script</h3>
<pre lang="sh"><code>powershell -ExecutionPolicy Bypass -c "irm
https://github.com/j178/prek/releases/download/v0.2.30/prek-installer.ps1
| iex"
</code></pre>
<h3>Install prebuilt binaries via Homebrew</h3>
<pre lang="sh"><code>brew install j178/tap/prek
</code></pre>
<h3>Install prebuilt binaries into your npm project</h3>
<pre lang="sh"><code></tr></table>
</code></pre>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/j178/prek/blob/master/CHANGELOG.md">prek's
changelog</a>.</em></p>
<blockquote>
<h2>0.2.30</h2>
<p>Released on 2026-01-18.</p>
<h3>Enhancements</h3>
<ul>
<li>Build binaries using minimal-size profile (<a
href="https://redirect.github.com/j178/prek/pull/1376">#1376</a>)</li>
<li>Check for duplicate keys in <code>check-json5</code> builtin hook
(<a
href="https://redirect.github.com/j178/prek/pull/1387">#1387</a>)</li>
<li>Preserve quoting style in <code>auto-update</code> (<a
href="https://redirect.github.com/j178/prek/pull/1379">#1379</a>)</li>
<li>Show warning if file lock acquiring blocks for long time (<a
href="https://redirect.github.com/j178/prek/pull/1353">#1353</a>)</li>
<li>Singleflight Python health checks with cached interpreter info (<a
href="https://redirect.github.com/j178/prek/pull/1381">#1381</a>)</li>
</ul>
<h3>Bug fixes</h3>
<ul>
<li>Do not resolve entry for docker_image (<a
href="https://redirect.github.com/j178/prek/pull/1386">#1386</a>)</li>
<li>Fix command lookup on Windows (<a
href="https://redirect.github.com/j178/prek/pull/1383">#1383</a>)</li>
</ul>
<h3>Documentation</h3>
<ul>
<li>Document language support details (<a
href="https://redirect.github.com/j178/prek/pull/1380">#1380</a>)</li>
<li>Document that <code>check-json5</code> now rejects duplicate keys
(<a
href="https://redirect.github.com/j178/prek/pull/1391">#1391</a>)</li>
</ul>
<h3>Contributors</h3>
<ul>
<li><a href="https://github.com/j178"><code>@j178</code></a></li>
</ul>
<h2>0.2.29</h2>
<p>Released on 2026-01-16.</p>
<h3>Highlights</h3>
<p><code>files</code> / <code>exclude</code> now support globs
(including glob lists), making config filters much easier to read and
maintain than heavily-escaped regex.</p>
<p>Before (regex):</p>
<pre lang="yaml"><code>files:
"^(src/.*\\.rs$|crates/[^/]+/src/.*\\.rs$)"
</code></pre>
<p>After (glob list):</p>
<pre lang="yaml"><code>files:
glob:
- src/**/*.rs
- crates/**/src/**/*.rs
</code></pre>
<h3>Enhancements</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/j178/prek/commit/6f53870934f0b0d4f59016bcc8422cc6b4e3e38e"><code>6f53870</code></a>
Fix docker build command (<a
href="https://redirect.github.com/j178/prek/issues/1395">#1395</a>)</li>
<li><a
href="https://github.com/j178/prek/commit/300cae9d558b8314cf2db39237caac8ec9c2753c"><code>300cae9</code></a>
Fix docker build command (<a
href="https://redirect.github.com/j178/prek/issues/1393">#1393</a>)</li>
<li><a
href="https://github.com/j178/prek/commit/de647489eac97615adb630c7bc1eaed06ac3e1ab"><code>de64748</code></a>
Bump version to 0.2.30 (<a
href="https://redirect.github.com/j178/prek/issues/1392">#1392</a>)</li>
<li><a
href="https://github.com/j178/prek/commit/8faa42c091b36b7561c4d8f03ea7850b31dd4a79"><code>8faa42c</code></a>
Add nextest partitioning for Windows tests (<a
href="https://redirect.github.com/j178/prek/issues/1389">#1389</a>)</li>
<li><a
href="https://github.com/j178/prek/commit/b7b453d50047075bf4b3989dcb9a9ff11cf45542"><code>b7b453d</code></a>
Document that <code>check-json5</code> now rejects duplicate keys (<a
href="https://redirect.github.com/j178/prek/issues/1391">#1391</a>)</li>
<li><a
href="https://github.com/j178/prek/commit/c67ac0ea29842aff8de617d43c4a735be72026e1"><code>c67ac0e</code></a>
Make <code>CURRENT_REPORTER</code> a
<code>Weak\<ProgressReporter></code> (<a
href="https://redirect.github.com/j178/prek/issues/1390">#1390</a>)</li>
<li><a
href="https://github.com/j178/prek/commit/4a8b58b7a7c63016c4f7d1999c929cd0d8a64167"><code>4a8b58b</code></a>
Show warning if file lock acquiring blocks for long time (<a
href="https://redirect.github.com/j178/prek/issues/1353">#1353</a>)</li>
<li><a
href="https://github.com/j178/prek/commit/845d849719045d589f3c4185f87280c22913d801"><code>845d849</code></a>
Speed up <code>reuse_env</code> test case (<a
href="https://redirect.github.com/j178/prek/issues/1388">#1388</a>)</li>
<li><a
href="https://github.com/j178/prek/commit/a58828ca4c89093132dc4213e1801eb6d402dabb"><code>a58828c</code></a>
Check for duplicate keys in <code>check-json5</code> builtin hook (<a
href="https://redirect.github.com/j178/prek/issues/1387">#1387</a>)</li>
<li><a
href="https://github.com/j178/prek/commit/0e934c383c0e823305bc1fbeb81d99df8e58540e"><code>0e934c3</code></a>
Do not resolve entry for docker_image (<a
href="https://redirect.github.com/j178/prek/issues/1386">#1386</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/j178/prek/compare/v0.2.27...v0.2.30">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>1 parent b0e9071 commit 97312f4
1 file changed
+20
-20
lines changedSome generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
0 commit comments