Skip to content

Commit acaeb15

Browse files
committed
chore(release): publish 19.2.0
1 parent 84fdb11 commit acaeb15

File tree

20 files changed

+140
-14
lines changed

20 files changed

+140
-14
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## 19.2.0 (2025-03-02)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin:** add rule require-lifecycle-on-prototype ([#2259](https://github.com/angular-eslint/angular-eslint/pull/2259))
6+
7+
### 🩹 Fixes
8+
9+
- update dependency @angular/compiler to v19.2.0 ([#2268](https://github.com/angular-eslint/angular-eslint/pull/2268))
10+
- update dependency eslint to v9.21.0 ([#2243](https://github.com/angular-eslint/angular-eslint/pull/2243))
11+
- update typescript-eslint packages to v8.25.0 ([#2263](https://github.com/angular-eslint/angular-eslint/pull/2263))
12+
- **eslint-plugin:** [no-output-native] update native event names ([#2236](https://github.com/angular-eslint/angular-eslint/pull/2236))
13+
- **eslint-plugin-template:** [prefer-self-closing-tags] do not treat comments as whitespace ([#2256](https://github.com/angular-eslint/angular-eslint/pull/2256))
14+
- **eslint-plugin-template:** [prefer-self-closing-tags] allow nested ng-content ([#2257](https://github.com/angular-eslint/angular-eslint/pull/2257))
15+
- **eslint-plugin-template:** [prefer-static-string-properties] do not check structural directives ([#2253](https://github.com/angular-eslint/angular-eslint/pull/2253))
16+
- **eslint-plugin-template:** find inline templates on components in blocks ([#2238](https://github.com/angular-eslint/angular-eslint/pull/2238))
17+
- **prefer-static-string-properties:** resolve bug with directives ([#2271](https://github.com/angular-eslint/angular-eslint/pull/2271))
18+
- **prefer-static-string-properties:** exclude special attributes ([#2273](https://github.com/angular-eslint/angular-eslint/pull/2273))
19+
20+
### ❤️ Thank You
21+
22+
- Dave @reduckted
23+
- Marie Briand @mbriand-lucca
24+
125
## 19.1.0 (2025-02-09)
226

327
### 🚀 Features

packages/angular-eslint/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 19.2.0 (2025-03-02)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin:** add rule require-lifecycle-on-prototype ([#2259](https://github.com/angular-eslint/angular-eslint/pull/2259))
6+
7+
### 🩹 Fixes
8+
9+
- **eslint-plugin-template:** find inline templates on components in blocks ([#2238](https://github.com/angular-eslint/angular-eslint/pull/2238))
10+
11+
### ❤️ Thank You
12+
13+
- Dave @reduckted
14+
115
## 19.1.0 (2025-02-09)
216

317
### 🚀 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.1.0",
3+
"version": "19.2.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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 19.2.0 (2025-03-02)
2+
3+
### 🩹 Fixes
4+
5+
- **eslint-plugin-template:** find inline templates on components in blocks ([#2238](https://github.com/angular-eslint/angular-eslint/pull/2238))
6+
7+
### ❤️ Thank You
8+
9+
- Dave @reduckted
10+
111
## 19.1.0 (2025-02-09)
212

313
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.1.0",
3+
"version": "19.2.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.2.0 (2025-03-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.1.0 (2025-02-09)
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.1.0",
3+
"version": "19.2.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: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 19.2.0 (2025-03-02)
2+
3+
### 🩹 Fixes
4+
5+
- **prefer-static-string-properties:** exclude special attributes ([#2273](https://github.com/angular-eslint/angular-eslint/pull/2273))
6+
- **prefer-static-string-properties:** resolve bug with directives ([#2271](https://github.com/angular-eslint/angular-eslint/pull/2271))
7+
- **eslint-plugin-template:** find inline templates on components in blocks ([#2238](https://github.com/angular-eslint/angular-eslint/pull/2238))
8+
- **eslint-plugin-template:** [prefer-static-string-properties] do not check structural directives ([#2253](https://github.com/angular-eslint/angular-eslint/pull/2253))
9+
- **eslint-plugin-template:** [prefer-self-closing-tags] allow nested ng-content ([#2257](https://github.com/angular-eslint/angular-eslint/pull/2257))
10+
- **eslint-plugin-template:** [prefer-self-closing-tags] do not treat comments as whitespace ([#2256](https://github.com/angular-eslint/angular-eslint/pull/2256))
11+
12+
### ❤️ Thank You
13+
14+
- Dave @reduckted
15+
- Marie Briand @mbriand-lucca
16+
117
## 19.1.0 (2025-02-09)
218

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

packages/eslint-plugin/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 19.2.0 (2025-03-02)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin:** add rule require-lifecycle-on-prototype ([#2259](https://github.com/angular-eslint/angular-eslint/pull/2259))
6+
7+
### 🩹 Fixes
8+
9+
- **eslint-plugin-template:** find inline templates on components in blocks ([#2238](https://github.com/angular-eslint/angular-eslint/pull/2238))
10+
11+
### ❤️ Thank You
12+
13+
- Dave @reduckted
14+
115
## 19.1.0 (2025-02-09)
216

317
### 🚀 Features

packages/eslint-plugin/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",
3-
"version": "19.1.0",
3+
"version": "19.2.0",
44
"description": "ESLint plugin for Angular applications, following https://angular.dev/style-guide",
55
"license": "MIT",
66
"main": "dist/index.js",

packages/schematics/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## 19.2.0 (2025-03-02)
2+
3+
### 🩹 Fixes
4+
5+
- update typescript-eslint packages to v8.25.0 ([#2263](https://github.com/angular-eslint/angular-eslint/pull/2263))
6+
- update dependency eslint to v9.21.0 ([#2243](https://github.com/angular-eslint/angular-eslint/pull/2243))
7+
- **eslint-plugin-template:** find inline templates on components in blocks ([#2238](https://github.com/angular-eslint/angular-eslint/pull/2238))
8+
- update typescript-eslint packages to v8.24.0 ([#2240](https://github.com/angular-eslint/angular-eslint/pull/2240))
9+
10+
### ❤️ Thank You
11+
12+
- Dave @reduckted
13+
114
## 19.1.0 (2025-02-09)
215

316
### 🩹 Fixes

packages/schematics/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/schematics",
3-
"version": "19.1.0",
3+
"version": "19.2.0",
44
"description": "Angular Schematics for angular-eslint",
55
"license": "MIT",
66
"main": "dist/index.js",

packages/template-parser/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 19.2.0 (2025-03-02)
2+
3+
### 🩹 Fixes
4+
5+
- **eslint-plugin-template:** find inline templates on components in blocks ([#2238](https://github.com/angular-eslint/angular-eslint/pull/2238))
6+
7+
### ❤️ Thank You
8+
9+
- Dave @reduckted
10+
111
## 19.1.0 (2025-02-09)
212

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

packages/template-parser/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/template-parser",
3-
"version": "19.1.0",
3+
"version": "19.2.0",
44
"description": "Angular Template parser for ESLint",
55
"license": "MIT",
66
"main": "dist/index.js",

packages/test-utils/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 19.2.0 (2025-03-02)
2+
3+
### 🩹 Fixes
4+
5+
- **eslint-plugin-template:** find inline templates on components in blocks ([#2238](https://github.com/angular-eslint/angular-eslint/pull/2238))
6+
7+
### ❤️ Thank You
8+
9+
- Dave @reduckted
10+
111
## 19.1.0 (2025-02-09)
212

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

packages/test-utils/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/test-utils",
3-
"version": "19.1.0",
3+
"version": "19.2.0",
44
"license": "MIT",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

packages/utils/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 19.2.0 (2025-03-02)
2+
3+
### 🩹 Fixes
4+
5+
- **eslint-plugin:** [no-output-native] update native event names ([#2236](https://github.com/angular-eslint/angular-eslint/pull/2236))
6+
- **eslint-plugin-template:** find inline templates on components in blocks ([#2238](https://github.com/angular-eslint/angular-eslint/pull/2238))
7+
8+
### ❤️ Thank You
9+
10+
- Dave @reduckted
11+
112
## 19.1.0 (2025-02-09)
213

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

packages/utils/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/utils",
3-
"version": "19.1.0",
3+
"version": "19.2.0",
44
"license": "MIT",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

pnpm-lock.yaml

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy