Skip to content

chore(deps): update ghcr.io/astral-sh/uv docker tag to v0.11.1#473

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/docker-dependencies
Open

chore(deps): update ghcr.io/astral-sh/uv docker tag to v0.11.1#473
renovate[bot] wants to merge 1 commit intomainfrom
renovate/docker-dependencies

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Mar 16, 2026

This PR contains the following updates:

Package Type Update Change
ghcr.io/astral-sh/uv final minor 0.10.90.11.1

Release Notes

astral-sh/uv (ghcr.io/astral-sh/uv)

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)

v0.10.11

Compare Source

Released on 2026-03-16.

Enhancements
  • Fetch Ruff release metadata from an Astral mirror (#​18358)
  • Use PEP 639 license metadata for uv itself (#​16477)
Performance
  • Improve distribution id performance (#​18486)
Bug fixes
  • Allow --project to refer to a pyproject.toml directly and reduce to a warning on other files (#​18513)
  • Disable SYSTEM_VERSION_COMPAT when querying interpreters on macOS (#​18452)
  • Enforce available distributions for supported environments (#​18451)
  • Fix uv sync --active recreating active environments when UV_PYTHON_INSTALL_DIR is relative (#​18398)
Documentation
  • Add missing -o requirements.txt in uv pip compile example (#​12308)
  • Link to organization security policy (#​18449)
  • Link to the AI policy in the contributing guide (#​18448)

v0.10.10

Compare Source

Released on 2026-03-13.

Python
Enhancements
  • Add --outdated flag to uv tool list (#​18318)
  • Add riscv64 musl target to build-release-binaries workflow (#​18228)
  • Fetch Ruff from an Astral mirror (#​18286)
  • Improve error handling for platform detection in Python downloads (#​18453)
  • Warn if --project directory does not exist (#​17714)
  • Warn when workspace member scripts are skipped due to missing build system (#​18389)
  • Update build backend versions used in uv init (#​18417)
  • Log explicit config file path in verbose output (#​18353)
  • Make uv cache clear an alias of uv cache clean (#​18420)
  • Reject invalid classifiers, warn on license classifiers in uv_build (#​18419)
Preview features
  • Add links to uv audit output (#​18392)
  • Output/report formatting for uv audit (#​18193)
  • Switch to batched OSV queries for uv audit (#​18394)
Bug fixes
  • Avoid sharing version metadata across indexes (#​18373)
  • Bump zlib-rs to 0.6.2 to fix panic on decompression of large wheels on Windows (#​18362)
  • Filter out unsupported environment wheels (#​18445)
  • Preserve absolute/relative paths in lockfiles (#​18176)
  • Recreate Python environments under uv tool install --force (#​18399)
  • Respect timestamp and other cache keys in cached environments (#​18396)
  • Simplify selected extra markers in uv export (#​18433)
  • Send pyx mint-token requests with a proper Content-Type (#​18334)
  • Fix Windows operating system and version reporting (#​18383)
Documentation
  • Update the platform support policy with a tier 3 section including freebsd and 32-bit windows (#​18345)

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), 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 this update 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 added the dependencies Pull requests that update a dependency file label Mar 16, 2026
@codecov
Copy link

codecov bot commented Mar 16, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 96.07%. Comparing base (da9ce20) to head (2a60727).
✅ All tests successful. No failed tests found.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #473   +/-   ##
=======================================
  Coverage   96.07%   96.07%           
=======================================
  Files          40       40           
  Lines        2320     2320           
=======================================
  Hits         2229     2229           
  Misses         91       91           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/docker-dependencies branch from 030e228 to 198b190 Compare March 17, 2026 00:52
@renovate renovate bot changed the title chore(deps): update ghcr.io/astral-sh/uv docker tag to v0.10.10 chore(deps): update ghcr.io/astral-sh/uv docker tag to v0.10.11 Mar 17, 2026
@renovate renovate bot force-pushed the renovate/docker-dependencies branch from 198b190 to 51c3552 Compare March 20, 2026 01:34
@renovate renovate bot changed the title chore(deps): update ghcr.io/astral-sh/uv docker tag to v0.10.11 chore(deps): update ghcr.io/astral-sh/uv docker tag to v0.10.12 Mar 20, 2026
@renovate renovate bot force-pushed the renovate/docker-dependencies branch from 51c3552 to d559fad Compare March 23, 2026 21:53
@renovate renovate bot changed the title chore(deps): update ghcr.io/astral-sh/uv docker tag to v0.10.12 chore(deps): update ghcr.io/astral-sh/uv docker tag to v0.11.0 Mar 23, 2026
@renovate renovate bot force-pushed the renovate/docker-dependencies branch from d559fad to 2a60727 Compare March 25, 2026 01:13
@renovate renovate bot changed the title chore(deps): update ghcr.io/astral-sh/uv docker tag to v0.11.0 chore(deps): update ghcr.io/astral-sh/uv docker tag to v0.11.1 Mar 25, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants