dependabot[bot] opened a new pull request, #20981:
URL: https://github.com/apache/datafusion/pull/20981

   Bumps [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) from 7.3.1 
to 7.6.0.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/astral-sh/setup-uv/releases";>astral-sh/setup-uv's 
releases</a>.</em></p>
   <blockquote>
   <h2>v7.6.0 🌈 Fetch uv from Astral's mirror by default</h2>
   <h2>Changes</h2>
   <p>We now default to download uv from <code>releases.astral.sh</code>.
   This means by default we don't hit the GitHub API at all and shouldn't see 
any rate limits and timeouts any more.</p>
   <h2>🚀 Enhancements</h2>
   <ul>
   <li>Fetch uv from Astral's mirror by default <a 
href="https://github.com/zsol";><code>@​zsol</code></a> (<a 
href="https://redirect.github.com/astral-sh/setup-uv/issues/809";>#809</a>)</li>
   </ul>
   <h2>🧰 Maintenance</h2>
   <ul>
   <li>Switch to ESM for source and test, use CommonJS for dist <a 
href="https://github.com/eifinger";><code>@​eifinger</code></a> (<a 
href="https://redirect.github.com/astral-sh/setup-uv/issues/806";>#806</a>)</li>
   <li>chore: update known checksums for 0.10.10 @<a 
href="https://github.com/apps/github-actions";>github-actions[bot]</a> (<a 
href="https://redirect.github.com/astral-sh/setup-uv/issues/804";>#804</a>)</li>
   </ul>
   <h2>⬆️ Dependency updates</h2>
   <ul>
   <li>chore(deps): bump zizmorcore/zizmor-action from 0.5.0 to 0.5.2 @<a 
href="https://github.com/apps/dependabot";>dependabot[bot]</a> (<a 
href="https://redirect.github.com/astral-sh/setup-uv/issues/808";>#808</a>)</li>
   <li>Bump deps <a 
href="https://github.com/eifinger";><code>@​eifinger</code></a> (<a 
href="https://redirect.github.com/astral-sh/setup-uv/issues/805";>#805</a>)</li>
   </ul>
   <h2>v7.5.0 🌈 Use <code>astral-sh/versions</code> as version provider</h2>
   <h1>No more rate-limits</h1>
   <p>This release addresses a long-standing source of timeouts and rate-limit 
failures in setup-uv.</p>
   <p>Previously, the action resolved version identifiers like 0.5.x by 
iterating over available uv releases via the GitHub API to find the best match. 
In contrast, latest and exact versions such as 0.5.0 skipped version resolution 
entirely and downloaded uv directly.</p>
   <p>The <code>manifest-file</code> input was an earlier attempt to improve 
this. It allows providing an url to a file that lists available versions, 
checksums, and even custom download URLs. The action also shipped with such a 
manifest.
   However, because that bundled file could become outdated whenever new uv 
releases were published, the action still had to fall back to the GitHub API in 
many cases.</p>
   <p>This release solves the problem by sourcing version data from Astral’s 
versions repository via the raw content endpoint:</p>
   <p><a 
href="https://raw.githubusercontent.com/astral-sh/versions/refs/heads/main/v1/uv.ndjson";>https://raw.githubusercontent.com/astral-sh/versions/refs/heads/main/v1/uv.ndjson</a></p>
   <p>By using the raw endpoint instead of the GitHub API, version resolution 
no longer depends on API authentication and is much less likely to run into 
rate limits or timeouts.</p>
   <hr />
   <blockquote>
   <p>[!TIP]
   The next section is only interesting for users of the 
<code>manifest-file</code> input</p>
   </blockquote>
   <p>The <code>manifest-file</code> input lets you override that source with 
your own URL, for example to test custom uv builds or alternate download 
locations.</p>
   <p>The manifest file must be in NDJSON format, where each line is a JSON 
object representing a version and its artifacts. For example:</p>
   <pre 
lang="json"><code>{&quot;version&quot;:&quot;0.10.7&quot;,&quot;artifacts&quot;:[{&quot;platform&quot;:&quot;x86_64-unknown-linux-gnu&quot;,&quot;variant&quot;:&quot;default&quot;,&quot;url&quot;:&quot;https://example.com/uv-x86_64-unknown-linux-gnu.tar.gz&quot;,&quot;archive_format&quot;:&quot;tar.gz&quot;,&quot;sha256&quot;:&quot;...&quot;}]}
   
{&quot;version&quot;:&quot;0.10.6&quot;,&quot;artifacts&quot;:[{&quot;platform&quot;:&quot;x86_64-unknown-linux-gnu&quot;,&quot;variant&quot;:&quot;default&quot;,&quot;url&quot;:&quot;https://example.com/uv-x86_64-unknown-linux-gnu.tar.gz&quot;,&quot;archive_format&quot;:&quot;tar.gz&quot;,&quot;sha256&quot;:&quot;...&quot;}]}
   </code></pre>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/astral-sh/setup-uv/commit/37802adc94f370d6bfd71619e3f0bf239e1f3b78";><code>37802ad</code></a>
 Fetch uv from Astral's mirror by default (<a 
href="https://redirect.github.com/astral-sh/setup-uv/issues/809";>#809</a>)</li>
   <li><a 
href="https://github.com/astral-sh/setup-uv/commit/9f00d186ce05fb186322da2c89bac726cc9005f5";><code>9f00d18</code></a>
 chore(deps): bump zizmorcore/zizmor-action from 0.5.0 to 0.5.2 (<a 
href="https://redirect.github.com/astral-sh/setup-uv/issues/808";>#808</a>)</li>
   <li><a 
href="https://github.com/astral-sh/setup-uv/commit/fd8f376b22c1219b8021404baf54539061a0339a";><code>fd8f376</code></a>
 Switch to ESM for source and test, use CommonJS for dist (<a 
href="https://redirect.github.com/astral-sh/setup-uv/issues/806";>#806</a>)</li>
   <li><a 
href="https://github.com/astral-sh/setup-uv/commit/f9070de1eac8816a02afc90f4a12cc6fe70d141c";><code>f9070de</code></a>
 Bump deps (<a 
href="https://redirect.github.com/astral-sh/setup-uv/issues/805";>#805</a>)</li>
   <li><a 
href="https://github.com/astral-sh/setup-uv/commit/cadb67bdc9933e2f8795f82ab47acc5f41ed4d31";><code>cadb67b</code></a>
 chore: update known checksums for 0.10.10 (<a 
href="https://redirect.github.com/astral-sh/setup-uv/issues/804";>#804</a>)</li>
   <li><a 
href="https://github.com/astral-sh/setup-uv/commit/e06108dd0aef18192324c70427afc47652e63a82";><code>e06108d</code></a>
 Use astral-sh/versions as primary version provider (<a 
href="https://redirect.github.com/astral-sh/setup-uv/issues/802";>#802</a>)</li>
   <li><a 
href="https://github.com/astral-sh/setup-uv/commit/0f6ec07aafe46cff7a322c837e5ba37d95c82b00";><code>0f6ec07</code></a>
 docs: replace copilot instructions with AGENTS.md (<a 
href="https://redirect.github.com/astral-sh/setup-uv/issues/794";>#794</a>)</li>
   <li><a 
href="https://github.com/astral-sh/setup-uv/commit/821e5c98158b218f7c8e97d0ea3862c6d6425e8b";><code>821e5c9</code></a>
 docs: add cross-client dependabot rollup skill (<a 
href="https://redirect.github.com/astral-sh/setup-uv/issues/793";>#793</a>)</li>
   <li><a 
href="https://github.com/astral-sh/setup-uv/commit/6ee6290f1cbc4156c0bdd66691b2c144ef8df19a";><code>6ee6290</code></a>
 chore(deps): bump versions (<a 
href="https://redirect.github.com/astral-sh/setup-uv/issues/792";>#792</a>)</li>
   <li><a 
href="https://github.com/astral-sh/setup-uv/commit/9f332a133a60f39d23361d5262fa95793aa02590";><code>9f332a1</code></a>
 Add riscv64 architecture support to platform detection (<a 
href="https://redirect.github.com/astral-sh/setup-uv/issues/791";>#791</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/astral-sh/setup-uv/compare/5a095e7a2014a4212f075830d4f7277575a9d098...37802adc94f370d6bfd71619e3f0bf239e1f3b78";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=astral-sh/setup-uv&package-manager=github_actions&previous-version=7.3.1&new-version=7.6.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot show <dependency name> ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to