15
0
forked from pool/python-ruff

- update to 0.14.10:

* Preview feature
  * [formatter] Fluent formatting of method chains 
  * [formatter] Keep lambda parameters on one line and parenthesize the body if it expands 
  * [flake8-implicit-str-concat] New rule to prevent implicit string concatenation in collections (ISC004) 
  * [flake8-use-pathlib] Make fixes unsafe when types change in compound statements (PTH104, PTH105, PTH109, PTH115) 
  * [refurb] Extend support for Path.open (FURB101, FURB103) 
 * Bug fixes
  * [pyupgrade] Fix parsing named Unicode escape sequences (UP032) 
 * Rule changes
  * [eradicate] Ignore ruff:disable and ruff:enable comments in ERA001 
  * [flake8-pytest-style] Allow match and check keyword arguments without an expected exception type (PT010) 
  * [syntax-errors] Annotated name cannot be global 
 * Documentation
  * Add uv and ty to the Ruff README 
  * Document known lambda formatting deviations from Black 
  * Update setup.md 
  * [flake8-bandit] Fix broken link (S704)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ruff?expand=0&rev=209
This commit is contained in:
2025-12-21 12:52:29 +00:00
committed by Git OBS Bridge
parent 0bfa8f9655
commit a7d79e0b30
5 changed files with 28 additions and 6 deletions

View File

@@ -1,3 +1,25 @@
-------------------------------------------------------------------
Sun Dec 21 12:50:30 UTC 2025 - Ondřej Súkup <mimi.vx@gmail.com>
- update to 0.14.10:
* Preview feature
* [formatter] Fluent formatting of method chains
* [formatter] Keep lambda parameters on one line and parenthesize the body if it expands
* [flake8-implicit-str-concat] New rule to prevent implicit string concatenation in collections (ISC004)
* [flake8-use-pathlib] Make fixes unsafe when types change in compound statements (PTH104, PTH105, PTH109, PTH115)
* [refurb] Extend support for Path.open (FURB101, FURB103)
* Bug fixes
* [pyupgrade] Fix parsing named Unicode escape sequences (UP032)
* Rule changes
* [eradicate] Ignore ruff:disable and ruff:enable comments in ERA001
* [flake8-pytest-style] Allow match and check keyword arguments without an expected exception type (PT010)
* [syntax-errors] Annotated name cannot be global
* Documentation
* Add uv and ty to the Ruff README
* Document known lambda formatting deviations from Black
* Update setup.md
* [flake8-bandit] Fix broken link (S704)
-------------------------------------------------------------------
Sun Dec 14 14:26:57 UTC 2025 - Ondřej Súkup <mimi.vx@gmail.com>