Skip to content

Commit b077563

Browse files
committed
Publish v0.17.0-beta.1
1 parent 6f5da70 commit b077563

File tree

4 files changed

+595
-609
lines changed

4 files changed

+595
-609
lines changed

CHANGELOG.adoc

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,13 @@
33
:eslint-angular-rules: https://github.com/angular-eslint/angular-eslint/blob/main/packages/eslint-plugin/docs/rules
44
:eslint-angular-template-rules: https://github.com/angular-eslint/angular-eslint/blob/main/packages/eslint-plugin-template/docs/rules
55

6-
== v0.17.0-beta (next)
6+
== v0.17.0-beta.1 (next)
7+
8+
* Updated `link:https://github.com/perfective/eslint-config[@perfective/eslint-config]` to `link:{eslint-config-tags}/v0.22.0-beta[0.22.0-beta]`.
9+
* Patched `@angular-eslint` to `16.1.1`
10+
*** Re-enabled `@angular-eslint/require-localize-metadata` as an error.
11+
12+
== v0.17.0-beta
713

814
* Updated `link:https://github.com/perfective/eslint-config[@perfective/eslint-config]` to `link:{eslint-config-tags}/v0.21.0-beta.3[0.21.0-beta.3]`.
915
* Updated `@angular-eslint` to `16.1.0`

MIGRATION_GUIDE.adoc

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Migration between minor versions follows the same steps:
99
** fix errors or check auto-fixes of warnings;
1010
** check for the regressions.
1111

12-
== From `v0.16.0` to `v0.17.0-beta` (next)
12+
== From `v0.16.0` to `v0.17.0-beta.1` (next)
1313

1414
* If you do not use `jest`,
1515
remove `eslint-plugin-jest`, `eslint-plugin-jest-formatting`, `eslint-plugin-jest-dom`,
@@ -39,7 +39,12 @@ if you have any.
3939
** Replace `@angular-eslint/template/accessibility-valid-aria` with `link:{eslint-angular-template-rules}/valid-aria.md[@angular-eslint/template/valid-aria]`.
4040
** Remove `@angular-eslint/template/accessibility-label-for` as deprecated and removed from `@angular-eslint`.
4141
+
42-
42+
* Update `eslint-plugin-testing-library` rules (if applicable):
43+
** Replace `testing-library/await-async-query` with `testing-library/await-async-queries`.
44+
** Replace `testing-library/await-fire-event` with `testing-library/await-async-events`.
45+
** Replace `testing-library/no-await-sync-query` with `testing-library/no-await-sync-queries`.
46+
** Replace `testing-library/no-render-in-setup` with `testing-library/no-render-in-lifecycle`.
47+
+
4348

4449
* Disable new rules in the `.eslintrc.js`.
4550
+
@@ -53,7 +58,9 @@ module.exports = {
5358
{
5459
files: ['*.[jt]s?(x)'],
5560
rules: {
61+
'@angular-eslint/require-localize-metadata': 'off',
5662
'@angular-eslint/template/prefer-self-closing-tags': 'off', // auto-fixable
63+
'@typescript-eslint/block-spacing': 'off', // auto-fixable
5764
'@typescript-eslint/no-duplicate-type-constituents': 'off',
5865
'@typescript-eslint/no-unsafe-enum-comparison': 'off',
5966
'jsdoc/imports-as-dependencies': 'off',

0 commit comments

Comments
 (0)