docker-db-auto-backup
docker-db-auto-backup copied to clipboard
Update dependency ruff to v0.11.13
trafficstars
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| ruff (source, changelog) | ==0.11.8 -> ==0.11.13 |
Release Notes
astral-sh/ruff (ruff)
v0.11.13
Preview features
- [
airflow] Add unsafe fix for module moved cases (AIR301,AIR311,AIR312,AIR302) (#18367,#18366,#18363,#18093) - [
refurb] Add coverage ofsetandfrozensetcalls (FURB171) (#18035) - [
refurb] MarkFURB180fix unsafe when class has bases (#18149)
Bug fixes
- [
perflint] Fix missing parentheses for lambda and ternary conditions (PERF401,PERF403) (#18412) - [
pyupgrade] ApplyUP035only on py313+ forget_type_hints()(#18476) - [
pyupgrade] Make fix unsafe if it deletes comments (UP004,UP050) (#18393, #18390)
Rule changes
- [
fastapi] Avoid false positive for class dependencies (FAST003) (#18271)
Documentation
- Update editor setup docs for Neovim and Vim (#18324)
Other changes
- Support Python 3.14 template strings (t-strings) in formatter and parser (#17851)
v0.11.12
Preview features
- [
airflow] Revise fix titles (AIR3) (#18215) - [
pylint] Implementmissing-maxsplit-arg(PLC0207) (#17454) - [
pyupgrade] New ruleUP050(useless-class-metaclass-type) (#18334) - [
flake8-use-pathlib] Replaceos.symlinkwithPath.symlink_to(PTH211) (#18337)
Bug fixes
- [
flake8-bugbear] Ignore__debug__attribute inB010(#18357) - [
flake8-async] Fixanyio.sleepargument name (ASYNC115,ASYNC116) (#18262) - [
refurb] FixFURB129autofix generating invalid syntax (#18235)
Rule changes
- [
flake8-implicit-str-concat] Add autofix forISC003(#18256) - [
pycodestyle] Improve the diagnostic message forE712(#18328) - [
flake8-2020] Fix diagnostic message for!=comparisons (YTT201) (#18293) - [
pyupgrade] Make fix unsafe if it deletes comments (UP010) (#18291)
Documentation
- Simplify rules table to improve readability (#18297)
- Update editor integrations link in README (#17977)
- [
flake8-bugbear] Add fix safety section (B006) (#17652)
v0.11.11
Preview features
- [
airflow] Add autofixes forAIR302andAIR312(#17942) - [
airflow] Move rules fromAIR312toAIR302(#17940) - [
airflow] UpdateAIR301andAIR311with the latest Airflow implementations (#17985) - [
flake8-simplify] Enable fix in preview mode (SIM117) (#18208)
Bug fixes
- Fix inconsistent formatting of match-case on
[]and_(#18147) - [
pylint] FixPLW1514not recognizing theencodingpositional argument ofcodecs.open(#18109)
CLI
- Add full option name in formatter warning (#18217)
Documentation
- Fix rendering of admonition in docs (#18163)
- [
flake8-print] Improve print/pprint docs forT201andT203(#18130) - [
flake8-simplify] Add fix safety section (SIM110,SIM210) (#18114,#18100) - [
pylint] Fix docs example that produced different output (PLW0603) (#18216)
v0.11.10
Preview features
- [
ruff] Implement a recursive check forRUF060(#17976) - [
airflow] Enable autofixes forAIR301andAIR311(#17941) - [
airflow] Apply try catch guard to allAIR3rules (#17887) - [
airflow] ExtendAIR311rules (#17913)
Bug fixes
- [
flake8-bugbear] IgnoreB028ifskip_file_prefixesis present (#18047) - [
flake8-pie] Mark autofix forPIE804as unsafe if the dictionary contains comments (#18046) - [
flake8-simplify] Correct behavior forstr.split/rsplitwithmaxsplit=0(SIM905) (#18075) - [
flake8-simplify] FixSIM905autofix forrsplitcreating a reversed list literal (#18045) - [
flake8-use-pathlib] Suppress diagnostics for allos.*functions that have thedir_fdparameter (PTH) (#17968) - [
refurb] Mark autofix as safe only for number literals (FURB116) (#17692)
Rule changes
- [
flake8-bandit] SkipS608for expressionless f-strings (#17999) - [
flake8-pytest-style] Don't recommendusefixturesforparametrizevalues (PT019) (#17650) - [
pyupgrade] Addresource.erroras deprecated alias ofOSError(UP024) (#17933)
CLI
- Disable jemalloc on Android (#18033)
Documentation
- Update Neovim setup docs (#18108)
- [
flake8-simplify] Add fix safety section (SIM103) (#18086) - [
flake8-simplify] Add fix safety section (SIM112) (#18099) - [
pylint] Add fix safety section (PLC0414) (#17802) - [
pylint] Add fix safety section (PLE4703) (#17824) - [
pylint] Add fix safety section (PLW1514) (#17932) - [
pylint] Add fix safety section (PLW3301) (#17878) - [
ruff] Add fix safety section (RUF007) (#17755) - [
ruff] Add fix safety section (RUF033) (#17760)
v0.11.9
Preview features
- Default to latest supported Python version for version-related syntax errors (#17529)
- Implement deferred annotations for Python 3.14 (#17658)
- [
airflow] FixSQLTableCheckOperatortypo (AIR302) (#17946) - [
airflow] Removeairflow.utils.dag_parsing_context.get_parsing_context(AIR301) (#17852) - [
airflow] Skip attribute check in try catch block (AIR301) (#17790) - [
flake8-bandit] Mark tuples of string literals as trusted input inS603(#17801) - [
isort] Check full module path against project root(s) when categorizing first-party imports (#16565) - [
ruff] Add new rulein-empty-collection(RUF060) (#16480)
Bug fixes
- Fix missing
combinecall forlint.typing-extensionssetting (#17823) - [
flake8-async] Fix module name inASYNC110,ASYNC115, andASYNC116fixes (#17774) - [
pyupgrade] Add spaces between tokens as necessary to avoid syntax errors inUP018autofix (#17648) - [
refurb] Fix false positive for float and complex numbers inFURB116(#17661) - [parser] Flag single unparenthesized generator expr with trailing comma in arguments. (#17893)
Documentation
- Add instructions on how to upgrade to a newer Rust version (#17928)
- Update code of conduct email address (#17875)
- Add fix safety sections to
PLC2801,PLR1722, andRUF013(#17825, #17826, #17759) - Add link to
check-typed-exceptionfromS110andS112(#17786)
Other changes
- Allow passing a virtual environment to
ruff analyze graph(#17743)
Configuration
📅 Schedule: 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.