dependabot[bot] opened a new pull request, #421: URL: https://github.com/apache/hudi-rs/pull/421
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.12 to 0.12.9. <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.12.9</h2> <h2>Release Notes</h2> <h3>Preview features</h3> <ul> <li>[<code>airflow</code>] Add check for <code>airflow.secrets.cache.SecretCache</code> (<code>AIR301</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/17707">#17707</a>)</li> <li>[<code>ruff</code>] Offer a safe fix for multi-digit zeros (<code>RUF064</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/19847">#19847</a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li>[<code>flake8-blind-except</code>] Fix <code>BLE001</code> false-positive on <code>raise ... from None</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/19755">#19755</a>)</li> <li>[<code>flake8-comprehensions</code>] Fix false positive for <code>C420</code> with attribute, subscript, or slice assignment targets (<a href="https://redirect.github.com/astral-sh/ruff/pull/19513">#19513</a>)</li> <li>[<code>flake8-simplify</code>] Fix handling of U+001C..U+001F whitespace (<code>SIM905</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/19849">#19849</a>)</li> </ul> <h3>Rule changes</h3> <ul> <li>[<code>pylint</code>] Use lowercase hex characters to match the formatter (<code>PLE2513</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/19808">#19808</a>)</li> </ul> <h3>Documentation</h3> <ul> <li>Fix <code>lint.future-annotations</code> link (<a href="https://redirect.github.com/astral-sh/ruff/pull/19876">#19876</a>)</li> </ul> <h3>Other changes</h3> <ul> <li> <p>Build <code>riscv64</code> binaries for release (<a href="https://redirect.github.com/astral-sh/ruff/pull/19819">#19819</a>)</p> </li> <li> <p>Add rule code to error description in GitLab output (<a href="https://redirect.github.com/astral-sh/ruff/pull/19896">#19896</a>)</p> </li> <li> <p>Improve rendering of the <code>full</code> output format (<a href="https://redirect.github.com/astral-sh/ruff/pull/19415">#19415</a>)</p> <p>Below is an example diff for <a href="https://docs.astral.sh/ruff/rules/unused-import/"><code>F401</code></a>:</p> <pre lang="diff"><code>-unused.py:8:19: F401 [*] `pathlib` imported but unused +F401 [*] `pathlib` imported but unused + --> unused.py:8:19 | 7 | # Unused, _not_ marked as required (due to the alias). 8 | import pathlib as non_alias - | ^^^^^^^^^ F401 + | ^^^^^^^^^ 9 | 10 | # Unused, marked as required. | - = help: Remove unused import: `pathlib` +help: Remove unused import: `pathlib` </code></pre> <p>For now, the primary difference is the movement of the filename, line number, and column information to a second line in the header. This new representation will allow us to make further additions to Ruff's diagnostics, such as adding sub-diagnostics and multiple annotations to the same snippet.</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.12.9</h2> <h3>Preview features</h3> <ul> <li>[<code>airflow</code>] Add check for <code>airflow.secrets.cache.SecretCache</code> (<code>AIR301</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/17707">#17707</a>)</li> <li>[<code>ruff</code>] Offer a safe fix for multi-digit zeros (<code>RUF064</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/19847">#19847</a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li>[<code>flake8-blind-except</code>] Fix <code>BLE001</code> false-positive on <code>raise ... from None</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/19755">#19755</a>)</li> <li>[<code>flake8-comprehensions</code>] Fix false positive for <code>C420</code> with attribute, subscript, or slice assignment targets (<a href="https://redirect.github.com/astral-sh/ruff/pull/19513">#19513</a>)</li> <li>[<code>flake8-simplify</code>] Fix handling of U+001C..U+001F whitespace (<code>SIM905</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/19849">#19849</a>)</li> </ul> <h3>Rule changes</h3> <ul> <li>[<code>pylint</code>] Use lowercase hex characters to match the formatter (<code>PLE2513</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/19808">#19808</a>)</li> </ul> <h3>Documentation</h3> <ul> <li>Fix <code>lint.future-annotations</code> link (<a href="https://redirect.github.com/astral-sh/ruff/pull/19876">#19876</a>)</li> </ul> <h3>Other changes</h3> <ul> <li> <p>Build <code>riscv64</code> binaries for release (<a href="https://redirect.github.com/astral-sh/ruff/pull/19819">#19819</a>)</p> </li> <li> <p>Add rule code to error description in GitLab output (<a href="https://redirect.github.com/astral-sh/ruff/pull/19896">#19896</a>)</p> </li> <li> <p>Improve rendering of the <code>full</code> output format (<a href="https://redirect.github.com/astral-sh/ruff/pull/19415">#19415</a>)</p> <p>Below is an example diff for <a href="https://docs.astral.sh/ruff/rules/unused-import/"><code>F401</code></a>:</p> <pre lang="diff"><code>-unused.py:8:19: F401 [*] `pathlib` imported but unused +F401 [*] `pathlib` imported but unused + --> unused.py:8:19 | 7 | # Unused, _not_ marked as required (due to the alias). 8 | import pathlib as non_alias - | ^^^^^^^^^ F401 + | ^^^^^^^^^ 9 | 10 | # Unused, marked as required. | - = help: Remove unused import: `pathlib` +help: Remove unused import: `pathlib` </code></pre> <p>For now, the primary difference is the movement of the filename, line number, and column information to a second line in the header. This new representation will allow us to make further additions to Ruff's diagnostics, such as adding sub-diagnostics and multiple annotations to the same snippet.</p> </li> </ul> <h2>0.12.8</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/astral-sh/ruff/commit/ef422460de726c5b896c09c364d02a4db24bcaf0"><code>ef42246</code></a> Bump 0.12.9 (<a href="https://redirect.github.com/astral-sh/ruff/issues/19917">#19917</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/dc2e8ab3776a7f7ec9ec26be61939f73567a2c13"><code>dc2e8ab</code></a> [ty] support <code>kw_only=True</code> for <code>dataclass()</code> and <code>field()</code> (<a href="https://redirect.github.com/astral-sh/ruff/issues/19677">#19677</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/9aaa82d037a12e38daebe518ab11c83414f2fe55"><code>9aaa82d</code></a> Feature/build riscv64 bin (<a href="https://redirect.github.com/astral-sh/ruff/issues/19819">#19819</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/3288ac2dfbfd3388b6ed99fe9776ea228eecca54"><code>3288ac2</code></a> [ty] Add caching to <code>CodeGeneratorKind::matches()</code> (<a href="https://redirect.github.com/astral-sh/ruff/issues/19912">#19912</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/1167ed61cf3fa186e852df2d6ec9cb0136dffa80"><code>1167ed6</code></a> [ty] Rename <code>functionArgumentNames</code> to <code>callArgumentNames</code> inlay hint setting...</li> <li><a href="https://github.com/astral-sh/ruff/commit/2ee47d87b6908a6ba6f672bf48d6f42c17ee3dfe"><code>2ee47d8</code></a> [ty] Default <code>ty.inlayHints.*</code> server settings to true (<a href="https://redirect.github.com/astral-sh/ruff/issues/19910">#19910</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/d324cedfc2d953f5ed435fc4ba0b1e2d504641c3"><code>d324ced</code></a> [ty] Remove py-fuzzer skips for seeds that are no longer slow (<a href="https://redirect.github.com/astral-sh/ruff/issues/19906">#19906</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/5a570c8e6d227b1f4270987b124e853ccd7b2af3"><code>5a570c8</code></a> [ty] fix deferred name loading in PEP695 generic classes/functions (<a href="https://redirect.github.com/astral-sh/ruff/issues/19888">#19888</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/baadb5a78d7cddf0d876a841f308287a853e81e9"><code>baadb5a</code></a> [ty] Add some additional type safety to <code>CycleDetector</code> (<a href="https://redirect.github.com/astral-sh/ruff/issues/19903">#19903</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/df0648aae046f30bd1993323d93091bf4bde385c"><code>df0648a</code></a> [<code>flake8-blind-except</code>] Fix <code>BLE001</code> false-positive on <code>raise ... from None</code> ...</li> <li>Additional commits viewable in <a href="https://github.com/astral-sh/ruff/compare/0.12.0...0.12.9">compare view</a></li> </ul> </details> <br /> [](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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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]
