chore(deps): bump uv to 0.10.12#6058
Merged
Merged
Conversation
da69332 to
454b9f4
Compare
454b9f4 to
604b482
Compare
9d5aa30 to
494448a
Compare
494448a to
d4f80b3
Compare
No code changes. Same gates as 0.9.10: - cargo build --workspace --all-targets - cargo nextest run ... --features slow_integration_tests,online_tests (1776 passed) - pytest --numprocesses=logical --dist loadgroup -m 'not extra_slow' -k 'not test_extra_args' --reruns=2 (279 passed) - cargo clippy/fmt clean - pixi run generate-cli-docs produces no diff
d4f80b3 to
9330147
Compare
674c899 to
cb39fcd
Compare
tdejager
approved these changes
May 12, 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.
Stacked on #6037 + #6050. Continues the uv bump loop with one commit per upstream tag from
0.9.11through0.10.12. Stops at 0.10.12 because uv0.11.0shipsastral-reqwest-middleware = "0.5.1"andreqwest = "0.13.x", which trip theMiddlewaretrait identity vs. rattler/rattler-build's0.4.2+reqwest 0.12.x. Same wall the 0.9.10 PR coordinated around at the previous version line. Unblocking 0.11.0+ requires another coordinated cross-repo bump.Each commit is pushed individually so CI runs per tag. Title will track the latest tag in this PR; the diff will collapse once #6037 and #6050 land.
API-compat notes per tag
The full per-tag log (with file paths and rationale) is in the working notes. Highlights:
uv_git_types::GitUrl::from_fieldsgained a 4thlfs: GitLfsparameter;VcsInfogainedgit_lfs: Option<bool>;RequirementsTxt::parselost its&BaseClientBuilderarg.Tags::from_envgained a 7this_cross: boolparameter;uv_auth::store_credentials_from_urlmoved to a method onBaseClient::credentials_cache();BuildContext::direct_buildgained asources: SourceStrategyarg.uv_resolver::ExcludeNewerTimestamprenamed toExcludeNewerValue.--retriesto 8.uv_configuration::SourceStrategyremoved; replaced byNoSourceswith inverted semantics. Trait sigs inuv_types::BuildContextflipped (fn sources(&self) -> &NoSources,fn setup_build(... sources: &'a NoSources, ...),fn direct_build(... sources: NoSources, ...)). RenamedUvResolutionContext::source_strategy→no_sources,with_source_strategy→with_no_sources.NoSourcesis notCopy, so a few cross-call moves became.clone()s (cheap, justArcs underneath).BaseClientBuilder::timeoutrenamed toread_timeout. Most other 0.10.0 breakage already absorbed in the 0.9 patch line.Concurrencygaineddownloads_semaphore/builds_semaphore(Arc<Semaphore>);DistributionDatabase::new's 3rd arg flipped fromusizetoArc<Semaphore>.Concurrencyno longerCopy. Updated 4 call sites + threadedlock_pypi_packages's parameter.PyProjectToml::from_tomlgained a_source: impl Displayarg.Excluded from the gate
tests/integration_python/pixi_build/test_build.py::test_extra_argsis still skipped via-k 'not test_extra_args'. Same pre-existing meson_setup_vsenvissue documented on #6037 / #6050.Test plan
For each commit, locally on Windows:
cargo build --workspace --all-targetscargo nextest run --workspace --all-targets --features slow_integration_tests,online_tests --retries=8 --no-fail-fast— 1776 passed for every tag.cargo clippy --all-targets --workspace -- -D warningscargo fmt --all -- --checkCI gates per-commit are pending; this PR is being pushed one commit at a time so that each tag lands in the CI history individually.