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

   Bumps [ruff](https://github.com/astral-sh/ruff) from 0.15.19 to 0.16.0.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/astral-sh/ruff/releases";>ruff's releases</a>.</em></p>
   <blockquote>
   <h2>0.16.0</h2>
   <h2>Release Notes</h2>
   <p>Released on 2026-07-23.</p>
   <p>Check out the <a href="https://astral.sh/blog/ruff-v0.16.0";>blog post</a> 
for a migration guide and overview of the changes!</p>
   <h3>Breaking changes</h3>
   <ul>
   <li>
   <p>Ruff now enables a much larger set of rules by default (413, up from 59). 
See the blog post for more details and the new <a 
href="https://docs.astral.sh/ruff/default-rules/";>Default Rules</a> page for a 
full listing of the enabled rules. Note that this is primarily an expansion, 
but 18 of the more opinionated pycodestyle (<code>E</code>) and pyflakes 
(<code>F</code>) rules have been removed from the default set: 
<code>E401</code>, <code>E402</code>, <code>E701</code>, <code>E702</code>, 
<code>E703</code>, <code>E711</code>, <code>E712</code>, <code>E713</code>, 
<code>E714</code>, <code>E721</code>, <code>E731</code>, <code>E741</code>, 
<code>E742</code>, <code>E743</code>, <code>F403</code>, <code>F405</code>, 
<code>F406</code>, and <code>F722</code>.</p>
   </li>
   <li>
   <p>Ruff can now format Python code blocks in Markdown files and will do this 
by default. See the <a 
href="https://docs.astral.sh/ruff/formatter/#markdown-code-formatting";>documentation</a>
 for more details.</p>
   </li>
   <li>
   <p>Ruff now supports <code>ruff: ignore</code> comments at the ends of 
lines, like <code>noqa</code> comments, or on the line preceding a diagnostic. 
For example, these both suppress an <a 
href="https://docs.astral.sh/ruff/rules/unused-import/";><code>unused-import</code></a>
 (<code>F401</code>) diagnostic:</p>
   <pre lang="py"><code>import math  # ruff: ignore[F401]
   <h1>ruff: ignore[F401]</h1>
   <p>import os
   </code></pre></p>
   </li>
   <li>
   <p>Fixes are now shown in <code>check</code> and <code>format --check</code> 
output:</p>
   <pre lang="console"><code>❯ ruff format --check .
   unformatted: File would be reformatted
    --&gt; try.md:1:1
     |
   1 | ```python
     - import   math
   2 + import math
   3 | ```
     |
   <p>1 file would be reformatted
   </code></pre></p>
   <p>This example also shows off the Markdown formatting.</p>
   </li>
   <li>
   <p><code>format --check</code> now supports the same output formats as the 
linter, including the <code>github</code> and <code>gitlab</code> outputs for 
rendering annotations in CI:</p>
   <pre lang="console"><code>❯ ruff format --check --output-format github .
   ::error title=ruff 
(unformatted),file=try.md,line=2,col=8,endLine=2,endColumn=10::try.md:2:8: 
unformatted: File would be reformatted
   </code></pre>
   <p>See the CLI help or <a 
href="https://docs.astral.sh/ruff/settings/#output-format";>documentation</a> 
for the full list of supported formats.</p>
   </li>
   <li>
   <p>The <code>filename</code>, <code>location</code>, 
<code>end_location</code>, <code>fix.edits[].location</code>, and 
<code>fix.edits[].end_location</code> fields in the JSON output format may now 
be <code>null</code> rather than defaulting to the empty string and row 1, 
column 1, respectively.</p>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md";>ruff's 
changelog</a>.</em></p>
   <blockquote>
   <h2>0.16.0</h2>
   <p>Released on 2026-07-23.</p>
   <p>Check out the <a href="https://astral.sh/blog/ruff-v0.16.0";>blog post</a> 
for a migration
   guide and overview of the changes!</p>
   <h3>Breaking changes</h3>
   <ul>
   <li>
   <p>Ruff now enables a much larger set of rules by default (413, up from 59). 
See the blog post for
   more details and the new <a 
href="https://docs.astral.sh/ruff/default-rules/";>Default Rules</a> page for a
   full listing of the enabled rules. Note that this is primarily an expansion, 
but 18 of the more
   opinionated pycodestyle (<code>E</code>) and pyflakes (<code>F</code>) rules 
have been removed from the default set:
   <code>E401</code>, <code>E402</code>, <code>E701</code>, <code>E702</code>, 
<code>E703</code>, <code>E711</code>, <code>E712</code>, <code>E713</code>, 
<code>E714</code>, <code>E721</code>, <code>E731</code>, <code>E741</code>,
   <code>E742</code>, <code>E743</code>, <code>F403</code>, <code>F405</code>, 
<code>F406</code>, and <code>F722</code>.</p>
   </li>
   <li>
   <p>Ruff can now format Python code blocks in Markdown files and will do this 
by default. See the
   <a 
href="https://docs.astral.sh/ruff/formatter/#markdown-code-formatting";>documentation</a>
 for more details.</p>
   </li>
   <li>
   <p>Ruff now supports <code>ruff: ignore</code> comments at the ends of 
lines, like <code>noqa</code> comments, or on the line preceding a diagnostic. 
For example, these both suppress an <a 
href="https://docs.astral.sh/ruff/rules/unused-import/";><code>unused-import</code></a>
 (<code>F401</code>) diagnostic:</p>
   <pre lang="py"><code>import math  # ruff: ignore[F401]
   <h1>ruff: ignore[F401]</h1>
   <p>import os
   </code></pre></p>
   </li>
   <li>
   <p>Fixes are now shown in <code>check</code> and <code>format --check</code> 
output:</p>
   <pre lang="console"><code>❯ ruff format --check .
   unformatted: File would be reformatted
    --&gt; try.md:1:1
     |
   1 | ```python
     - import   math
   2 + import math
   3 | ```
     |
   <p>1 file would be reformatted
   </code></pre></p>
   <p>This example also shows off the Markdown formatting.</p>
   </li>
   <li>
   <p><code>format --check</code> now supports the same output formats as the 
linter, including the <code>github</code> and
   <code>gitlab</code> outputs for rendering annotations in CI:</p>
   <pre lang="console"><code></code></pre>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/astral-sh/ruff/commit/a2635fd8f39e1d34ce8074cb486809426148f3e9";><code>a2635fd</code></a>
 Bump 0.16.0 (<a 
href="https://redirect.github.com/astral-sh/ruff/issues/27136";>#27136</a>)</li>
   <li><a 
href="https://github.com/astral-sh/ruff/commit/34334491652f8ceca5246d15c5c5afe0d6bc77ae";><code>3433449</code></a>
 [ty] Reuse full call diagnostics for implicit setter calls (<a 
href="https://redirect.github.com/astral-sh/ruff/issues/27115";>#27115</a>)</li>
   <li><a 
href="https://github.com/astral-sh/ruff/commit/22400709220931375e072ad5d7460b9fc781af78";><code>2240070</code></a>
 Reflect <code>ruff: ignore</code> and <code>--add-ignore</code> stabilization 
in documentation (<a 
href="https://redirect.github.com/astral-sh/ruff/issues/27";>#27</a>...</li>
   <li><a 
href="https://github.com/astral-sh/ruff/commit/17ef71142c52230b923dad46ee5554140fc3fd2e";><code>17ef711</code></a>
 Stabilize <code>--add-ignore</code> (<a 
href="https://redirect.github.com/astral-sh/ruff/issues/27125";>#27125</a>)</li>
   <li><a 
href="https://github.com/astral-sh/ruff/commit/ef912bbbe466856aa4aac10ad2a8856eb3d5aef3";><code>ef912bb</code></a>
 Add newly stabilized rules to defaults (<a 
href="https://redirect.github.com/astral-sh/ruff/issues/27055";>#27055</a>)</li>
   <li><a 
href="https://github.com/astral-sh/ruff/commit/b30f04023281b46f12011f13ce6b45c247e0d2e3";><code>b30f040</code></a>
 Stabilize new default rules (<a 
href="https://redirect.github.com/astral-sh/ruff/issues/27035";>#27035</a>)</li>
   <li><a 
href="https://github.com/astral-sh/ruff/commit/bcd70c5f10ea97ed52a785d70e7f33b83b7c697a";><code>bcd70c5</code></a>
 Exclude Markdown files from <code>format-dev</code> runs (<a 
href="https://redirect.github.com/astral-sh/ruff/issues/27052";>#27052</a>)</li>
   <li><a 
href="https://github.com/astral-sh/ruff/commit/87e51e2cbbaed376fc13dead40fd772361fa07c0";><code>87e51e2</code></a>
 Fix <code>format --check</code> spans for syntax errors (<a 
href="https://redirect.github.com/astral-sh/ruff/issues/27045";>#27045</a>)</li>
   <li><a 
href="https://github.com/astral-sh/ruff/commit/afe2723a348364ac7f4b9abd76fc67779490c05e";><code>afe2723</code></a>
 [<code>flake8-gettext</code>] Stabilize qualified-name and built-in binding 
resolution (...</li>
   <li><a 
href="https://github.com/astral-sh/ruff/commit/a9702d8928344f77a41dbe535f655a69fb04e2df";><code>a9702d8</code></a>
 [<code>flake8-bandit</code>] Stabilize string literal binding resolution 
(<code>S310</code>) (<a 
href="https://redirect.github.com/astral-sh/ruff/issues/26944";>#26944</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/astral-sh/ruff/compare/0.15.19...0.16.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ruff&package-manager=uv&previous-version=0.15.19&new-version=0.16.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