Skip to content

Commit 4efe5e9

Browse files
committed
chore(release): publish 17.5.0
1 parent bb8470d commit 4efe5e9

File tree

15 files changed

+153
-15
lines changed

15 files changed

+153
-15
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
## 17.5.0 (2024-05-22)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin:** [use-lifecycle-interface] add fixer for the rule ([#1691](https://github.com/angular-eslint/angular-eslint/pull/1691))
6+
- **eslint-plugin-template:** [i18n] add allowMarkupInContent option ([#1795](https://github.com/angular-eslint/angular-eslint/pull/1795))
7+
8+
### 🩹 Fixes
9+
10+
- update dependency @angular/compiler to v17.3.9 ([#1821](https://github.com/angular-eslint/angular-eslint/pull/1821))
11+
- update typescript-eslint packages to v7.10.0 ([#1822](https://github.com/angular-eslint/angular-eslint/pull/1822))
12+
- **eslint-plugin:** [no-input-rename] incorrectly triggers on input transforms ([#1809](https://github.com/angular-eslint/angular-eslint/pull/1809))
13+
- **eslint-plugin-template:** [label-has-associated-control] check id's in the for attribute of a label for existence ([#1761](https://github.com/angular-eslint/angular-eslint/pull/1761))
14+
15+
### ❤️ Thank You
16+
17+
- Auke Bruinsma
18+
- Jonathan Kolberg @bulldog98
19+
- m-akinc @m-akinc
20+
- Mateusz
21+
122
## 17.4.1 (2024-05-15)
223

324
### 🩹 Fixes

packages/builder/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## 17.5.0 (2024-05-22)
2+
3+
### 🩹 Fixes
4+
5+
- update dependency @angular/compiler to v17.3.9
6+
7+
- update typescript-eslint packages to v7.10.0
8+
9+
### ❤️ Thank You
10+
11+
- Auke Bruinsma
12+
- Jonathan Kolberg
13+
- m-akinc
14+
- Mateusz
15+
116
## 17.4.1 (2024-05-15)
217

318
### 🩹 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": "0.0.0-e2e",
3+
"version": "17.5.0",
44
"description": "Angular CLI builder for ESLint",
55
"license": "MIT",
66
"main": "dist/index.js",

packages/bundled-angular-compiler/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## 17.5.0 (2024-05-22)
2+
3+
### 🩹 Fixes
4+
5+
- update dependency @angular/compiler to v17.3.9
6+
7+
- update typescript-eslint packages to v7.10.0
8+
9+
### ❤️ Thank You
10+
11+
- Auke Bruinsma
12+
- Jonathan Kolberg
13+
- m-akinc
14+
- Mateusz
15+
116
## 17.4.1 (2024-05-15)
217

318
### 🩹 Fixes

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": "0.0.0-e2e",
3+
"version": "17.5.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: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
## 17.5.0 (2024-05-22)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin-template:** [i18n] add allowMarkupInContent option
6+
7+
### 🩹 Fixes
8+
9+
- update dependency @angular/compiler to v17.3.9
10+
11+
- update typescript-eslint packages to v7.10.0
12+
13+
- **eslint-plugin-template:** [label-has-associated-control] check id's in the for attribute of a label for existence
14+
15+
### ❤️ Thank You
16+
17+
- Auke Bruinsma
18+
- Jonathan Kolberg
19+
- m-akinc
20+
- Mateusz
21+
122
## 17.4.1 (2024-05-15)
223

324
### 🩹 Fixes

packages/eslint-plugin-template/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular-eslint/eslint-plugin-template",
3-
"version": "0.0.0-e2e",
3+
"version": "17.5.0",
44
"description": "ESLint plugin for Angular Templates",
55
"license": "MIT",
66
"main": "dist/index.js",
@@ -18,8 +18,8 @@
1818
"LICENSE"
1919
],
2020
"dependencies": {
21-
"@angular-eslint/bundled-angular-compiler": "0.0.0-e2e",
22-
"@angular-eslint/utils": "0.0.0-e2e",
21+
"@angular-eslint/bundled-angular-compiler": "17.5.0",
22+
"@angular-eslint/utils": "17.5.0",
2323
"@typescript-eslint/type-utils": "7.10.0",
2424
"@typescript-eslint/utils": "7.10.0",
2525
"aria-query": "5.3.0",

packages/eslint-plugin/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
## 17.5.0 (2024-05-22)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin:** [use-lifecycle-interface] add fixer for the rule
6+
7+
### 🩹 Fixes
8+
9+
- update dependency @angular/compiler to v17.3.9
10+
11+
- update typescript-eslint packages to v7.10.0
12+
13+
- **eslint-plugin:** [no-input-rename] incorrectly triggers on input transforms
14+
15+
### ❤️ Thank You
16+
17+
- Auke Bruinsma
18+
- Jonathan Kolberg
19+
- m-akinc
20+
- Mateusz
21+
122
## 17.4.1 (2024-05-15)
223

324
### 🩹 Fixes

packages/eslint-plugin/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular-eslint/eslint-plugin",
3-
"version": "0.0.0-e2e",
3+
"version": "17.5.0",
44
"description": "ESLint plugin for Angular applications, following angular.io/styleguide",
55
"license": "MIT",
66
"main": "dist/index.js",
@@ -18,8 +18,8 @@
1818
"LICENSE"
1919
],
2020
"dependencies": {
21-
"@angular-eslint/bundled-angular-compiler": "0.0.0-e2e",
22-
"@angular-eslint/utils": "0.0.0-e2e",
21+
"@angular-eslint/bundled-angular-compiler": "17.5.0",
22+
"@angular-eslint/utils": "17.5.0",
2323
"@typescript-eslint/utils": "7.10.0"
2424
},
2525
"peerDependencies": {

packages/schematics/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## 17.5.0 (2024-05-22)
2+
3+
### 🩹 Fixes
4+
5+
- update dependency @angular/compiler to v17.3.9
6+
7+
- update typescript-eslint packages to v7.10.0
8+
9+
### ❤️ Thank You
10+
11+
- Auke Bruinsma
12+
- Jonathan Kolberg
13+
- m-akinc
14+
- Mateusz
15+
116
## 17.4.1 (2024-05-15)
217

318
### 🩹 Fixes

0 commit comments

Comments
 (0)