Update all - #268
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
|
🎯 Code Coverage (details) 🔗 Commit SHA: 0e963c8 | Docs | View more details | Give us feedback! |
renovate
Bot
force-pushed
the
renovate/all
branch
7 times, most recently
from
May 7, 2026 05:09
0194e70 to
821b4ca
Compare
renovate
Bot
force-pushed
the
renovate/all
branch
8 times, most recently
from
May 15, 2026 13:42
3861862 to
c6c05d7
Compare
renovate
Bot
force-pushed
the
renovate/all
branch
9 times, most recently
from
May 23, 2026 16:38
f8bf411 to
139d432
Compare
renovate
Bot
force-pushed
the
renovate/all
branch
4 times, most recently
from
May 25, 2026 20:42
01b52e4 to
e649251
Compare
renovate
Bot
force-pushed
the
renovate/all
branch
9 times, most recently
from
June 14, 2026 04:47
12023df to
f788a29
Compare
renovate
Bot
force-pushed
the
renovate/all
branch
4 times, most recently
from
June 18, 2026 15:29
7683025 to
03774c0
Compare
renovate
Bot
force-pushed
the
renovate/all
branch
3 times, most recently
from
June 24, 2026 21:45
b054800 to
f809f7c
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #268 +/- ##
===========================
===========================
☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
renovate
Bot
force-pushed
the
renovate/all
branch
6 times, most recently
from
July 3, 2026 17:07
037c336 to
870e1ef
Compare
renovate
Bot
force-pushed
the
renovate/all
branch
6 times, most recently
from
July 12, 2026 16:35
d9b25b5 to
33bda3d
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v1.0.0→v1.0.5v7.0.0→v7.0.1v2.8.0→v2.9.0v4.0.0→v4.1.0v1.13.0→v1.14.2257e27e→f647ed73.12→3.14v1.2.2→v1.3.0v3.0.2→v3.0.3v2.62.27→v2.87.4v2.87.9(+4)Release Notes
DataDog/dd-sts-action (DataDog/dd-sts-action)
v1.0.5Compare Source
What's Changed
Full Changelog: DataDog/dd-sts-action@v1.0.4...v1.0.5
v1.0.4Compare Source
What's Changed
Full Changelog: DataDog/dd-sts-action@v1.0.3...v1.0.4
v1.0.3Compare Source
What's Changed
New Contributors
Full Changelog: DataDog/dd-sts-action@v1.0.2...v1.0.3
v1.0.2Compare Source
v1.0.1Compare Source
What's Changed
Full Changelog: DataDog/dd-sts-action@v1.0.0...v1.0.1
actions/upload-artifact (actions/upload-artifact)
v7.0.1Compare Source
What's Changed
Full Changelog: actions/upload-artifact@v7...v7.0.1
lycheeverse/lychee-action (lycheeverse/lychee-action)
v2.9.0Compare Source
Summary
This release updates the default lychee version from
v0.23.0tov0.24.2.The main reason for this release is compatibility with the new lychee
0.24.xrelease artifacts. Starting with lycheev0.24.0, the archive layout changed, and thelycheebinary may now be packaged inside a subdirectory.lychee-actionnow detects that layout automatically, so users can upgrade without changing their workflows.If you use:
you will get the new version once the floating
v2tag has been updated. If you pin exact versions, update to:What’s new from lychee
v0.24.xBetter diagnostics
lychee now reports line and column numbers for detected links. This makes broken link reports easier to act on, especially in larger documentation sites or generated reports.
Text fragment checking
lychee can now check URL text fragments, such as links containing
#:~:text=.... This helps catch links that point to a valid page but no longer points to the intended highlighted text.Sitemap support
lychee can now read
sitemap.xmlinputs. This is useful for checking published websites or generated documentation sites where the sitemap is the easiest source of URLs to validate.JUnit output
lychee now supports JUnit output. This makes it easier to integrate link checking results with CI systems and test reporting tools that understand JUnit XML.
Redirect and remap visibility
lychee can now show redirects and remaps more clearly. This helps explain why a URL was checked as a different final URL and makes debugging link-checking behavior easier.
Multiple config files
lychee now supports multiple configuration files and expanded config handling. This is useful for repositories that split documentation, website, or package-specific link-checking settings.
Timeout handling
lychee can now accept timeouts explicitly. This gives users more control over how strict their link checks should be for flaky or slow endpoints.
Fixes and reliability improvements
Fixed lychee
0.24.xarchive compatibilitylychee-actionnow handles the new lychee release archive layout by detecting whether thelycheebinary is inside a subdirectory.This fixes compatibility with lychee
0.24.x.More stable installation path
The action now installs lychee into
$RUNNER_TEMP/lychee/bininstead of$HOME.This avoids failures on runners where
$HOMEdiffers between composite action steps. In those environments, the action could add one directory toPATHbut install the binary somewhere else, causinglychee: command not found.Safer automatic lychee version updates
The workflow that checks for new lychee releases now guards against
nullrelease versions before creating update PRs. This prevents invalid automated PRs such as “Update lycheeVersion to null”.Dependency updates
actions/checkoutfromv6tov7actions/cachefromv5tov6Upstream lychee changelog
For the full lychee changelog, see:
What’s Changed
$RUNNER_TEMPinstead of$HOMEby @mre in #338Full Changelog: lycheeverse/lychee-action@v2.8.0...v2.9.0
peaceiris/actions-gh-pages (peaceiris/actions-gh-pages)
v4.1.0: actions-github-pages v4.1.0Compare Source
See CHANGELOG.md for more details.
What's Changed
New Contributors
Full Changelog: peaceiris/actions-gh-pages@v4.0.0...v4.1.0
pypa/gh-action-pypi-publish (pypa/gh-action-pypi-publish)
v1.14.2Compare Source
This one probably won't touch you visibly so just bookmark @webknjaz's EuroPython 2026 “AI” slop rant for when it's published on YouTube or encourage him to come back with more to share next year!
🛠️ Urgh… Another release!? Again? Explain yourself!
Looking at the diff, you'll only witness updates across the dependency tree. That's it! It's not a security fix or anything like that even, no. But you'll want this update.
🧐 Tell me why..
The rest of the updates bump things related to
pypi-attestationsandsigstore, which has the most interesting backstory here. @facutuesca💰 sent a patch in #417 but a bunch more helped out.TL;DR non-pure-python projects with C-extensions tend to have dozens (sometimes hundreds) wheels to upload to PyPI per release. They are often quite big and take time to transfer over the network. People started noticing problems and coming up with DIY sharding workarounds like aio-libs/aiohttp#13226 around July 23.
On this date, projects with a good amount of bytes to publish would start getting timeouts 5 minutes after the PyPI publishing job begun. The same job that worked just fine before.
I had to start pinging upstream library and ecosystem people, on GitHub and privately, to start making sense of what was happening. Eventually, we collectively concluded that GitHub must've shortened the lifetime of their OIDC identity — it seems to have used to be 10 minutes long (at some point in the past) and is now 5 minutes, apparently. It's not documented clearly, and we have not been able to get any clarity by attempting to contact GitHub through private channels, using personal connections.
Over the course of investigation, @facutuesca💰 found and fixed a related underlying cache invalidation bug in sigstore/sigstore-python#1838, which he then coordinated propagation through the dependency chain updates in sigstore-python, pypi-attestations, gh-action-pypi-publish and gh-action-sigstore-python.
Mike's also discovered that Sigstore's Rekor slowdown seems to have become the main contributing cause of the last week's incident. He's collected some data to support this claim: https://publishing-five-minute-timeout.tiiny.site.
🫶 New Contributors
🪞 Full Diff: pypa/gh-action-pypi-publish@v1.14.1...v1.14.2
🧔♂️ Release Manager: @webknjaz 🇺🇦
🙏 Special Thanks to @davidbrochart💰 and @Dreamsorcerer💰 for turning my attention (in #415 and in private) to the newly surfaced corner case in GitHub's behavior that only affected a narrow category of projects while many others remained blissfully unaware. @bdraco💰 came up with a DIY sharding workaround for aiohttp that served as a demo for other projects. @miketheman💰 confirmed the Warehouse-side details. Also, @jku💰 and @woodruffw💰 helped work through, review and release the Sigstore ecosystem upstream libs.
💬 Discuss on Bluesky 🦋, on Mastodon 🐘 and on GitHub.
v1.14.1Compare Source
This release was cut at EuroPython 2026 Sprints
🛠️ Internal Dependencies
@adisivaprasad💰 helped get rid of the GitHub Actions runner warning about the old Node 20 runtime being used by updating
actions/setup-pythonfrom v5.6.0 to v6.2.0 in #408.💪 New Contributors
🪞 Full Diff: pypa/gh-action-pypi-publish@v1.14.0...v1.14.1
🧔♂️ Release Manager: @webknjaz 🇺🇦
🙏 Special Thanks to @jylenhof💰 for reminding me to work on this release!
💬 Discuss on Bluesky 🦋, on Mastodon 🐘 and on GitHub.
v1.14.0Compare Source
Audit your supply chain regularly!
✨ What's Changed
The main change in this release is that
verboseandprint-hashinputs are now on by default. This was contributed by @whitequark💰 in #397.📝 Docs
@woodruffw💰 updated the mentions of PEP 740 to stop implying that it might be experimental (it hasn't been for quite a while!) in #388 and @him2him2💰 brushed up some grammar in the README and SECURITY docs via #395.
🛠️ Internal Updates
@woodruffw💰 bumped
sigstoreandpypi-attestationsin the lock file (#391) and @webknjaz💰 added infra for using type annotations in the project (#381).💪 New Contributors
🪞 Full Diff: pypa/gh-action-pypi-publish@v1.13.0...v1.14.0
🧔♂️ Release Manager: @webknjaz 🇺🇦
🙏 Special Thanks to @facutuesca💰 and @woodruffw💰 for helping maintain this project when I can't!
💬 Discuss on Bluesky 🦋, on Mastodon 🐘 and on GitHub.
actions/python-versions (python)
v3.14.7: 3.14.7Compare Source
Python 3.14.7
v3.14.6: 3.14.6Compare Source
Python 3.14.6
v3.14.5: 3.14.5Compare Source
Python 3.14.5
v3.14.4: 3.14.4Compare Source
Python 3.14.4
v3.14.3: 3.14.3Compare Source
Python 3.14.3
v3.14.2: 3.14.2Compare Source
Python 3.14.2
v3.14.1: 3.14.1Compare Source
Python 3.14.1
v3.14.0: 3.14.0Compare Source
Python 3.14.0
v3.13.15: 3.13.15Compare Source
Python 3.13.15
v3.13.14: 3.13.14Compare Source
Python 3.13.14
v3.13.13: 3.13.13Compare Source
Python 3.13.13
v3.13.12: 3.13.12Compare Source
Python 3.13.12
v3.13.11: 3.13.11Compare Source
Python 3.13.11
v3.13.10: 3.13.10Compare Source
Python 3.13.10
v3.13.9: 3.13.9Compare Source
Python 3.13.9
v3.13.8: 3.13.8Compare Source
Python 3.13.8
v3.13.7: 3.13.7Compare Source
Python 3.13.7
v3.13.6: 3.13.6Compare Source
Python 3.13.6
v3.13.5: 3.13.5Compare Source
Python 3.13.5
v3.13.4: 3.13.4Compare Source
Python 3.13.4
v3.13.3: 3.13.3Compare Source
Python 3.13.3
v3.13.2: 3.13.2Compare Source
Python 3.13.2
v3.13.1: 3.13.1Compare Source
Python 3.13.1
v3.13.0: 3.13.0Compare Source
Python 3.13.0
re-actors/alls-green (re-actors/alls-green)
v1.3.0Compare Source
Sometimes these releases take time. Cherish it.
🛡️ What's Unmessed
✨ What's Improved
I did a bunch of internal refactoring including hints of what @max-sixty💰 reported in #23. And took a small patch of @krokofant💰 in. This involved a bunch of preparatory infra work with testing infra.
One notable improvement is that now thanks to @tomasr8💰's and @hugovk💰's UX suggestions in #31, the gate status output is colored in the console and should be easier to scan in the log output per line. They entries now have leading
✓/❌acceptance marks and the actual incoming job outcomes are labeled with🟢/🔴/⬜/⚫.🐛 What's Fixed
The job-statuses summary could print "Some of the allowed to be skipped jobs did not succeed" based on the wrong condition — it's now tied to
allowed-skipsas intended, notallowed-failures.💪 New Contributors
🪞 Full Diff: re-actors/alls-green@v1.2.2...v1.3.0
🧔♂️ Release Manager: @webknjaz 🇺🇦
💬 Discuss on Bluesky 🦋, on Mastodon 🐘 and on GitHub.
softprops/action-gh-release (softprops/action-gh-release)
v3.0.3Compare Source
3.0.3is a maintenance release with updated dependencies. It also safelyclassifies malformed GitHub API errors to avoid secondary failures (#822).
What's Changed
Bug fixes 🐛
Other Changes 🔄
taiki-e/install-action (taiki-e/install-action)
v2.87.4: 2.87.4Compare Source
Update
uv@latestto 0.12.8.Update
protoc@latestto 3.36.1.Update
coreutils@latestto 0.11.0.v2.87.3: 2.87.3Compare Source
Update
zizmor@latestto 1.30.0.Update
ubi@latestto 0.12.0.Update
protoc-gen-connect-openapi@latestto 0.25.8.Update
mise@latestto 2026.8.16.Update
kingfisher@latestto 2.1.0.Update
dprint@latestto 0.57.0.v2.87.2: 2.87.2Compare Source
Update
typos@latestto 1.50.0.Update
tombi@latestto 1.5.0.Update
shfmt@latestto 3.14.0.v2.87.1: 2.87.1Compare Source
Update
uv@latestto 0.12.7.Update
typos@latestto 1.49.1.Update
syft@latestto 1.51.1.Update
prek@latestto 0.5.0.Update
d2@latestto 0.8.2.Update
cargo-zigbuild@latestto 0.23.3.Update
cargo-rdme@latestto 2.2.2.Update
biome@latestto 2.5.11.v2.87.0: 2.87.0Compare Source
Support
kache. (#1980, thanks @ChrisJr404)Update
vacuum@latestto 0.30.1.Update
uv@latestto 0.12.6.Update
mise@latestto 2026.8.14.Update
editorconfig-checker@latestto 3.11.2.v2.86.8: 2.86.8Compare Source
Update
wasmtime@latestto 48.0.1.Update
wasm-tools@latestto 1.258.0.Update
oxfmt@latestto 1.80.0.Update
mise@latestto 2026.8.12.Update
kingfisher@latestto 2.0.0.Update
cargo-zigbuild@latestto 0.23.2.v2.86.7: 2.86.7Compare Source
Update
tombi@latestto 1.4.1.Update
rafn@latestto 0.1.5.Update
cargo-binstall@latestto 1.22.0.v2.86.6: 2.86.6Compare Source
Update
dprint@latestto 0.56.1.Update
cargo-lambda@latestto 1.9.2.Update
biome@latestto 2.5.10.v2.86.5: 2.86.5Compare Source
Update
zola@latestto 0.23.4.Update
wasm-tools@latestto 1.257.1.Update
protoc@latestto 3.36.0.Update
mise@latestto 2026.8.10.Update
cargo-dinghy@latestto 0.8.6.Update
wasmtime@latestto 48.0.0.v2.86.4: 2.86.4Compare Source
Update
oxfmt@latestto 1.79.0.Update
mise@latestto 2026.8.8.Update
martin@latestto 1.14.0.Update
dprint@latestto 0.56.0.Update
cargo-about@latestto 0.9.2.Update
biome@latestto 2.5.9.v2.86.3: 2.86.3Compare Source
Update
prek@latestto 0.4.14.Update
osv-scanner@latestto 2.5.1.Update
cargo-llvm-cov@latestto 0.9.0.v2.86.2: 2.86.2Compare Source
Update
uv@latestto 0.12.5.Update
mise@latestto 2026.8.6.Update
cargo-tarpaulin@latestto 0.37.2.v2.86.1: 2.86.1Compare Source
oxfmtwas accidentally installed asoxfmt-{target}{exe}. (#1969)v2.86.0: 2.86.0Compare Source
oxfmt. (#1967, thanks @rami3l)v2.85.14: 2.85.14Compare Source
Update
uv@latestto 0.12.4.Update
trivy@latestto 0.74.0.Update
tombi@latestto 1.4.0.Update
mdbook-mermaid@latestto 0.17.1.Update
cargo-xwin@latestto 0.23.1.v2.85.13: 2.85.13Compare Source
Update
tombi@latestto 1.3.3.Update
mise@latestto 2026.8.5.Update
kingfisher@latestto 1.113.0.Update
cargo-shear@latestto 1.13.4.Update
bpf-linker@latestto 0.11.0.v2.85.12: 2.85.12Compare Source
Update
zola@latestto 0.23.3.Update
wasm-tools@latestto 1.256.0.Update
tombi@latestto 1.2.10.Update
syft@latestto 1.51.0.Update
prek@latestto 0.4.13.Update
mise@latestto 2026.8.4.Update
editorconfig-checker@latestto 3.11.1.Update
cargo-tarpaulin@latestto 0.37.1.Update
cargo-rdme@latestto 2.2.1.Update
biome@latestto 2.5.8.v2.85.11: 2.85.11Compare Source
Update
zola@latestto 0.23.2.Update
wasm-bindgen@latestto 0.2.127.Update
uv@latestto 0.12.3.Update
osv-scanner@latestto 2.5.0.Update
mise@latestto 2026.8.3.Update
kingfisher@latestto 1.112.0.Update
editorconfig-checker@latestto 3.10.0.v2.85.10: 2.85.10Compare Source
Update
uv@latestto 0.12.2.Update
tombi@latestto 1.2.7.Update
cosign@latestto 3.1.3.Update
coreutils@latestto 0.10.0.Update
cargo-rdme@latestto 2.2.0.Update
cargo-crap@latestto 0.4.3.v2.85.9: 2.85.9Compare Source
Update
zola@latestto 0.23.1.Update
wild@latestto 0.10.0.Update
mise@latestto 2026.8.2.Update
just@latestto 1.58.0.Update
jaq@latestto 3.1.1.Update
cargo-nextest@latestto 0.9.143.Update
cargo-crap@latestto 0.4.2.Update
biome@latestto 2.5.7.v2.85.8: 2.85.8Compare Source
Update
zizmor@latestto 1.29.0.Update
typos@latestto 1.49.0.Update
trivy@latestto 0.73.0.Update
tombi@latestto 1.2.6.Update
prek@latestto 0.4.12.Update
mise@latestto 2026.8.1.Update
convco@latestto 0.7.1.Update
cargo-semver-checks@latestto 0.50.0.Update
cargo-crap@latestto 0.4.1.v2.85.7: 2.85.7Compare Source
Update
wasmtime@latestto 47.0.3.Update
uv@latestto 0.12.1.Update
rclone@latestto 1.75.0.Update
kingfisher@latestto 1.110.0.v2.85.6: 2.85.6Compare Source
Update
wasm-tools@latestto 1.255.0.Update
tombi@latestto 1.2.5.Update
mise@latestto 2026.7.18.Update
cargo-neat@latestto 0.5.3.Update
cargo-crap@latestto 0.4.0.v2.85.5: 2.85.5Compare Source
Update
uv@latestto 0.12.0.Update
syft@latestto 1.50.0.Update
sccache@latestto 0.17.0.Update
mise@latestto 2026.7.16.v2.85.4: 2.85.4Compare Source
Update
uv@latestto 0.11.33.Update
mise@latestto 2026.7.15.Update
biome@latestto 2.5.6.v2.85.3: 2.85.3Compare Source
Update
xh@latestto 0.26.2.Update
ubi@latestto 0.10.0.Update
mise@latestto 2026.7.14.Update
martin@latestto 1.13.0.Update
cargo-shear@latestto 1.13.3.Update
cargo-binstall@latestto 1.21.1.v2.85.2: 2.85.2Compare Source
Update
prek@latestto 0.4.11.Update
mise@latestto 2026.7.13.Update
kingfisher@latestto 1.109.0.v2.85.1: 2.85.1Compare Source
Update
vacuum@latestto 0.30.0.Update
uv@latestto 0.11.32.Update
mise@latestto 2026.7.12.Update
cyclonedx@latestto 0.33.1.Update
cargo-neat@latestto 0.5.2.v2.85.0: 2.85.0Compare Source
Support
wild(alias:wild-linker). (#1949)Support
bpf-linker. (#1950)Support
rafn. (#1935, thanks @DarkWanderer)Update
cargo-neat@latestto 0.5.1.Update
zizmor@latestto 1.28.0.Update
wasmtime@latestto 47.0.2.Update
uv@latestto 0.11.31.Update
syft@latestto 1.49.0.v2.84.1: 2.84.1Compare Source
Update
wasmtime@latestto 47.0.1.Update
wasm-tools@latestto 1.254.0.Update
uv@latestto 0.11.30.Update
mise@latestto 2026.7.11.Update
cargo-neat@latestto 0.5.0.Update
cargo-crap@latestto 0.3.1.Update
biome@latestto 2.5.5.v2.84.0: 2.84.0Compare Source
Support
d2. (#1944)Support
protoc-gen-connect-openapi. (#1922, thanks @JasterV)Update
convco@latestto 0.7.0. (#1941, thanks @graelo)Update
just@latestto 1.57.0.Update
cargo-semver-checks@latestto 0.49.0.Update
tombi@latestto 1.2.4.Update
cosign@latestto 3.1.2.v2.83.4: 2.83.4Compare Source
Update
vacuum@latestto 0.29.10.Update
uv@latestto 0.11.29.Update
syft@latestto 1.48.0.Update
prek@latestto 0.4.10.Update
mise@latestto 2026.7.7.Update
cargo-shear@latestto 1.13.2.v2.83.3: 2.83.3Compare Source
Update
release-plz@latestto 0.3.160.Update
prek@latestto 0.4.9.Update
mise@latestto 2026.7.6.Update
dprint@latestto 0.55.2.Update
cargo-dinghy@latestto 0.8.5.Update
cargo-binstall@latestto 1.21.0.Update
biome@latestto 2.5.4.v2.83.2: 2.83.2Compare Source
Update
parse-dockerfile@latestto 0.1.8.Update
mise@latestto 2026.7.5.Update
just@latestto 1.56.0.Update
gungraun-runner@latestto 0.19.4.Update
cargo-neat@latestto 0.4.1.v2.83.1: 2.83.1Compare Source
Update
rclone@latestto 1.74.4.Update
mise@latestto 2026.7.4.Update
cargo-deny@latestto 0.20.2.v2.83.0: 2.83.0Compare Source
Support
cargo-about. (#1924, thanks @ruffsl)Update
uv@latestto 0.11.28.Update
martin@latestto 1.12.0.Update
kingfisher@latestto 1.106.0.Update
biome@latestto 2.5.3.v2.82.11: 2.82.11Compare Source
Update
wasm-tools@latestto 1.253.0.Update
uv@latestto 0.11.27.Update
mise@latestto 2026.7.2.Update
mdbook@latestto 0.5.4.v2.82.10: 2.82.10Compare Source
Update
tombi@latestto 1.2.0.Update
cargo-nextest@latestto 0.9.140.v2.82.9: 2.82.9Compare Source
Update
vacuum@latestto 0.29.9.Update
prek@latestto 0.4.8.Update
cargo-tarpaulin@latestto 0.37.0.Update
cargo-leptos@latestto 0.3.7.v2.82.8: 2.82.8Compare Source
Update
vacuum@latestto 0.29.8.Update
uv@latestto 0.11.26.Update
typos@latestto 1.48.0.Update
trivy@latestto 0.72.0.Update
tombi@latestto 1.1.7.Update
prek@latestto 0.4.6.Update
mise@latestto 2026.7.0.Update
just@latestto 1.55.1.Update
biome@latestto 2.5.2.v2.82.7: 2.82.7Compare Source
Update
tombi@latestto 1.1.6.Update
kingfisher@latestto 1.105.0.Update
gungraun-runner@latestto 0.19.3.Update
editorconfig-checker@latestto 3.8.0.Update
dprint@latestto 0.55.1.Update
cargo-tarpaulin@latestto 0.36.0.v2.82.6: 2.82.6Compare Source
Update
vacuum@latestto 0.29.7.Update
uv@latestto 0.11.25.Update
syft@latestto 1.46.0.Update
dprint@latestto 0.55.0.Update
cargo-auditable@latestto 0.7.5.v2.82.5: 2.82.5Compare Source
Update
wasmtime@latestto 46.0.1.Update
wasm-bindgen@latestto 0.2.126.Update
vacuum@latestto 0.29.6.Update
mise@latestto 2026.6.14.Update
cargo-rdme@latestto 2.1.0.v2.82.4: 2.82.4Compare Source
Update
uv@latestto 0.11.24.Update
mise@latestto 2026.6.13.Update
just@latestto 1.54.0.Update
biome@latestto 2.5.1.v2.82.3: 2.82.3Compare Source
Update
zizmor@latestto 1.26.1.Update
wasmtime@latestto 46.0.0.Update
tombi@latestto 1.1.5.Update
mise@latestto 2026.6.12.Update
kingfisher@latestto 1.104.0.Update
cargo-tarpaulin@latestto 0.35.5.Update
cargo-nextest@latestto 0.9.138.Update
cargo-crap@latestto 0.3.0.Update
cargo-binstall@latestto 1.20.1.Update
cargo-rdme@latestto 2.0.1.v2.82.2: 2.82.2Compare Source
Update
xh@latestto 0.26.1.Update
uv@latestto 0.11.23.Update
trivy@latestto 0.71.2.Update
sccache@latestto 0.16.0.v2.82.1: 2.82.1Compare Source
Update
vacuum@latestto 0.29.4.Update
uv@latestto 0.11.22.Update
osv-scanner@latestto 2.4.0.Update
mise@latestto 2026.6.11.Update
martin@latestto 1.11.0.Update
just@latestto 1.53.0.Update
cargo-zigbuild@latestto 0.23.0.v2.82.0: 2.82.0Compare Source
Support
cargo-vet. (#1908, thanks @jakewimmer)Support
cargo-crap. (#1905, thanks @BartoszCiesla)Support
cargo-leptos. (#1903, thanks @404Simon)Update
kingfisher@latestto 1.103.0.Update
cargo-xwin@latestto 0.23.0.Update
wasmtime@latestto 45.0.2.Update
cargo-deny@latestto 0.19.9.Update
prek@latestto 0.4.5.Update
trivy@latestto 0.71.1.Update
mise@latestto 2026.6.10.v2.81.11: 2.81.11Compare Source
Update
wasm-tools@latestto 1.252.0.Update
wasm-bindgen@latestto 0.2.125.Update
uv@latestto 0.11.21.Update
protoc@latestto 3.35.1.Update
mise@latestto 2026.6.9.Update
jaq@latestto 3.1.0.Update
cargo-insta@latestto 1.48.0.Update
biome@latestto 2.5.0.v2.81.10: 2.81.10Compare Source
Update
tombi@latestto 1.1.3.Update
release-plz@latestto 0.3.159.Update
cosign@latestto 3.1.1.v2.81.9: 2.81.9Compare Source
Update
wasm-bindgen@latestto 0.2.123.Update
tombi@latestto 1.1.2.Update
parse-changelog@latestto 0.6.17.Update
just@latestto 1.52.0.Update
gungraun-runner@latestto 0.19.2.Update
cargo-binstall@latestto 1.20.0.v2.81.8: 2.81.8Compare Source
Update
vacuum@latestto 0.29.2.Update
parse-dockerfile@latestto 0.1.7.Update
mise@latestto 2026.6.1.Update
cargo-shear@latestto 1.13.1.v2.81.7: 2.81.7Compare Source
Update
wasmtime@latestto 45.0.1.Update
vacuum@latestto 0.29.1.Update
syft@latestto 1.45.1.Update
rclone@latestto 1.74.3.Update
cargo-audit@latestto 0.22.2.v2.81.6: 2.81.6Compare Source
Update
prek@latestto 0.4.4.Update
cargo-shear@latestto 1.13.0.v2.81.5: 2.81.5Compare Source
Update
vacuum@latestto 0.29.0.Update
uv@latestto 0.11.19.Update
typos@latestto 1.47.2.Update
mise@latestto 2026.6.0.v2.81.4: 2.81.4Compare Source
Update
vacuum@latestto 0.28.4.Update
typos@latestto 1.47.1.Update
syft@latestto 1.45.0.Update
cargo-neat@latestto 0.4.0.Update `c
Configuration
📅 Schedule: (UTC)
🚦 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.
This PR was generated by Mend Renovate. View the repository job log.