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

Skip to content

Commit f0ab5dc

Browse files
committed
chore(release): publish 19.4.0
1 parent 309967e commit f0ab5dc

File tree

19 files changed

+110
-9
lines changed

19 files changed

+110
-9
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
## 19.4.0 (2025-05-08)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin:** add rule prefer-output-emitter-ref ([#2324](https://github.com/angular-eslint/angular-eslint/pull/2324))
6+
- **eslint-plugin-template:** [no-interpolation-in-attributes] add allowSubstringInterpolation option ([#2373](https://github.com/angular-eslint/angular-eslint/pull/2373))
7+
- **eslint-plugin-template:** Add `prefer-template-literal` rule ([#2308](https://github.com/angular-eslint/angular-eslint/pull/2308))
8+
9+
### 🩹 Fixes
10+
11+
- update dependency @angular/compiler to v19.2.10 ([#2394](https://github.com/angular-eslint/angular-eslint/pull/2394))
12+
- update dependency ignore to v7.0.4 ([#2396](https://github.com/angular-eslint/angular-eslint/pull/2396))
13+
- update typescript-eslint packages to v8.32.0 ([#2399](https://github.com/angular-eslint/angular-eslint/pull/2399))
14+
- update dependency eslint to v9.26.0 ([#2409](https://github.com/angular-eslint/angular-eslint/pull/2409))
15+
- **eslint-plugin-template:** [no-any] handle key reads ([#1701](https://github.com/angular-eslint/angular-eslint/pull/1701), [#2335](https://github.com/angular-eslint/angular-eslint/pull/2335))
16+
- **eslint-plugin-template:** correct column adjustment for inline template message locations ([#2358](https://github.com/angular-eslint/angular-eslint/pull/2358))
17+
- **eslint-plugin-template:** remove backticks from inline template with interpolation ([#2368](https://github.com/angular-eslint/angular-eslint/pull/2368))
18+
19+
### ❤️ Thank You
20+
21+
- daiscog @daiscog
22+
- Dave @reduckted
23+
- Evgeny Stepanovych @undsoft
24+
- Guillaume DROUARD
25+
126
## 19.3.0 (2025-03-22)
227

328
### 🚀 Features

packages/angular-eslint/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 19.4.0 (2025-05-08)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin-template:** Add `prefer-template-literal` rule ([#2308](https://github.com/angular-eslint/angular-eslint/pull/2308))
6+
- **eslint-plugin:** add rule prefer-output-emitter-ref ([#2324](https://github.com/angular-eslint/angular-eslint/pull/2324))
7+
8+
### ❤️ Thank You
9+
10+
- Dave @reduckted
11+
- Guillaume DROUARD
12+
113
## 19.3.0 (2025-03-22)
214

315
### 🚀 Features

packages/angular-eslint/package.json

Lines changed: 1 addition & 1 deletion
236B
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-eslint",
3-
"version": "19.3.0",
3+
"version": "19.4.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.4.0 (2025-05-08)
2+
3+
This was a version bump only for builder to align it with other projects, there were no code changes.
4+
15
## 19.3.0 (2025-03-22)
26

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

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.3.0",
3+
"version": "19.4.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.4.0 (2025-05-08)
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.3.0 (2025-03-22)
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.3.0",
3+
"version": "19.4.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.4.0 (2025-05-08)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin-template:** Add `prefer-template-literal` rule ([#2308](https://github.com/angular-eslint/angular-eslint/pull/2308))
6+
- **eslint-plugin-template:** [no-interpolation-in-attributes] add allowSubstringInterpolation option ([#2373](https://github.com/angular-eslint/angular-eslint/pull/2373))
7+
8+
### 🩹 Fixes
9+
10+
- **eslint-plugin-template:** remove backticks from inline template with interpolation ([#2368](https://github.com/angular-eslint/angular-eslint/pull/2368))
11+
- **eslint-plugin-template:** correct column adjustment for inline template message locations ([#2358](https://github.com/angular-eslint/angular-eslint/pull/2358))
12+
- **eslint-plugin-template:** [no-any] handle key reads ([#1701](https://github.com/angular-eslint/angular-eslint/pull/1701), [#2335](https://github.com/angular-eslint/angular-eslint/pull/2335))
13+
14+
### ❤️ Thank You
15+
16+
- daiscog @daiscog
17+
- Dave @reduckted
18+
- Evgeny Stepanovych @undsoft
19+
- Guillaume DROUARD
20+
121
## 19.3.0 (2025-03-22)
222

323
### 🚀 Features

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.3.0",
3+
"version": "19.4.0",
44
"description": "ESLint plugin for Angular Templates",
55
"license": "MIT",
66
"main": "dist/index.js",

packages/eslint-plugin/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 19.4.0 (2025-05-08)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin:** add rule prefer-output-emitter-ref ([#2324](https://github.com/angular-eslint/angular-eslint/pull/2324))
6+
7+
### ❤️ Thank You
8+
9+
- Dave @reduckted
10+
111
## 19.3.0 (2025-03-22)
212

313
This was a version bump only for eslint-plugin to align it with other projects, there were no code changes.

0 commit comments

Comments
 (0)
0