Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: astral-sh/uv
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.9.1
Choose a base ref
...
head repository: astral-sh/uv
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.9.2
Choose a head ref
  • 7 commits
  • 35 files changed
  • 9 contributors

Commits on Oct 9, 2025

  1. fix recompiling every time in uv-python (#16214)

    Cargo is currently recompiling uv-python on every invocation because the
    minified JSON output file is getting a mod time newer than the last run.
    Instead, set the mod time of the output file to the same as the input
    file.
    dead10ck authored Oct 9, 2025
    Configuration menu
    Copy the full SHA
    ea5a092 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2025

  1. Missing added_in on new env vars (#16217)

    ## Summary
    
    Adds the version for environment variables added in
    #16040 and
    #16125. as these were in-flight
    before documentation versioning was added.
    
    Adds ability to emit a compiler error when added in is missing for
    improved reporting to the developer.
    
    e.g. example for the ones fixed in this PR
    
    ```shell
    error: missing #[attr_added_in("x.y.z")] on `UV_UPLOAD_HTTP_TIMEOUT`
           note: env vars for an upcoming release should be annotated with `#[attr_added_in("next release")]`
       --> crates\uv-static\src\env_vars.rs:593:15
        |
    593 |     pub const UV_UPLOAD_HTTP_TIMEOUT: &'static str = "UV_UPLOAD_HTTP_TIMEOUT";
        |               ^^^^^^^^^^^^^^^^^^^^^^
    
    error: missing #[attr_added_in("x.y.z")] on `UV_WORKING_DIRECTORY`
           note: env vars for an upcoming release should be annotated with `#[attr_added_in("next release")]`
        --> crates\uv-static\src\env_vars.rs:1087:15
         |
    1087 |     pub const UV_WORKING_DIRECTORY: &'static str = "UV_WORKING_DIRECTORY";
         |               ^^^^^^^^^^^^^^^^^^^^
    error: could not compile `uv-static` (lib) due to 2 previous errors
    ```
    samypr100 authored Oct 10, 2025
    Configuration menu
    Copy the full SHA
    d5dd43a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d45acae View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6fb00a9 View commit details
    Browse the repository at this point in the history
  4. Add uv tool list --show-python (#15814)

    <!--
    Thank you for contributing to uv! To help us out with reviewing, please
    consider the following:
    
    - Does this pull request include a summary of the change? (See below.)
    - Does this pull request include a descriptive title?
    - Does this pull request include references to any relevant issues?
    -->
    
    Closes #15312 
    Closes #16237
    
    ---------
    
    Co-authored-by: pythonweb2 <32141163+pythonweb2@users.noreply.github.com>
    Co-authored-by: Wade Roberts <wade.roberts@centralsquare.com>
    3 people authored Oct 10, 2025
    Configuration menu
    Copy the full SHA
    b4168e6 View commit details
    Browse the repository at this point in the history
  5. Sync latest Python releases (#16229)

    Add python-build-standalone 20251010 for CPython 3.12.12, 3.11.14, 3.10.19 and 3.9.24.
    
    Co-authored-by: Geoffrey Thomas <geofft@ldpreload.com>
    github-actions[bot] and geofft authored Oct 10, 2025
    Configuration menu
    Copy the full SHA
    d54a5bb View commit details
    Browse the repository at this point in the history
  6. Bump version to 0.9.2 (#16238)

    Co-authored-by: Geoffrey Thomas <geofft@ldpreload.com>
    woodruffw and geofft authored Oct 10, 2025
    Configuration menu
    Copy the full SHA
    141369c View commit details
    Browse the repository at this point in the history
Loading