Skip to content

Update dependency ruff to v0.15.17#365

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

Update dependency ruff to v0.15.17#365
renovate[bot] wants to merge 1 commit into
developfrom
renovate/ruff-0.x-lockfile

Conversation

@renovate

@renovate renovate Bot commented Jan 22, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
ruff (source, changelog) 0.15.120.15.17 age adoption passing confidence

Release Notes

astral-sh/ruff (ruff)

v0.15.17

Compare Source

Released on 2026-06-11.

Preview features
  • Allow human-readable names in suppression comments (#​25614)
  • Fix handling of ignore comments within a disable/enable pair (#​25845)
  • Prioritize human-readable names in CLI output (#​25869)
  • Respect diagnostic start and parent ranges and trailing comments in ruff:ignore suppressions (#​25673)
  • [flake8-async] Add trio.as_safe_channel to safe decorators (ASYNC119) (#​25775)
  • [flake8-pytest-style] Also check pytest_asyncio fixtures (#​25375)
  • [ruff] Ban pytest autouse fixtures (RUF076) (#​25477)
  • [pyupgrade] Add from __future__ import annotations automatically (UP007, UP045) (#​23259)
Bug fixes
  • Fix diagnostic when ruff:enable or ruff:disable appears where ruff:ignore is expected (#​25700)
  • [pyupgrade] Preserve leading empty literals to avoid syntax errors (UP032) (#​25491)
Rule changes
  • [flake8-pytest-style] Clarify diagnostic message for single parameters (PT007) (#​25592)
  • [numpy] Drop autofix for np.in1d (NPY201) (#​25612)
  • [pylint] Exempt Python version comparisons (PLR2004) (#​25743)
Performance
  • Reserve AST Vecs with correct capacity for common cases (#​25451)
Formatter
  • Preserve whitespace for Quarto cell option comments (#​25641)
CLI
Other changes
  • Fix playground diagnostics scrollbars (#​25642)
Contributors

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

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.

@renovate renovate Bot force-pushed the renovate/ruff-0.x-lockfile branch from 133d894 to 621eadc Compare January 30, 2026 15:51
@renovate renovate Bot changed the title Update dependency ruff to v0.14.14 Update dependency ruff to v0.15.0 Feb 3, 2026
@renovate renovate Bot force-pushed the renovate/ruff-0.x-lockfile branch 2 times, most recently from f6c1cec to 812f296 Compare February 4, 2026 19:43
@renovate renovate Bot force-pushed the renovate/ruff-0.x-lockfile branch from 812f296 to f788e04 Compare February 13, 2026 01:39
@renovate renovate Bot changed the title Update dependency ruff to v0.15.0 Update dependency ruff to v0.15.1 Feb 13, 2026
@renovate renovate Bot force-pushed the renovate/ruff-0.x-lockfile branch from f788e04 to 1b0472c Compare February 20, 2026 02:15
@renovate renovate Bot changed the title Update dependency ruff to v0.15.1 Update dependency ruff to v0.15.2 Feb 20, 2026
@renovate renovate Bot force-pushed the renovate/ruff-0.x-lockfile branch 3 times, most recently from 4de6575 to d33913a Compare February 26, 2026 17:13
@renovate renovate Bot changed the title Update dependency ruff to v0.15.2 Update dependency ruff to v0.15.3 Feb 26, 2026
@renovate renovate Bot force-pushed the renovate/ruff-0.x-lockfile branch from d33913a to 0ddd206 Compare February 26, 2026 21:17
@renovate renovate Bot changed the title Update dependency ruff to v0.15.3 Update dependency ruff to v0.15.4 Feb 26, 2026
@renovate renovate Bot force-pushed the renovate/ruff-0.x-lockfile branch 2 times, most recently from 20586e6 to 1e77277 Compare March 5, 2026 22:48
@renovate renovate Bot changed the title Update dependency ruff to v0.15.4 Update dependency ruff to v0.15.5 Mar 5, 2026
@renovate renovate Bot force-pushed the renovate/ruff-0.x-lockfile branch 2 times, most recently from c6cabe3 to 3b8044a Compare March 13, 2026 01:52
@renovate renovate Bot changed the title Update dependency ruff to v0.15.5 Update dependency ruff to v0.15.6 Mar 13, 2026
@renovate renovate Bot force-pushed the renovate/ruff-0.x-lockfile branch 3 times, most recently from 685d14e to 41fe2c7 Compare March 19, 2026 17:05
@renovate renovate Bot changed the title Update dependency ruff to v0.15.6 Update dependency ruff to v0.15.7 Mar 19, 2026
@renovate renovate Bot force-pushed the renovate/ruff-0.x-lockfile branch from 41fe2c7 to 080bb0e Compare March 26, 2026 21:55
@renovate renovate Bot changed the title Update dependency ruff to v0.15.7 Update dependency ruff to v0.15.8 Mar 26, 2026
@renovate renovate Bot force-pushed the renovate/ruff-0.x-lockfile branch from 6fe9312 to afa5c2e Compare April 9, 2026 18:47
@renovate renovate Bot changed the title Update dependency ruff to v0.15.9 Update dependency ruff to v0.15.10 Apr 9, 2026
@renovate renovate Bot force-pushed the renovate/ruff-0.x-lockfile branch 2 times, most recently from 2308d16 to 0d013c1 Compare April 16, 2026 20:10
@renovate renovate Bot changed the title Update dependency ruff to v0.15.10 Update dependency ruff to v0.15.11 Apr 16, 2026
@renovate renovate Bot force-pushed the renovate/ruff-0.x-lockfile branch 4 times, most recently from dd89b66 to 9261aaa Compare April 24, 2026 21:23
@renovate renovate Bot changed the title Update dependency ruff to v0.15.11 Update dependency ruff to v0.15.12 Apr 24, 2026
@renovate renovate Bot force-pushed the renovate/ruff-0.x-lockfile branch 4 times, most recently from d5676d3 to 0bfe3ce Compare May 6, 2026 16:21
@jvanderaa jvanderaa mentioned this pull request May 6, 2026
10 tasks
@renovate renovate Bot force-pushed the renovate/ruff-0.x-lockfile branch 3 times, most recently from 92b75f2 to 82b00e0 Compare May 14, 2026 16:54
@renovate renovate Bot changed the title Update dependency ruff to v0.15.12 Update dependency ruff to v0.15.13 May 14, 2026
@renovate renovate Bot force-pushed the renovate/ruff-0.x-lockfile branch from 82b00e0 to 5549b0f Compare May 21, 2026 18:59
@renovate renovate Bot changed the title Update dependency ruff to v0.15.13 Update dependency ruff to v0.15.14 May 21, 2026
@renovate renovate Bot force-pushed the renovate/ruff-0.x-lockfile branch 2 times, most recently from 1874949 to 1804efa Compare May 28, 2026 15:30
@renovate renovate Bot changed the title Update dependency ruff to v0.15.14 Update dependency ruff to v0.15.15 May 28, 2026
@renovate renovate Bot force-pushed the renovate/ruff-0.x-lockfile branch from 1804efa to 1749eab Compare June 4, 2026 17:00
@renovate renovate Bot changed the title Update dependency ruff to v0.15.15 Update dependency ruff to v0.15.16 Jun 4, 2026
@renovate renovate Bot force-pushed the renovate/ruff-0.x-lockfile branch from 1749eab to 51ee3ad Compare June 10, 2026 19:45
@renovate renovate Bot changed the title Update dependency ruff to v0.15.16 Update dependency ruff to v0.15.17 Jun 11, 2026
@renovate renovate Bot force-pushed the renovate/ruff-0.x-lockfile branch from 51ee3ad to 47fcc22 Compare June 11, 2026 19:58
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