8000 chore(release): publish 19.7.0 · angular-eslint/angular-eslint@0d02cc2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0d02cc2

Browse files
committed
chore(release): publish 19.7.0
1 parent 7930f40 commit 0d02cc2

File tree

19 files changed

+118
-9
lines changed

19 files changed

+118
-9
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
## 19.7.0 (2025-06-02)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin:** add no-uncalled-signals rule ([#2383](https://github.com/angular-eslint/angular-eslint/pull/2383))
6+
- **eslint-plugin:** [require-localize-metadata] add requireCustomId option ([#2430](https://github.com/angular-eslint/angular-eslint/pull/2430))
7+
- **eslint-plugin-template:** [click-events-have-key-events] Added ignoreWithDirectives option ([#2365](https://github.com/angular-eslint/angular-eslint/pull/2365))
8+
9+
### 🩹 Fixes
10+
11+
- update typescript-eslint packages to v8.33.0 ([#2465](https://github.com/angular-eslint/angular-eslint/pull/2465))
12+
- update dependency @angular/compiler to v19.2.14 ([#2477](https://github.com/angular-eslint/angular-eslint/pull/2477))
13+
- update dependency ignore to v7.0.5 ([#2485](https://github.com/angular-eslint/angular-eslint/pull/2485))
14+
- update dependency eslint to v9.28.0 ([#2484](https://github.com/angular-eslint/angular-eslint/pull/2484))
15+
- **eslint-plugin-template:** set template-parser as peer dependency ([#2487](https://github.com/angular-eslint/angular-eslint/pull/2487))
16+
- **eslint-plugin-template:** any valid DOM element with role button is interactive ([#2488](https://github.com/angular-eslint/angular-eslint/pull/2488))
17+
- **eslint-plugin-template:** [label-has-associated-control] labelComponents should override default label inputs ([#2360](https://github.com/angular-eslint/angular-eslint/pull/2360))
18+
- **eslint-plugin-template:** [prefer-template-literal] handle nested and concatenations in template literal ([#2466](https://github.com/angular-eslint/angular-eslint/pull/2466))
19+
- **schematics:** ensure @eslint/js and @angular-eslint/builder are always available in non-npm repos ([#2486](https://github.com/angular-eslint/angular-eslint/pull/2486))
20+
21+
### ❤️ Thank You
22+
23+
- Cullen Prestegard @cprestegard
24+
- Guillaume DROUARD
25+
- Igor Dimitrijevic
26+
- James Henry @JamesHenry
27+
- jelledijkstra97 @jelledijkstra97
28+
- Stephen Jackson
29+
130
## 19.6.0 (2025-05-27)
231

332
### 🚀 Features

packages/angular-eslint/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 19.7.0 (2025-06-02)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin:** add no-uncalled-signals rule ([#2383](https://github.com/angular-eslint/angular-eslint/pull/2383))
6+
7+
### ❤️ Thank You
8+
9+
- Stephen Jackson
10+
111
## 19.6.0 (2025-05-27)
212

B421 313
### 🚀 Features

packages/angular-eslint/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-eslint",
3-
"version": "19.6.0",
3+
"version": "19.7.0",
44
"description": "The tooling which enables ESLint to work with Angular projects",
55
"license": "MIT",
66
"main": "dist/index.js",

packages/builder/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 19.7.0 (2025-06-02)
2+
3+
This was a version bump only for builder to align it with other projects, there were no code changes.
4+
15
## 19.6.0 (2025-05-27)
26

37
### 🩹 Fixes

packages/builder/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular-eslint/builder",
3-
"version": "19.6.0",
3+
"version": "19.7.0",
44
"description": "Angular CLI builder for ESLint",
55
"license": "MIT",
66
"main": "dist/index.js",

packages/bundled-angular-compiler/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 19.7.0 (2025-06-02)
2+
3+
This was a version bump only for bundled-angular-compiler to align it with other projects, there were no code changes.
4+
15
## 19.6.0 (2025-05-27)
26

37
This was a version bump only for bundled-angular-compiler to align it with other projects, there were no code changes.

packages/bundled-angular-compiler/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular-eslint/bundled-angular-compiler",
3-
"version": "19.6.0",
3+
"version": "19.7.0",
44
"description": "A CJS bundled version of @angular/compiler",
55
"license": "MIT",
66
"main": "dist/index.js",

packages/eslint-plugin-template/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## 19.7.0 (2025-06-02)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin-template:** [click-events-have-key-events] Added ignoreWithDirectives option ([#2365](https://github.com/angular-eslint/angular-eslint/pull/2365))
6+
7+
### 🩹 Fixes
8+
9+
- **eslint-plugin-template:** [prefer-template-literal] handle nested and concatenations in template literal ([#2466](https://github.com/angular-eslint/angular-eslint/pull/2466))
10+
- **eslint-plugin-template:** [label-has-associated-control] labelComponents should override default label inputs ([#2360](https://github.com/angular-eslint/angular-eslint/pull/2360))
11+
- **eslint-plugin-template:** any valid DOM element with role button is interactive ([#2488](https://github.com/angular-eslint/angular-eslint/pull/2488))
12+
- **eslint-plugin-template:** set template-parser as peer dependency ([#2487](https://github.com/angular-eslint/angular-eslint/pull/2487))
13+
14+
### ❤️ Thank You
15+
16+
- Cullen Prestegard @cprestegard
17+
- Guillaume DROUARD
18+
- James Henry @JamesHenry
19+
- jelledijkstra97 @jelledijkstra97
20+
121
## 19.6.0 (2025-05-27)
222

323
### 🩹 Fixes

packages/eslint-plugin-template/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular-eslint/eslint-plugin-template",
3-
"version": "19.6.0",
3+
"version": "19.7.0",
44
"description": "ESLint plugin for Angular Templates",
55
"license": "MIT",
66
"main": "dist/index.js",

packages/eslint-plugin/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## 19.7.0 (2025-06-02)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin:** [require-localize-metadata] add requireCustomId option ([#2430](https://github.com/angular-eslint/angular-eslint/pull/2430))
6+
- **eslint-plugin:** add no-uncalled-signals rule ([#2383](https://github.com/angular-eslint/angular-eslint/pull/2383))
7+
8+
### 🩹 Fixes
9+
10+
- **eslint-plugin-template:** any valid DOM element with role button is interactive ([#2488](https://github.com/angular-eslint/angular-eslint/pull/2488))
11+
12+
### ❤️ Thank You
13+
14+
- Igor Dimitrijevic
15+
- James Henry @JamesHenry
16+
- Stephen Jackson
17+
118
## 19.6.0 (2025-05-27)
219

320
### 🚀 Features

0 commit comments

Comments
 (0)
0