Update dependency uv_build to >=0.11.7,<0.12.0 #53

Open
renovate-bot wants to merge 1 commit from renovate/uv_build-0.x into main
Collaborator

This PR contains the following updates:

Package Change Age Confidence
uv_build (source, changelog) >=0.10.6,<0.11.0>=0.11.7,<0.12.0 age confidence

Release Notes

astral-sh/uv (uv_build)

v0.11.7

Compare Source

Released on 2026-04-15.

Python
  • Upgrade CPython build to 2026041 including an OpenSSL security upgrade (#​19004)
Enhancements
  • Elevate configuration errors to required-version mismatches (#​18977)
  • Further improve TLS certificate validation messages (#​18933)
  • Improve --exclude-newer hints (#​18952)
Preview features
  • Fix --script handling in uv audit (#​18970)
  • Fix traversal of extras in uv audit (#​18970)
Bug fixes
  • De-quote workspace metadata in linehaul data (#​18966)
  • Avoid installing tool workspace member dependencies as editable (#​18891)
  • Emit JSON report for uv sync --check failures (#​18976)
  • Filter and warn on invalid TLS certificates (#​18951)
  • Fix equality comparisons for version specifiers with ~= operators (#​18960)
  • Fix stale Python upgrade preview feature check in project environment construction (#​18961)
  • Improve Windows path normalization (#​18945)

v0.11.6

Compare Source

Released on 2026-04-09.

This release resolves a low severity security advisory in which wheels with malformed RECORD entries could delete arbitrary files on uninstall. See GHSA-pjjw-68hj-v9mw for details.

Bug fixes
  • Do not remove files outside the venv on uninstall (#​18942)
  • Validate and heal wheel RECORD during installation (#​18943)
  • Avoid uv cache clean errors due to Win32 path normalization (#​18856)

v0.11.5

Compare Source

Released on 2026-04-08.

Python
  • Add CPython 3.13.13, 3.14.4, and 3.15.0a8 (#​18908)
Enhancements
  • Fix build_system.requires error message (#​18911)
  • Remove trailing path separators in path normalization (#​18915)
  • Improve error messages for unsupported or invalid TLS certificates (#​18924)
Preview features
  • Add exclude-newer to [[tool.uv.index]] (#​18839)
  • uv audit: add context/warnings for ignored vulnerabilities (#​18905)
Bug fixes
  • Normalize persisted fork markers before lock equality checks (#​18612)
  • Clear junction properly when uninstalling Python versions on Windows (#​18815)
  • Report error cleanly instead of panicking on TLS certificate error (#​18904)
Documentation

v0.11.4

Compare Source

Released on 2026-04-07.

Enhancements
  • Add support for --upgrade-group (#​18266)
  • Merge repeated archive URL hashes by version ID (#​18841)
  • Require all direct URL hash algorithms to match (#​18842)
Bug fixes
  • Avoid panics in environment finding via cycle detection (#​18828)
  • Enforce direct URL hashes for pyproject.toml dependencies (#​18786)
  • Error on --locked and --frozen when script lockfile is missing (#​18832)
  • Fix uv export extra resolution for workspace member and conflicting extras (#​18888)
  • Include conflicts defined in virtual workspace root (#​18886)
  • Recompute relative exclude-newer values during uv tree --outdated (#​18899)
  • Respect --exclude-newer in uv tool list --outdated (#​18861)
  • Sort by comparator to break specifier ties (#​18850)
  • Store relative timestamps in tool receipts (#​18901)
  • Track newly-activated extras when determining conflicts (#​18852)
  • Patch Cargo.lock in uv-build source distributions (#​18831)
Documentation
  • Clarify that --exclude-newer compares artifact upload times (#​18830)

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)

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 this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [uv_build](https://pypi.org/project/uv/) ([source](https://github.com/astral-sh/uv), [changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md)) | `>=0.10.6,<0.11.0` → `>=0.11.7,<0.12.0` | ![age](https://developer.mend.io/api/mc/badges/age/pypi/uv-build/0.11.7?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/uv-build/0.10.12/0.11.7?slim=true) | --- ### Release Notes <details> <summary>astral-sh/uv (uv_build)</summary> ### [`v0.11.7`](https://github.com/astral-sh/uv/blob/HEAD/CHANGELOG.md#0117) [Compare Source](https://github.com/astral-sh/uv/compare/0.11.6...0.11.7) Released on 2026-04-15. ##### Python - Upgrade CPython build to [`2026041`](https://github.com/astral-sh/uv/commit/20260414) including an OpenSSL security upgrade ([#&#8203;19004](https://github.com/astral-sh/uv/pull/19004)) ##### Enhancements - Elevate configuration errors to `required-version` mismatches ([#&#8203;18977](https://github.com/astral-sh/uv/pull/18977)) - Further improve TLS certificate validation messages ([#&#8203;18933](https://github.com/astral-sh/uv/pull/18933)) - Improve `--exclude-newer` hints ([#&#8203;18952](https://github.com/astral-sh/uv/pull/18952)) ##### Preview features - Fix `--script` handling in `uv audit` ([#&#8203;18970](https://github.com/astral-sh/uv/pull/18970)) - Fix traversal of extras in `uv audit` ([#&#8203;18970](https://github.com/astral-sh/uv/pull/18970)) ##### Bug fixes - De-quote `workspace metadata` in linehaul data ([#&#8203;18966](https://github.com/astral-sh/uv/pull/18966)) - Avoid installing tool workspace member dependencies as editable ([#&#8203;18891](https://github.com/astral-sh/uv/pull/18891)) - Emit JSON report for `uv sync --check` failures ([#&#8203;18976](https://github.com/astral-sh/uv/pull/18976)) - Filter and warn on invalid TLS certificates ([#&#8203;18951](https://github.com/astral-sh/uv/pull/18951)) - Fix equality comparisons for version specifiers with `~=` operators ([#&#8203;18960](https://github.com/astral-sh/uv/pull/18960)) - Fix stale Python upgrade preview feature check in project environment construction ([#&#8203;18961](https://github.com/astral-sh/uv/pull/18961)) - Improve Windows path normalization ([#&#8203;18945](https://github.com/astral-sh/uv/pull/18945)) ### [`v0.11.6`](https://github.com/astral-sh/uv/blob/HEAD/CHANGELOG.md#0116) [Compare Source](https://github.com/astral-sh/uv/compare/0.11.5...0.11.6) Released on 2026-04-09. This release resolves a low severity security advisory in which wheels with malformed RECORD entries could delete arbitrary files on uninstall. See [GHSA-pjjw-68hj-v9mw](https://github.com/astral-sh/uv/security/advisories/GHSA-pjjw-68hj-v9mw) for details. ##### Bug fixes - Do not remove files outside the venv on uninstall ([#&#8203;18942](https://github.com/astral-sh/uv/pull/18942)) - Validate and heal wheel `RECORD` during installation ([#&#8203;18943](https://github.com/astral-sh/uv/pull/18943)) - Avoid `uv cache clean` errors due to Win32 path normalization ([#&#8203;18856](https://github.com/astral-sh/uv/pull/18856)) ### [`v0.11.5`](https://github.com/astral-sh/uv/blob/HEAD/CHANGELOG.md#0115) [Compare Source](https://github.com/astral-sh/uv/compare/0.11.4...0.11.5) Released on 2026-04-08. ##### Python - Add CPython 3.13.13, 3.14.4, and 3.15.0a8 ([#&#8203;18908](https://github.com/astral-sh/uv/pull/18908)) ##### Enhancements - Fix `build_system.requires` error message ([#&#8203;18911](https://github.com/astral-sh/uv/pull/18911)) - Remove trailing path separators in path normalization ([#&#8203;18915](https://github.com/astral-sh/uv/pull/18915)) - Improve error messages for unsupported or invalid TLS certificates ([#&#8203;18924](https://github.com/astral-sh/uv/pull/18924)) ##### Preview features - Add `exclude-newer` to `[[tool.uv.index]]` ([#&#8203;18839](https://github.com/astral-sh/uv/pull/18839)) - `uv audit`: add context/warnings for ignored vulnerabilities ([#&#8203;18905](https://github.com/astral-sh/uv/pull/18905)) ##### Bug fixes - Normalize persisted fork markers before lock equality checks ([#&#8203;18612](https://github.com/astral-sh/uv/pull/18612)) - Clear junction properly when uninstalling Python versions on Windows ([#&#8203;18815](https://github.com/astral-sh/uv/pull/18815)) - Report error cleanly instead of panicking on TLS certificate error ([#&#8203;18904](https://github.com/astral-sh/uv/pull/18904)) ##### Documentation - Remove the legacy `PIP_COMPATIBILITY.md` redirect file ([#&#8203;18928](https://github.com/astral-sh/uv/pull/18928)) - Fix `uv init example-bare --bare` examples ([#&#8203;18822](https://github.com/astral-sh/uv/pull/18822), [#&#8203;18925](https://github.com/astral-sh/uv/pull/18925)) ### [`v0.11.4`](https://github.com/astral-sh/uv/blob/HEAD/CHANGELOG.md#0114) [Compare Source](https://github.com/astral-sh/uv/compare/0.11.3...0.11.4) Released on 2026-04-07. ##### Enhancements - Add support for `--upgrade-group` ([#&#8203;18266](https://github.com/astral-sh/uv/pull/18266)) - Merge repeated archive URL hashes by version ID ([#&#8203;18841](https://github.com/astral-sh/uv/pull/18841)) - Require all direct URL hash algorithms to match ([#&#8203;18842](https://github.com/astral-sh/uv/pull/18842)) ##### Bug fixes - Avoid panics in environment finding via cycle detection ([#&#8203;18828](https://github.com/astral-sh/uv/pull/18828)) - Enforce direct URL hashes for `pyproject.toml` dependencies ([#&#8203;18786](https://github.com/astral-sh/uv/pull/18786)) - Error on `--locked` and `--frozen` when script lockfile is missing ([#&#8203;18832](https://github.com/astral-sh/uv/pull/18832)) - Fix `uv export` extra resolution for workspace member and conflicting extras ([#&#8203;18888](https://github.com/astral-sh/uv/pull/18888)) - Include conflicts defined in virtual workspace root ([#&#8203;18886](https://github.com/astral-sh/uv/pull/18886)) - Recompute relative `exclude-newer` values during `uv tree --outdated` ([#&#8203;18899](https://github.com/astral-sh/uv/pull/18899)) - Respect `--exclude-newer` in `uv tool list --outdated` ([#&#8203;18861](https://github.com/astral-sh/uv/pull/18861)) - Sort by comparator to break specifier ties ([#&#8203;18850](https://github.com/astral-sh/uv/pull/18850)) - Store relative timestamps in tool receipts ([#&#8203;18901](https://github.com/astral-sh/uv/pull/18901)) - Track newly-activated extras when determining conflicts ([#&#8203;18852](https://github.com/astral-sh/uv/pull/18852)) - Patch `Cargo.lock` in `uv-build` source distributions ([#&#8203;18831](https://github.com/astral-sh/uv/pull/18831)) ##### Documentation - Clarify that `--exclude-newer` compares artifact upload times ([#&#8203;18830](https://github.com/astral-sh/uv/pull/18830)) ### [`v0.11.3`](https://github.com/astral-sh/uv/blob/HEAD/CHANGELOG.md#0113) [Compare Source](https://github.com/astral-sh/uv/compare/0.11.2...0.11.3) Released on 2026-04-01. ##### Enhancements - Add progress bar for hashing phase in uv publish ([#&#8203;18752](https://github.com/astral-sh/uv/pull/18752)) - Add support for ROCm 7.2 ([#&#8203;18730](https://github.com/astral-sh/uv/pull/18730)) - Emit abi3t tags for every abi3 version ([#&#8203;18777](https://github.com/astral-sh/uv/pull/18777)) - Expand `uv workspace metadata` with dependency information from the lock ([#&#8203;18356](https://github.com/astral-sh/uv/pull/18356)) - Implement support for PEP 803 ([#&#8203;18767](https://github.com/astral-sh/uv/pull/18767)) - Pretty-print platform in built wheel errors ([#&#8203;18738](https://github.com/astral-sh/uv/pull/18738)) - Publish installers to `/installers/uv/latest` on the mirror ([#&#8203;18725](https://github.com/astral-sh/uv/pull/18725)) - Show free-threaded Python in built-wheel errors ([#&#8203;18740](https://github.com/astral-sh/uv/pull/18740)) ##### Preview features - Add `--ignore` and `--ignore-until-fixed` to `uv audit` ([#&#8203;18737](https://github.com/astral-sh/uv/pull/18737)) ##### Bug fixes - Bump simple API cache ([#&#8203;18797](https://github.com/astral-sh/uv/pull/18797)) - Don't drop `blake2b` hashes ([#&#8203;18794](https://github.com/astral-sh/uv/pull/18794)) - Handle broken range request implementations ([#&#8203;18780](https://github.com/astral-sh/uv/pull/18780)) - Remove `powerpc64-unknown-linux-gnu` from release build targets ([#&#8203;18800](https://github.com/astral-sh/uv/pull/18800)) - Respect dependency metadata overrides in `uv pip check` ([#&#8203;18742](https://github.com/astral-sh/uv/pull/18742)) - Support debug CPython ABI tags in environment compatibility ([#&#8203;18739](https://github.com/astral-sh/uv/pull/18739)) ##### Documentation - Document `false` opt-out for `exclude-newer-package` ([#&#8203;18768](https://github.com/astral-sh/uv/pull/18768), [#&#8203;18803](https://github.com/astral-sh/uv/pull/18803)) ### [`v0.11.2`](https://github.com/astral-sh/uv/blob/HEAD/CHANGELOG.md#0112) [Compare Source](https://github.com/astral-sh/uv/compare/0.11.1...0.11.2) Released on 2026-03-26. ##### Enhancements - Add a dedicated Windows PE editing error ([#&#8203;18710](https://github.com/astral-sh/uv/pull/18710)) - Make `uv self update` fetch the manifest from the mirror first ([#&#8203;18679](https://github.com/astral-sh/uv/pull/18679)) - Use uv reqwest client for self update ([#&#8203;17982](https://github.com/astral-sh/uv/pull/17982)) - Show `uv self update` success and failure messages with `--quiet` ([#&#8203;18645](https://github.com/astral-sh/uv/pull/18645)) ##### Preview features - Evaluate extras and groups when determining auditable packages ([#&#8203;18511](https://github.com/astral-sh/uv/pull/18511)) ##### Bug fixes - Skip redundant project configuration parsing for `uv run` ([#&#8203;17890](https://github.com/astral-sh/uv/pull/17890)) ### [`v0.11.1`](https://github.com/astral-sh/uv/blob/HEAD/CHANGELOG.md#0111) [Compare Source](https://github.com/astral-sh/uv/compare/0.11.0...0.11.1) Released on 2026-03-24. ##### Bug fixes - Add missing hash verification for `riscv64gc-unknown-linux-musl` ([#&#8203;18686](https://github.com/astral-sh/uv/pull/18686)) - Fallback to direct download when direct URL streaming is unsupported ([#&#8203;18688](https://github.com/astral-sh/uv/pull/18688)) - Revert treating 'Dynamic' values as case-insensitive ([#&#8203;18692](https://github.com/astral-sh/uv/pull/18692)) - Remove torchdata from list of packages to source from the PyTorch index ([#&#8203;18703](https://github.com/astral-sh/uv/pull/18703)) - Special-case `==` Python version request ranges ([#&#8203;9697](https://github.com/astral-sh/uv/pull/9697)) ##### Documentation - Cover `--python <dir>` in "Using arbitrary Python environments" ([#&#8203;6457](https://github.com/astral-sh/uv/pull/6457)) - Fix version annotations for `PS_MODULE_PATH` and `UV_WORKING_DIR` ([#&#8203;18691](https://github.com/astral-sh/uv/pull/18691)) ### [`v0.11.0`](https://github.com/astral-sh/uv/blob/HEAD/CHANGELOG.md#0110) [Compare Source](https://github.com/astral-sh/uv/compare/0.10.12...0.11.0) 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](https://seanmonstar.com/blog/reqwest-v013-rustls-default/) which included some breaking changes to TLS certificate verification. The following changes are included: - [`rustls-platform-verifier`](https://github.com/rustls/rustls-platform-verifier) is used instead of [`rustls-native-certs`](https://github.com/rustls/rustls-native-certs) and [`webpki`](https://github.com/rustls/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](https://support.apple.com/en-us/103255) or [revocation of certificates](https://en.wikipedia.org/wiki/Certificate_revocation) 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`](https://github.com/aws/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](https://github.com/astral-sh/uv/blob/b6854d77bfd0cb78157fecaf8b30126c6f16bc11/CONTRIBUTING.md#setup) guide for details. - Empty `SSL_CERT_FILE` values are ignored (for consistency with `SSL_CERT_DIR`) See [#&#8203;18550](https://github.com/astral-sh/uv/pull/18550) for details. ##### Python - Enable frame pointers for improved profiling on Linux x86-64 and aarch64 See the [python-build-standalone release notes](https://github.com/astral-sh/python-build-standalone/releases/20260320) for details. ##### Enhancements - Treat 'Dynamic' values as case-insensitive ([#&#8203;18669](https://github.com/astral-sh/uv/pull/18669)) - Use a dedicated error for invalid cache control headers ([#&#8203;18657](https://github.com/astral-sh/uv/pull/18657)) - Enable checksum verification in the generated installer script ([#&#8203;18625](https://github.com/astral-sh/uv/pull/18625)) ##### Preview features - Add `--service-format` and `--service-url` to `uv audit` ([#&#8203;18571](https://github.com/astral-sh/uv/pull/18571)) ##### Performance - Avoid holding flat index lock across indexes ([#&#8203;18659](https://github.com/astral-sh/uv/pull/18659)) ##### Bug fixes - Find the dynamic linker on the file system when sniffing binaries fails ([#&#8203;18457](https://github.com/astral-sh/uv/pull/18457)) - Fix export of conflicting workspace members with dependencies ([#&#8203;18666](https://github.com/astral-sh/uv/pull/18666)) - Respect installed settings in `uv tool list --outdated` ([#&#8203;18586](https://github.com/astral-sh/uv/pull/18586)) - Treat paths originating as PEP 508 URLs which contain expanded variables as relative ([#&#8203;18680](https://github.com/astral-sh/uv/pull/18680)) - Fix `uv export` for workspace member packages with conflicts ([#&#8203;18635](https://github.com/astral-sh/uv/pull/18635)) - Continue to alternative authentication providers when the pyx store has no token ([#&#8203;18425](https://github.com/astral-sh/uv/pull/18425)) - Use redacted URLs for log messages in cached client ([#&#8203;18599](https://github.com/astral-sh/uv/pull/18599)) ##### Documentation - Add details on Linux versions to the platform policy ([#&#8203;18574](https://github.com/astral-sh/uv/pull/18574)) - Clarify `FLASH_ATTENTION_SKIP_CUDA_BUILD` guidance for `flash-attn` installs ([#&#8203;18473](https://github.com/astral-sh/uv/pull/18473)) - Split the dependency bots page into two separate pages ([#&#8203;18597](https://github.com/astral-sh/uv/pull/18597)) - Split the alternative indexes page into separate pages ([#&#8203;18607](https://github.com/astral-sh/uv/pull/18607)) </details> --- ### 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 this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4wLjYiLCJ1cGRhdGVkSW5WZXIiOiI0My4wLjYiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=-->
renovate-bot changed title from Update dependency uv_build to >=0.11.0,<0.12.0 to Update dependency uv_build to >=0.11.1,<0.12.0 2026-03-25 00:02:40 +00:00
renovate-bot force-pushed renovate/uv_build-0.x from 053d347e78 to 7e89a8ff5f 2026-03-25 00:02:42 +00:00 Compare
renovate-bot changed title from Update dependency uv_build to >=0.11.1,<0.12.0 to Update dependency uv_build to >=0.11.2,<0.12.0 2026-03-27 00:02:43 +00:00
renovate-bot force-pushed renovate/uv_build-0.x from 7e89a8ff5f to 7dbfcabd8a 2026-03-27 00:02:44 +00:00 Compare
renovate-bot changed title from Update dependency uv_build to >=0.11.2,<0.12.0 to Update dependency uv_build to >=0.11.3,<0.12.0 2026-04-02 00:04:03 +00:00
renovate-bot force-pushed renovate/uv_build-0.x from 7dbfcabd8a to 339d00b173 2026-04-02 00:04:03 +00:00 Compare
renovate-bot changed title from Update dependency uv_build to >=0.11.3,<0.12.0 to Update dependency uv_build to >=0.11.4,<0.12.0 2026-04-08 06:04:58 +00:00
renovate-bot force-pushed renovate/uv_build-0.x from 339d00b173 to 24a924ed97 2026-04-08 06:04:58 +00:00 Compare
renovate-bot changed title from Update dependency uv_build to >=0.11.4,<0.12.0 to Update dependency uv_build to >=0.11.5,<0.12.0 2026-04-09 00:05:28 +00:00
renovate-bot force-pushed renovate/uv_build-0.x from 24a924ed97 to 6a0e05e541 2026-04-09 00:05:29 +00:00 Compare
renovate-bot changed title from Update dependency uv_build to >=0.11.5,<0.12.0 to Update dependency uv_build to >=0.11.6,<0.12.0 2026-04-09 18:05:26 +00:00
renovate-bot force-pushed renovate/uv_build-0.x from 6a0e05e541 to 30dee0cf9d 2026-04-09 18:05:28 +00:00 Compare
renovate-bot changed title from Update dependency uv_build to >=0.11.6,<0.12.0 to Update dependency uv_build to >=0.11.7,<0.12.0 2026-04-16 00:05:32 +00:00
renovate-bot force-pushed renovate/uv_build-0.x from 30dee0cf9d to f71f37d133 2026-04-16 00:05:33 +00:00 Compare
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/uv_build-0.x:renovate/uv_build-0.x
git switch renovate/uv_build-0.x

Merge

Merge the changes and update on Forgejo.
git switch main
git merge --no-ff renovate/uv_build-0.x
git switch renovate/uv_build-0.x
git rebase main
git switch main
git merge --ff-only renovate/uv_build-0.x
git switch renovate/uv_build-0.x
git rebase main
git switch main
git merge --no-ff renovate/uv_build-0.x
git switch main
git merge --squash renovate/uv_build-0.x
git switch main
git merge --ff-only renovate/uv_build-0.x
git switch main
git merge renovate/uv_build-0.x
git push origin main
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
gravityfargo/modernleft-docs!53
No description provided.