Skip to content

chore(deps): update dependency ruff to v0.15.16 (main)#89

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/main-ruff-0.x
Open

chore(deps): update dependency ruff to v0.15.16 (main)#89
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/main-ruff-0.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented May 11, 2026

This PR contains the following updates:

Package Change Age Confidence
ruff (source, changelog) ==0.15.11==0.15.16 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

astral-sh/ruff (ruff)

v0.15.16

Compare Source

Released on 2026-06-04.

Preview features
  • [flake8-async] Implement yield-in-context-manager-in-async-generator (ASYNC119) (#​24644)
  • [pylint] Narrow diagnostic range and exclude cases without exception handlers (PLW0717) (#​25440)
  • [ruff] Treat yield before break from a terminal loop as terminal (RUF075) (#​25447)
Bug fixes
  • [eradicate] Avoid flagging ruff:ignore comments as code (ERA001) (#​25537)
  • [eradicate] Fix ERA001/RUF100 conflict when noqa is on commented-out code (#​25414)
  • [pyflakes] Avoid removing the format call when it would change behavior (F523) (#​25320)
  • [pylint] Avoid syntax errors in invalid character replacements in f-strings before Python 3.12 (PLE2510, PLE2512, PLE2513, PLE2514, PLE2515) (#​25544)
  • [pyupgrade] Avoid converting format calls with more kinds of side effects (UP032) (#​25484)
Rule changes
  • [flake8-pytest-style] Avoid fixes for ambiguous argnames and argvalues combinations (PT006) (#​24776)
Performance
  • Drop excess capacity from statement suites during parsing (#​25368)
Documentation
  • [pydocstyle] Improve discoverability of rules enabled for each convention (#​24973)
  • [ruff] Restore example code for Python versions before 3.15 (RUF017) (#​25439)
  • Fix typo bin/activebin/activate in tutorial (#​25473)
Other changes
  • Shrink additional parser AST collections (#​25465)
Contributors

v0.15.15

Compare Source

Released on 2026-05-28.

Preview features
  • Fix Markdown closing fence handling (#​25310)
  • [pyflakes] Report duplicate imports in typing.TYPE_CHECKING block (F811) (#​22560)
Bug fixes
  • [pyflakes] Treat function-scope bare annotations as locals per PEP 526 (F821) (#​21540)
Performance
  • Avoid redundant TokenValue drops in the lexer (#​25300)
  • Reduce memory usage by dropping token-excess capacity and improve performance by approximating the initial tokens Vec size (#​25354)
  • Use ThinVec in AST to shrink Stmt (#​25361)
Documentation
  • Fix line-length example for --config option (#​25389)
  • [flake8-comprehensions] Document RecursionError edge case in __len__ (C416) (#​25286)
  • [mccabe] Improve example (C901) (#​25287)
  • [pyupgrade] Clarify fix safety docs (UP007, UP045) (#​25288)
  • [refurb] Document FURB192 exception change for empty sequences (#​25317)
  • [ruff] Document false negative for user-defined types (RUF013) (#​25289)
Formatter
  • Fix formatting of lambdas nested within f-strings (#​25398)
Server
  • Return code action for codeAction/resolve requests that contain no or no valid URL (#​25365)
Other changes
  • Expand semantic syntax errors for invalid walruses (#​25415)
Contributors

v0.15.14

Compare Source

Released on 2026-05-21.

Preview features
  • [airflow] Implement airflow-task-implicit-multiple-outputs (AIR202) (#​25152)
  • [flake8-use-pathlib] Mark PTH101 fix as unsafe when first argument is a class attribute annotated as int (#​25086)
  • [pylint] Implement too-many-try-statements (W0717) (#​23970)
  • [ruff] Add incorrect-decorator-order (RUF074) (#​23461)
  • [ruff] Add fallible-context-manager (RUF075) (#​22844)
Bug fixes
  • Fix lambda formatting in interpolated string expressions (#​25144)
  • Treat generic frozenset annotations as immutable (#​25251)
  • [flake8-type-checking] Avoid strict behavior when future-annotations are enabled (TC001, TC002, TC003) (#​25035)
  • [pylint] Avoid false positives in else clause (PLR1733) (#​25177)
Rule changes
  • [flake8-comprehensions] Skip C417 for lambdas with positional-only parameters (#​25272)
  • [flake8-simplify] Preserve f-string source verbatim in SIM101 fix (#​25061)
Performance
  • Avoid unnecessary parser lookahead for operators (#​25290)
Documentation
  • Update code example setting Neovim LSP log level (#​25284)
Other changes
Contributors

v0.15.13

Compare Source

Released on 2026-05-14.

Preview features
  • Add a rule to flag lazy imports that are eagerly evaluated (#​25016)
  • [pylint] Standardize diagnostic message (PLR0914, PLR0917) (#​24996)
Bug fixes
  • Fix F811 false positive for class methods (#​24933)
  • Fix setting selection for multi-folder workspace (#​24819)
  • [eradicate] Fix false positive for lines with leading whitespace (ERA001) (#​25122)
  • [flake8-pyi] Fix false positive for f-string debug specifier (PYI016) (#​24098)
Rule changes
  • Always include panic payload in panic diagnostic message (#​24873)
  • Restrict PYI034 for in-place operations to enclosing class (#​24511)
  • Improve error message for parameters that are declared global (#​24902)
  • Update known stdlib (#​25103)
Performance
  • [isort] Avoid constructing glob::Patterns for literal known modules (#​25123)
CLI
  • Add TOML examples to --config help text (#​25013)
  • Colorize ruff check 'All checks passed' (#​25085)
Configuration
  • Increase max allowed value of line-length setting (#​24962)
Documentation
  • Add D203 to rules that conflict with the formatter (#​25044)
  • Clarify COM819 and formatter interaction (#​25045)
  • Clarify that NotImplemented is a value, not an exception (F901) (#​25054)
  • Update number of lint rules supported (#​24942)
Other changes
  • Simplify the playground's markdown template (#​24924)
Contributors

v0.15.12

Compare Source

Released on 2026-04-24.

Preview features
  • Implement #ruff:file-ignore file-level suppressions (#​23599)
  • Implement #ruff:ignore logical-line suppressions (#​23404)
  • Revert preview changes to displayed diagnostic severity in LSP (#​24789)
  • [airflow] Implement task-branch-as-short-circuit (AIR004) (#​23579)
  • [flake8-bugbear] Fix break/continue handling in loop-iterator-mutation (B909) (#​24440)
  • [pylint] Fix PLC2701 for type parameter scopes (#​24576)
Rule changes
  • [pandas-vet] Suggest .array as well in PD011 (#​24805)
CLI
  • Respect default Unix permissions for cache files (#​24794)
Documentation
  • [pylint] Fix PLR0124 description not to claim self-comparison always returns the same value (#​24749)
  • [pyupgrade] Expand docs on reusable TypeVars and scoping (UP046) (#​24153)
  • Improve rules table accessibility (#​24711)
Contributors

Configuration

📅 Schedule: (UTC)

  • 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 was generated by Mend Renovate. View the repository job log.

@github-actions
Copy link
Copy Markdown
Contributor

Container Image Published

Multi-platform container images are now available.

Tag Image Platforms
pr-89 quay.io/rhdh-community/dynamic-plugins-factory:pr-89 linux/amd64, linux/arm64
pr-89-bdb2588 quay.io/rhdh-community/dynamic-plugins-factory:pr-89-bdb2588 linux/amd64, linux/arm64

Expires: May 25, 2026

Pull Commands

# Multi-platform (auto-selects correct architecture)
podman pull quay.io/rhdh-community/dynamic-plugins-factory:pr-89

# Or with specific commit SHA
podman pull quay.io/rhdh-community/dynamic-plugins-factory:pr-89-bdb2588

Traceability

@github-actions
Copy link
Copy Markdown
Contributor

❌ E2E Tests Failed

End-to-end integration tests failed for the container image. See the workflow run for details.

Image: quay.io/rhdh-community/dynamic-plugins-factory:pr-89

Tests Passed Failed Duration
36 25 11 1369.0s

Traceability

@renovate renovate Bot changed the title chore(deps): update dependency ruff to v0.15.12 (main) chore(deps): update dependency ruff to v0.15.13 (main) May 14, 2026
@renovate renovate Bot force-pushed the renovate/main-ruff-0.x branch from bdb2588 to 98fdc56 Compare May 14, 2026 17:13
@github-actions
Copy link
Copy Markdown
Contributor

Container Image Published

Multi-platform container images are now available.

Tag Image Platforms
pr-89 quay.io/rhdh-community/dynamic-plugins-factory:pr-89 linux/amd64, linux/arm64
pr-89-98fdc56 quay.io/rhdh-community/dynamic-plugins-factory:pr-89-98fdc56 linux/amd64, linux/arm64

Expires: May 28, 2026

Pull Commands

# Multi-platform (auto-selects correct architecture)
podman pull quay.io/rhdh-community/dynamic-plugins-factory:pr-89

# Or with specific commit SHA
podman pull quay.io/rhdh-community/dynamic-plugins-factory:pr-89-98fdc56

Traceability

@github-actions
Copy link
Copy Markdown
Contributor

✅ E2E Tests Passed

All end-to-end integration tests passed for the container image.

Image: quay.io/rhdh-community/dynamic-plugins-factory:pr-89

Tests Passed Failed Duration
36 36 0 1720.7s

Traceability

@renovate renovate Bot changed the title chore(deps): update dependency ruff to v0.15.13 (main) chore(deps): update dependency ruff to v0.15.14 (main) May 21, 2026
@renovate renovate Bot force-pushed the renovate/main-ruff-0.x branch from 98fdc56 to 21bb8d6 Compare May 21, 2026 17:33
@github-actions
Copy link
Copy Markdown
Contributor

Container Image Published

Multi-platform container images are now available.

Tag Image Platforms
pr-89 quay.io/rhdh-community/dynamic-plugins-factory:pr-89 linux/amd64, linux/arm64
pr-89-21bb8d6 quay.io/rhdh-community/dynamic-plugins-factory:pr-89-21bb8d6 linux/amd64, linux/arm64

Expires: June 4, 2026

Pull Commands

# Multi-platform (auto-selects correct architecture)
podman pull quay.io/rhdh-community/dynamic-plugins-factory:pr-89

# Or with specific commit SHA
podman pull quay.io/rhdh-community/dynamic-plugins-factory:pr-89-21bb8d6

Traceability

@github-actions
Copy link
Copy Markdown
Contributor

✅ E2E Tests Passed

All end-to-end integration tests passed for the container image.

Image: quay.io/rhdh-community/dynamic-plugins-factory:pr-89

Tests Passed Failed Duration
36 36 0 1903.6s

Traceability

@renovate renovate Bot changed the title chore(deps): update dependency ruff to v0.15.14 (main) chore(deps): update dependency ruff to v0.15.15 (main) May 28, 2026
@renovate renovate Bot force-pushed the renovate/main-ruff-0.x branch from 21bb8d6 to 1b8df2f Compare May 28, 2026 21:09
@github-actions
Copy link
Copy Markdown
Contributor

Container Image Published

Multi-platform container images are now available.

Tag Image Platforms
pr-89 quay.io/rhdh-community/dynamic-plugins-factory:pr-89 linux/amd64, linux/arm64
pr-89-1b8df2f quay.io/rhdh-community/dynamic-plugins-factory:pr-89-1b8df2f linux/amd64, linux/arm64

Expires: June 11, 2026

Pull Commands

# Multi-platform (auto-selects correct architecture)
podman pull quay.io/rhdh-community/dynamic-plugins-factory:pr-89

# Or with specific commit SHA
podman pull quay.io/rhdh-community/dynamic-plugins-factory:pr-89-1b8df2f

Traceability

@github-actions
Copy link
Copy Markdown
Contributor

✅ E2E Tests Passed

All end-to-end integration tests passed for the container image.

Image: quay.io/rhdh-community/dynamic-plugins-factory:pr-89

Tests Passed Failed Duration
36 36 0 1845.8s

Traceability

@renovate renovate Bot force-pushed the renovate/main-ruff-0.x branch from 1b8df2f to bdda32b Compare June 4, 2026 18:14
@renovate renovate Bot changed the title chore(deps): update dependency ruff to v0.15.15 (main) chore(deps): update dependency ruff to v0.15.16 (main) Jun 4, 2026
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Jun 4, 2026

Container Image Published

Multi-platform container images are now available.

Tag Image Platforms
pr-89 quay.io/rhdh-community/dynamic-plugins-factory:pr-89 linux/amd64, linux/arm64
pr-89-bdda32b quay.io/rhdh-community/dynamic-plugins-factory:pr-89-bdda32b linux/amd64, linux/arm64

Expires: June 18, 2026

Pull Commands

# Multi-platform (auto-selects correct architecture)
podman pull quay.io/rhdh-community/dynamic-plugins-factory:pr-89

# Or with specific commit SHA
podman pull quay.io/rhdh-community/dynamic-plugins-factory:pr-89-bdda32b

Traceability

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Jun 4, 2026

✅ E2E Tests Passed

All end-to-end integration tests passed for the container image.

Image: quay.io/rhdh-community/dynamic-plugins-factory:pr-89

Tests Passed Failed Duration
36 36 0 1877.5s

Traceability

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants