Skip to content

chore(deps): update dependency astral-sh/uv to v0.11.3#360

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/astral-sh-uv-0.x
Open

chore(deps): update dependency astral-sh/uv to v0.11.3#360
renovate[bot] wants to merge 1 commit intomainfrom
renovate/astral-sh-uv-0.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Jan 6, 2026

This PR contains the following updates:

Package Type Update Change
astral-sh/uv minor 0.10.110.11.3
astral-sh/uv uses-with minor 0.10.110.11.3

Release Notes

astral-sh/uv (astral-sh/uv)

v0.11.3

Compare Source

Released on 2026-04-01.

Enhancements
  • Add progress bar for hashing phase in uv publish (#​18752)
  • Add support for ROCm 7.2 (#​18730)
  • Emit abi3t tags for every abi3 version (#​18777)
  • Expand uv workspace metadata with dependency information from the lock (#​18356)
  • Implement support for PEP 803 (#​18767)
  • Pretty-print platform in built wheel errors (#​18738)
  • Publish installers to /installers/uv/latest on the mirror (#​18725)
  • Show free-threaded Python in built-wheel errors (#​18740)
Preview features
  • Add --ignore and --ignore-until-fixed to uv audit (#​18737)
Bug fixes
  • Bump simple API cache (#​18797)
  • Don't drop blake2b hashes (#​18794)
  • Handle broken range request implementations (#​18780)
  • Remove powerpc64-unknown-linux-gnu from release build targets (#​18800)
  • Respect dependency metadata overrides in uv pip check (#​18742)
  • Support debug CPython ABI tags in environment compatibility (#​18739)
Documentation

v0.11.2

Compare Source

Released on 2026-03-26.

Enhancements
  • Add a dedicated Windows PE editing error (#​18710)
  • Make uv self update fetch the manifest from the mirror first (#​18679)
  • Use uv reqwest client for self update (#​17982)
  • Show uv self update success and failure messages with --quiet (#​18645)
Preview features
  • Evaluate extras and groups when determining auditable packages (#​18511)
Bug fixes
  • Skip redundant project configuration parsing for uv run (#​17890)

v0.11.1

Compare Source

Released on 2026-03-24.

Bug fixes
  • Add missing hash verification for riscv64gc-unknown-linux-musl (#​18686)
  • Fallback to direct download when direct URL streaming is unsupported (#​18688)
  • Revert treating 'Dynamic' values as case-insensitive (#​18692)
  • Remove torchdata from list of packages to source from the PyTorch index (#​18703)
  • Special-case == Python version request ranges (#​9697)
Documentation
  • Cover --python <dir> in "Using arbitrary Python environments" (#​6457)
  • Fix version annotations for PS_MODULE_PATH and UV_WORKING_DIR (#​18691)

v0.11.0

Compare Source

Released on 2026-03-23.

Breaking changes

This release includes changes to the networking stack used by uv. While we think that breakage will be rare, it is possible that these changes will result in the rejection of certificates previously trusted by uv so we have marked the change as breaking out of an abundance of caution.

The changes are largely driven by the upgrade of reqwest, which powers uv's HTTP clients, to v0.13 which included some breaking changes to TLS certificate verification.

The following changes are included:

  • rustls-platform-verifier is used instead of rustls-native-certs and webpki for certificate verification

    This change should have no effect unless you are using the native-tls option to enable reading system certificates.

    rustls-platform-verifier delegates to the system for certificate validation (e.g., Security.framework on macOS) instead of eagerly loading certificates from the system and verifying them via webpki. The effects of this change will vary based on the operating system. In general, uv's certificate validation should now be more consistent with browsers and other native applications. However, this is the most likely cause of breaking changes in this release. Some previously failing certificate chains may succeed, and some previously accepted certificate chains may fail. In either case, we expect the validation to be more correct and welcome reports of regressions.

    In particular, because more responsibility for validating the certificate is transferred to your system's security library, some features like CA constraints or revocation of certificates via OCSP and CRLs may now be used.

    This change should improve performance when using system certificate on macOS, as uv no longer needs to load all certificates from the keychain at startup.

  • aws-lc is used instead of ring for a cryptography backend

    There should not be breaking changes from this change. We expect this to expand support for certificate signature algorithms.

  • --native-tls is deprecated in favor of a new --system-certs flag

    The --native-tls flag is still usable and has identical behavior to --system-certs.

    This change was made to reduce confusion about the TLS implementation uv uses. uv always uses rustls not native-tls.

  • Building uv on x86-64 and i686 Windows requires NASM

    NASM is required by aws-lc. If not found on the system, a prebuilt blob provided by aws-lc-sys will be used.

    If you are not building uv from source, this change has no effect.

    See the CONTRIBUTING guide for details.

  • Empty SSL_CERT_FILE values are ignored (for consistency with SSL_CERT_DIR)

See #​18550 for details.

Python
  • Enable frame pointers for improved profiling on Linux x86-64 and aarch64

See the python-build-standalone release notes for details.

Enhancements
  • Treat 'Dynamic' values as case-insensitive (#​18669)
  • Use a dedicated error for invalid cache control headers (#​18657)
  • Enable checksum verification in the generated installer script (#​18625)
Preview features
  • Add --service-format and --service-url to uv audit (#​18571)
Performance
  • Avoid holding flat index lock across indexes (#​18659)
Bug fixes
  • Find the dynamic linker on the file system when sniffing binaries fails (#​18457)
  • Fix export of conflicting workspace members with dependencies (#​18666)
  • Respect installed settings in uv tool list --outdated (#​18586)
  • Treat paths originating as PEP 508 URLs which contain expanded variables as relative (#​18680)
  • Fix uv export for workspace member packages with conflicts (#​18635)
  • Continue to alternative authentication providers when the pyx store has no token (#​18425)
  • Use redacted URLs for log messages in cached client (#​18599)
Documentation
  • Add details on Linux versions to the platform policy (#​18574)
  • Clarify FLASH_ATTENTION_SKIP_CUDA_BUILD guidance for flash-attn installs (#​18473)
  • Split the dependency bots page into two separate pages (#​18597)
  • Split the alternative indexes page into separate pages (#​18607)

v0.10.12

Compare Source

Released on 2026-03-19.

Python
Enhancements
  • Include uv's target triple in version report (#​18520)
  • Allow comma separated values in --no-emit-package (#​18565)
Preview features
Bug fixes
  • Improve reporting of managed interpreter symlinks in uv python list (#​18459)
  • Preserve end-of-line comments on previous entries when removing dependencies (#​18557)
  • Treat abi3 wheel Python version as a lower bound (#​18536)
  • Detect hard-float support on aarch64 kernels running armv7 userspace (#​18530)
Documentation
  • Add Python 3.15 to supported versions (#​18552)
  • Adjust the PyPy note (#​18548)
  • Move Pyodide to Tier 2 in the Python support policy (#​18561)
  • Move Rust and Python version support out of the Platform support policy (#​18535)
  • Update Docker guide with changes from uv-docker-example (#​18558)
  • Update the Python version policy (#​18559)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • 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 force-pushed the renovate/astral-sh-uv-0.x branch from 5a75d11 to 652ca3f Compare January 6, 2026 12:56
@codecov-commenter
Copy link
Copy Markdown

codecov-commenter commented Jan 6, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 95.42%. Comparing base (7ea8d8c) to head (a51c849).
⚠️ Report is 4 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #360   +/-   ##
=======================================
  Coverage   95.42%   95.42%           
=======================================
  Files          58       58           
  Lines        5003     5003           
=======================================
  Hits         4774     4774           
  Misses        229      229           

☔ 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.

@renovate renovate bot changed the title chore(deps): update dependency astral-sh/uv to v0.9.22 chore(deps): update dependency astral-sh/uv to v0.9.23 Jan 9, 2026
@renovate renovate bot force-pushed the renovate/astral-sh-uv-0.x branch 2 times, most recently from 2ed3a36 to 0278939 Compare January 10, 2026 00:45
@renovate renovate bot changed the title chore(deps): update dependency astral-sh/uv to v0.9.23 chore(deps): update dependency astral-sh/uv to v0.9.24 Jan 10, 2026
@renovate renovate bot force-pushed the renovate/astral-sh-uv-0.x branch from 0278939 to 094164b Compare January 14, 2026 01:58
@renovate renovate bot changed the title chore(deps): update dependency astral-sh/uv to v0.9.24 chore(deps): update dependency astral-sh/uv to v0.9.25 Jan 14, 2026
@renovate renovate bot force-pushed the renovate/astral-sh-uv-0.x branch from 094164b to e529753 Compare January 15, 2026 21:36
@renovate renovate bot changed the title chore(deps): update dependency astral-sh/uv to v0.9.25 chore(deps): update dependency astral-sh/uv to v0.9.26 Jan 15, 2026
@renovate renovate bot force-pushed the renovate/astral-sh-uv-0.x branch from e529753 to d9e03a5 Compare January 27, 2026 00:59
@renovate renovate bot changed the title chore(deps): update dependency astral-sh/uv to v0.9.26 chore(deps): update dependency astral-sh/uv to v0.9.27 Jan 27, 2026
@renovate renovate bot force-pushed the renovate/astral-sh-uv-0.x branch from d9e03a5 to 5c04cb5 Compare January 29, 2026 21:52
@renovate renovate bot changed the title chore(deps): update dependency astral-sh/uv to v0.9.27 chore(deps): update dependency astral-sh/uv to v0.9.28 Jan 29, 2026
@renovate renovate bot force-pushed the renovate/astral-sh-uv-0.x branch from 5c04cb5 to 491e238 Compare February 3, 2026 21:47
@renovate renovate bot changed the title chore(deps): update dependency astral-sh/uv to v0.9.28 chore(deps): update dependency astral-sh/uv to v0.9.29 Feb 3, 2026
@renovate renovate bot force-pushed the renovate/astral-sh-uv-0.x branch from 491e238 to c09d39d Compare February 5, 2026 01:56
@renovate renovate bot changed the title chore(deps): update dependency astral-sh/uv to v0.9.29 chore(deps): update dependency astral-sh/uv to v0.9.30 Feb 5, 2026
@renovate renovate bot force-pushed the renovate/astral-sh-uv-0.x branch from c09d39d to 3aac217 Compare February 5, 2026 21:12
@renovate renovate bot changed the title chore(deps): update dependency astral-sh/uv to v0.9.30 chore(deps): update dependency astral-sh/uv to v0.10.0 Feb 5, 2026
@renovate renovate bot force-pushed the renovate/astral-sh-uv-0.x branch from 3aac217 to ea887f9 Compare February 10, 2026 12:30
@renovate renovate bot changed the title chore(deps): update dependency astral-sh/uv to v0.10.0 chore(deps): update dependency astral-sh/uv to v0.10.1 Feb 10, 2026
@renovate renovate bot force-pushed the renovate/astral-sh-uv-0.x branch from ea887f9 to 287aa51 Compare February 10, 2026 22:35
@renovate renovate bot changed the title chore(deps): update dependency astral-sh/uv to v0.10.1 chore(deps): update dependency astral-sh/uv to v0.10.2 Feb 10, 2026
@renovate renovate bot force-pushed the renovate/astral-sh-uv-0.x branch from 287aa51 to 46fc87a Compare February 16, 2026 14:48
@renovate renovate bot changed the title chore(deps): update dependency astral-sh/uv to v0.10.2 chore(deps): update dependency astral-sh/uv to v0.10.3 Feb 16, 2026
@renovate renovate bot force-pushed the renovate/astral-sh-uv-0.x branch from 46fc87a to ae0d9a1 Compare February 18, 2026 01:03
@renovate renovate bot changed the title chore(deps): update dependency astral-sh/uv to v0.10.3 chore(deps): update dependency astral-sh/uv to v0.10.4 Feb 18, 2026
@renovate renovate bot force-pushed the renovate/astral-sh-uv-0.x branch from ae0d9a1 to 9b80396 Compare February 24, 2026 09:30
@renovate renovate bot changed the title chore(deps): update dependency astral-sh/uv to v0.10.4 chore(deps): update dependency astral-sh/uv to v0.10.5 Feb 24, 2026
@renovate renovate bot force-pushed the renovate/astral-sh-uv-0.x branch from 9b80396 to 1a1790f Compare February 25, 2026 01:15
@renovate renovate bot changed the title chore(deps): update dependency astral-sh/uv to v0.10.5 chore(deps): update dependency astral-sh/uv to v0.10.6 Feb 25, 2026
@renovate renovate bot force-pushed the renovate/astral-sh-uv-0.x branch from 1a1790f to 8b7f1b3 Compare February 27, 2026 17:21
@renovate renovate bot changed the title chore(deps): update dependency astral-sh/uv to v0.10.6 chore(deps): update dependency astral-sh/uv to v0.10.7 Feb 27, 2026
@renovate renovate bot force-pushed the renovate/astral-sh-uv-0.x branch from 8b7f1b3 to 11625d3 Compare March 4, 2026 02:01
@renovate renovate bot changed the title chore(deps): update dependency astral-sh/uv to v0.10.7 chore(deps): update dependency astral-sh/uv to v0.10.8 Mar 4, 2026
@renovate renovate bot force-pushed the renovate/astral-sh-uv-0.x branch from 11625d3 to 01b678e Compare March 6, 2026 22:35
@renovate renovate bot changed the title chore(deps): update dependency astral-sh/uv to v0.10.8 chore(deps): update dependency astral-sh/uv to v0.10.9 Mar 6, 2026
@renovate renovate bot force-pushed the renovate/astral-sh-uv-0.x branch from 01b678e to a6ea4d0 Compare March 13, 2026 22:00
@renovate renovate bot changed the title chore(deps): update dependency astral-sh/uv to v0.10.9 chore(deps): update dependency astral-sh/uv to v0.10.10 Mar 13, 2026
@renovate renovate bot force-pushed the renovate/astral-sh-uv-0.x branch from a6ea4d0 to 317e635 Compare March 17, 2026 01:01
@renovate renovate bot changed the title chore(deps): update dependency astral-sh/uv to v0.10.10 chore(deps): update dependency astral-sh/uv to v0.10.11 Mar 17, 2026
@renovate renovate bot changed the title chore(deps): update dependency astral-sh/uv to v0.10.11 chore(deps): update dependency astral-sh/uv to v0.10.11 - autoclosed Mar 17, 2026
@renovate renovate bot closed this Mar 17, 2026
@renovate renovate bot deleted the renovate/astral-sh-uv-0.x branch March 17, 2026 11:39
@renovate renovate bot changed the title chore(deps): update dependency astral-sh/uv to v0.10.11 - autoclosed chore(deps): update dependency astral-sh/uv to v0.10.12 Mar 20, 2026
@renovate renovate bot reopened this Mar 20, 2026
@renovate renovate bot force-pushed the renovate/astral-sh-uv-0.x branch 3 times, most recently from be99b9f to 6076baf Compare March 24, 2026 00:44
@renovate renovate bot changed the title chore(deps): update dependency astral-sh/uv to v0.10.12 chore(deps): update dependency astral-sh/uv to v0.11.0 Mar 24, 2026
@renovate renovate bot force-pushed the renovate/astral-sh-uv-0.x branch from 6076baf to c67a9ab Compare March 25, 2026 00:42
@renovate renovate bot changed the title chore(deps): update dependency astral-sh/uv to v0.11.0 chore(deps): update dependency astral-sh/uv to v0.11.1 Mar 25, 2026
@renovate renovate bot force-pushed the renovate/astral-sh-uv-0.x branch from c67a9ab to 92d992d Compare March 26, 2026 22:29
@renovate renovate bot changed the title chore(deps): update dependency astral-sh/uv to v0.11.1 chore(deps): update dependency astral-sh/uv to v0.11.2 Mar 26, 2026
@renovate renovate bot force-pushed the renovate/astral-sh-uv-0.x branch from 92d992d to a51c849 Compare April 1, 2026 22:42
@renovate renovate bot changed the title chore(deps): update dependency astral-sh/uv to v0.11.2 chore(deps): update dependency astral-sh/uv to v0.11.3 Apr 1, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant