chore(deps): update docker - #263
Merged
Merged
Conversation
Signed-off-by: bootc-bot[bot] <225049296+bootc-bot[bot]@users.noreply.github.com> Signed-off-by: bootc-bot[bot] <225049296+bootc-bot[bot]@users.noreply.github.com>
bootc-bot
Bot
force-pushed
the
bootc-renovate/docker
branch
from
September 20, 2026 02:34
a30b776 to
cecdd15
Compare
Contributor
|
Failure is: Looks like we probably need to update which key we're using somewhere |
Contributor
|
xref cli/cli#13118 |
Contributor
|
➡️ #267 |
jeckersb
approved these changes
Sep 21, 2026
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:
0.12.13→0.12.17v1.50.1→v1.51.00.67.0→0.68.00.9.144→0.9.145nightly-2026-09-14→nightly-2026-09-20Release Notes
astral-sh/uv (astral-sh/uv)
v0.12.17Compare Source
Released on 2026-09-18.
Enhancements
Preview features
minimum-libc-version(#21651)pylock.tomlfiles whose wheel filenames do not match their declared package names or versions (#20746)uv workspace metadataread-only unless--syncis provided (#21821)uv checklock modes when retrieving workspace metadata (#21821)Performance
Bug fixes
required-environmentsfrom selecting package versions whose wheels require a newer macOS version than the configured Darwin baseline (#21825)Documentation
v0.12.16Compare Source
Released on 2026-09-17.
Python
Enhancements
build-constraint-dependenciesentries to include hashes for verifying downloaded build dependencies (#21467)platform_releasemarkers inrequired-environmentsusing macOS wheel deployment targets (#21766)Preview features
lock-without-metadataacross all dependency types while retainingpackage.metadatafor remote URL dependencies to enable offline validation (#21163)uv upgrade(#21776)uv checkto run in projects that are not managed by uv and outside workspaces (#21777)--pythonandUV_PYTHONwhen selecting the Python version foruv check(#21744)Bug fixes
pylock.tomlbefore reusing cached distributions (#21609)uv_buildbackend only when its version matches active version pins (#21742)v0.12.15Compare Source
Released on 2026-09-15.
Performance
Bug fixes
0.12.14when installing to symlinked destinations or usinguv pip install --target .(#21699)v0.12.14Compare Source
Released on 2026-09-15.
Enhancements
cause:labels (#21599, #21603)uv tool upgradeoperations (#21566)Preview features
uv export --batchinvocation with thebatch-exportpreview feature (#21618)Performance
Bug fixes
required-environmentswithin each resolver fork instead of combining incompatible wheel coverage across forks (#21672)MAX_PATHon Windows systems without long-path support enabled (#21625)uv python installfrom overwriting valid unmanaged Python symlinks with relative targets on Unix (#21639)bin/pythonoverbin/python3when discovering interpreters in Unix environments (#21559)1for expected failures and2for recognized operational and internal failures (#17110)--quiet(#21565)uv tool upgradeerrors visible with-qwhile suppressing them with-qq(#21566)block/goose (block/goose)
v1.51.0Compare Source
✨ Features
🐛 Bug Fixes
🔧 Improvements
📚 Documentation
model-checking/kani (kani-verifier)
v0.68.0What's Changed
oldof function contract by @thanhnguyen-aws in #4513#[kani::recursion]by @feliperodri in #4580#[kani::loop_decreases]for proving loop termination by @feliperodri in #4564contract::symbols for functions with contracts by @tautschnig in #4612volatile_copy_memory,volatile_copy_nonoverlapping_memoryandvolatile_set_memoryby @ivmat in #4672!by @MavenRain in #4647unaligned_volatile_loadandunaligned_volatile_storeby @ivmat in #4673--export-jsonfor structured verification results by @yimingyinqwqq in #4472cover/assert/checkmessage expressions by @ivmat in #4711stub_verified/Arbitraryrecursion at compile time by @feliperodri in #4571New Contributors
Full Changelog: model-checking/kani@kani-0.67.0...kani-0.68.0
nextest-rs/nextest (nextest-rs/nextest)
v0.9.145: cargo-nextest 0.9.145Compare Source
Changed
Configuration diagnostics now name the file each setting came from. For example,
cargo nextest show-config versionshows which file specified thenextest-versionrequirement, andcargo nextest show-config test-groupsshows which file each override was defined in.For now, this is most useful when tool-specific config files are in play, but upcoming work to support local configuration files also benefits from this. (#3580, #3584)
Config file paths in errors and warnings are now displayed relative to the directory nextest is invoked from, following typical CLI conventions. Previously, parse errors showed absolute paths and warnings showed paths relative to the workspace root. In stylized output, config file paths are now colored as well. (#3568, #3570, #3577)
Fixed
Per-test overrides and setup and wrapper scripts defined in a profile's inheritance chain are now applied. Previously, only the selected profile's own overrides and those in
profile.defaultwere consulted, so overrides in intermediate profiles were silently skipped. As part of this change, a profile that does not setdefault-filternow inherits it from the nearest ancestor that does, rather than always fromprofile.default. (#3585)A
default-filterset by a tool config file is now respected when the repository config does not set one. Previously, the tool's filter was ignored andall()was used. (#3592)Profile inheritance cycles that span multiple config files, such as a tool config file redefining a profile that the repository config inherits from, are now detected and reported as errors. Previously, cycles were only detected within a single file. (#3588)
Passing
--tool-config-filemore than once for the same tool name now produces an error. Previously, nextest panicked internally. (#3589)The hint shown when a command requires an experimental feature that isn't enabled now points at the correct config file path when nextest is run from a subdirectory of the workspace, from outside the workspace, or with an explicit
--config-file. (#3565)On Unix platforms where the Rust standard library cannot create pipes with
FD_CLOEXECset atomically (most notably Apple platforms), a test could inherit a sibling test's capture pipe if the two were spawned concurrently. The sibling was then reported as having leaked handles after it exited. Nextest now creates capture pipes itself and coordinates pipe creation with process spawning, so that spawns no longer inherit stray pipes. (#3553)An upcoming design document will go over how nextest spawns processes in detail, including more information about this workaround.
Thanks gaborbernat for your first contribution!
Configuration
📅 Schedule: (in timezone 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 has been generated by Mend Renovate CLI.