Skip to content

Commit

Permalink
Update CHANGELOG.md
Browse files Browse the repository at this point in the history
Co-authored-by: Alex Waygood <[email protected]>
  • Loading branch information
MichaReiser and AlexWaygood authored Jun 27, 2024
1 parent 80f5457 commit 0cf77b4
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,36 +37,36 @@ The following rules have been remapped to new rule codes:

The following rules have been stabilized and are no longer in preview:

- [`mutable-fromkeys-value`](https://docs.astral.sh/ruff/rules/mutable-fromkeys-value/)
- [`default-factory-kwarg`](https://docs.astral.sh/ruff/rules/default-factory-kwarg/)
- [`django-extra`](https://docs.astral.sh/ruff/rules/django-extra/)
- [`manual-dict-comprehension`](https://docs.astral.sh/ruff/rules/manual-dict-comprehension/)
- [`print-empty-string`](https://docs.astral.sh/ruff/rules/print-empty-string/)
- [`readlines-in-for`](https://docs.astral.sh/ruff/rules/readlines-in-for/)
- [`if-expr-min-max`](https://docs.astral.sh/ruff/rules/if-expr-min-max/)
- [`bit-count`](https://docs.astral.sh/ruff/rules/bit-count/)
- [`redundant-log-base`](https://docs.astral.sh/ruff/rules/redundant-log-base/)
- [`regex-flag-alias`](https://docs.astral.sh/ruff/rules/regex-flag-alias/)
- [`isinstance-type-none`](https://docs.astral.sh/ruff/rules/isinstance-type-none/)
- [`type-none-comparison`](https://docs.astral.sh/ruff/rules/type-none-comparison/)
- [`implicit-cwd`](https://docs.astral.sh/ruff/rules/implicit-cwd/)
- [`hashlib-digest-hex`](https://docs.astral.sh/ruff/rules/hashlib-digest-hex/)
- [`list-reverse-copy`](https://docs.astral.sh/ruff/rules/list-reverse-copy/)
- [`bad-open-mode`](https://docs.astral.sh/ruff/rules/bad-open-mode/)
- [`empty-comment`](https://docs.astral.sh/ruff/rules/empty-comment/)
- [`global-at-module-level`](https://docs.astral.sh/ruff/rules/global-at-module-level/)
- [`misplaced-bare-raise`](https://docs.astral.sh/ruff/rules/misplaced-bare-raise`/)
- [`non-ascii-import-name`](https://docs.astral.sh/ruff/rules/non-ascii-import-name/)
- [`non-ascii-name`](https://docs.astral.sh/ruff/rules/non-ascii-name/)
- [`nonlocal-and-global`](https://docs.astral.sh/ruff/rules/nonlocal-and-global/)
- [`potential-index-error`](https://docs.astral.sh/ruff/rules/potential-index-error/)
- [`redeclared-assigned-name`](https://docs.astral.sh/ruff/rules/redeclared-assigned-name/)
- [`redefined-argument-from-locals`](https://docs.astral.sh/ruff/redefined-argument-from-locals/)
- [`repeated-keyword-argument`](https://docs.astral.sh/ruff/rules/repeated-keyword-argument/)
- [`super-without-brackets`](https://docs.astral.sh/ruff/rules/super-without-brackets/)
- [`unnecessary-list-index-lookup`](https://docs.astral.sh/ruff/rules/unnecessary-list-index-lookup/)
- [`useless-exception-statement`](https://docs.astral.sh/ruff/rules/useless-exception-statement/)
- [`useless-with-lock`](https://docs.astral.sh/ruff/rules/useless-with-lock/)
- [`mutable-fromkeys-value`](https://docs.astral.sh/ruff/rules/mutable-fromkeys-value/) (`RUF024`)
- [`default-factory-kwarg`](https://docs.astral.sh/ruff/rules/default-factory-kwarg/) (`RUF026`)
- [`django-extra`](https://docs.astral.sh/ruff/rules/django-extra/) (`S610`)
- [`manual-dict-comprehension`](https://docs.astral.sh/ruff/rules/manual-dict-comprehension/) (`PERF403`)
- [`print-empty-string`](https://docs.astral.sh/ruff/rules/print-empty-string/) (`FURB105`)
- [`readlines-in-for`](https://docs.astral.sh/ruff/rules/readlines-in-for/) (`FURB129`)
- [`if-expr-min-max`](https://docs.astral.sh/ruff/rules/if-expr-min-max/) (`FURB136`)
- [`bit-count`](https://docs.astral.sh/ruff/rules/bit-count/) (`FURB161`)
- [`redundant-log-base`](https://docs.astral.sh/ruff/rules/redundant-log-base/) (`FURB163`)
- [`regex-flag-alias`](https://docs.astral.sh/ruff/rules/regex-flag-alias/) (`FURB167`)
- [`isinstance-type-none`](https://docs.astral.sh/ruff/rules/isinstance-type-none/) (`FURB168`)
- [`type-none-comparison`](https://docs.astral.sh/ruff/rules/type-none-comparison/) (`FURB169`)
- [`implicit-cwd`](https://docs.astral.sh/ruff/rules/implicit-cwd/) (`FURB177`)
- [`hashlib-digest-hex`](https://docs.astral.sh/ruff/rules/hashlib-digest-hex/) (`FURB181`)
- [`list-reverse-copy`](https://docs.astral.sh/ruff/rules/list-reverse-copy/) (`FURB187`)
- [`bad-open-mode`](https://docs.astral.sh/ruff/rules/bad-open-mode/) (`PLW1501`)
- [`empty-comment`](https://docs.astral.sh/ruff/rules/empty-comment/) (`PLR2044`)
- [`global-at-module-level`](https://docs.astral.sh/ruff/rules/global-at-module-level/) (`PLW0604`)
- [`misplaced-bare-raise`](https://docs.astral.sh/ruff/rules/misplaced-bare-raise`/) (`PLE0744`)
- [`non-ascii-import-name`](https://docs.astral.sh/ruff/rules/non-ascii-import-name/) (`PLC2403`)
- [`non-ascii-name`](https://docs.astral.sh/ruff/rules/non-ascii-name/) (`PLC2401`)
- [`nonlocal-and-global`](https://docs.astral.sh/ruff/rules/nonlocal-and-global/) (`PLE0115`)
- [`potential-index-error`](https://docs.astral.sh/ruff/rules/potential-index-error/) (`PLE0643`)
- [`redeclared-assigned-name`](https://docs.astral.sh/ruff/rules/redeclared-assigned-name/) (`PLW0128`)
- [`redefined-argument-from-local`](https://docs.astral.sh/ruff/rules/redefined-argument-from-local/) (`PLR1704`)
- [`repeated-keyword-argument`](https://docs.astral.sh/ruff/rules/repeated-keyword-argument/) (`PLE1132`)
- [`super-without-brackets`](https://docs.astral.sh/ruff/rules/super-without-brackets/) (`PLW0245`)
- [`unnecessary-list-index-lookup`](https://docs.astral.sh/ruff/rules/unnecessary-list-index-lookup/) (`PLR1736`)
- [`useless-exception-statement`](https://docs.astral.sh/ruff/rules/useless-exception-statement/) (`PLW0133`)
- [`useless-with-lock`](https://docs.astral.sh/ruff/rules/useless-with-lock/) (`PLW2101`)

The following behaviors have been stabilized:

Expand Down

0 comments on commit 0cf77b4

Please sign in to comment.