Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fea2384

Browse files
committed
chore(release): publish 18.2.0
1 parent 5c29974 commit fea2384

File tree

19 files changed

+142
-24
lines changed

19 files changed

+142
-24
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## 18.2.0 (2024-07-31)
2+
3+
### 🚀 Features
4+
5+
- update typescript-eslint to v8 stable, eslint v9.8.0 ([#1956](https://github.com/angular-eslint/angular-eslint/pull/1956))
6+
7+
Run `ng update @angular-eslint/schematics` to automatically update your v8 prerelease dependencies of typescript-eslint to v8.0.0, as well as ESLint to v9.8.0
8+
9+
### 🩹 Fixes
10+
11+
- update dependency axobject-query to v4.1.0 ([#1936](https://github.com/angular-eslint/angular-eslint/pull/1936))
12+
- update dependency semver to v7.6.3 ([#1933](https://github.com/angular-eslint/angular-eslint/pull/1933))
13+
- update dependency eslint-scope to v8.0.2 ([#1932](https://github.com/angular-eslint/angular-eslint/pull/1932))
14+
- update dependency @angular/compiler to v18.1.3 ([#1954](https://github.com/angular-eslint/angular-eslint/pull/1954))
15+
- update nrwl monorepo to v19.5.4 ([#1950](https://github.com/angular-eslint/angular-eslint/pull/1950))
16+
- **eslint-plugin:** [prefer-standalone] ignore empty Directive decorators ([#1949](https://github.com/angular-eslint/angular-eslint/pull/1949))
17+
- **eslint-plugin-template:** add meta to preprocessor to resolve eslint cache error ([#1924](https://github.com/angular-eslint/angular-eslint/pull/1924))
18+
19+
### ❤️ Thank You
20+
21+
- James Henry @JamesHenry
22+
- kwiateusz @kwiateusz
23+
- Paweł Maniecki @P4
24+
125
## 18.1.0 (2024-07-01)
226

327
### 🚀 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+
## 18.2.0 (2024-07-31)
2+
3+
### 🚀 Features
4+
5+
- update typescript-eslint to v8 stable, eslint v9.8.0
6+
7+
### ❤️ Thank You
8+
9+
- James Henry
10+
111
## 18.1.0 (2024-07-01)
212

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

packages/angular-eslint/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-eslint",
3-
"version": "18.1.0",
3+
"version": "18.2.0",
44
"description": "The tooling which enables ESLint to work with Angular projects",
55
"license": "MIT",
66
"main": "dist/index.js",
@@ -23,10 +23,10 @@
2323
"typescript-eslint": "^8.0.0"
2424
},
2525
"dependencies": {
26-
"@angular-eslint/builder": "18.1.0",
27-
"@angular-eslint/eslint-plugin": "18.1.0",
28-
"@angular-eslint/eslint-plugin-template": "18.1.0",
29-
"@angular-eslint/schematics": "18.1.0",
30-
"@angular-eslint/template-parser": "18.1.0"
26+
"@angular-eslint/builder": "18.2.0",
27+
"@angular-eslint/eslint-plugin": "18.2.0",
28+
"@angular-eslint/eslint-plugin-template": "18.2.0",
29+
"@angular-eslint/schematics": "18.2.0",
30+
"@angular-eslint/template-parser": "18.2.0"
3131
}
3232
}

packages/builder/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 18.2.0 (2024-07-31)
2+
3+
This was a version bump only for builder to align it with other projects, there were no code changes.
4+
15
## 18.1.0 (2024-07-01)
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": "18.1.0",
3+
"version": "18.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+
## 18.2.0 (2024-07-31)
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
## 18.1.0 (2024-07-01)
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": "18.1.0",
3+
"version": "18.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: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## 18.2.0 (2024-07-31)
2+
3+
### 🚀 Features
4+
5+
- update typescript-eslint to v8 stable, eslint v9.8.0
6+
7+
### 🩹 Fixes
8+
9+
- update dependency axobject-query to v4.1.0
10+
11+
- **eslint-plugin-template:** add meta to preprocessor to resolve eslint cache error
12+
13+
### ❤️ Thank You
14+
15+
- James Henry
16+
- kwiateusz
17+
118
## 18.1.0 (2024-07-01)
219

320
### 🚀 Features

packages/eslint-plugin-template/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular-eslint/eslint-plugin-template",
3-
"version": "18.1.0",
3+
"version": "18.2.0",
44
"description": "ESLint plugin for Angular Templates",
55
"license": "MIT",
66
"main": "dist/index.js",
@@ -18,13 +18,13 @@
1818
"LICENSE"
1919
],
2020
"dependencies": {
21-
"@angular-eslint/bundled-angular-compiler": "18.1.0",
22-
"@angular-eslint/utils": "18.1.0",
21+
"@angular-eslint/bundled-angular-compiler": "18.2.0",
22+
"@angular-eslint/utils": "18.2.0",
2323
"aria-query": "5.3.0",
2424
"axobject-query": "4.1.0"
2525
},
2626
"devDependencies": {
27-
"@angular-eslint/test-utils": "18.1.0",
27+
"@angular-eslint/test-utils": "18.2.0",
2828
"@types/aria-query": "5.0.4"
2929
},
3030
"peerDependencies": {

packages/eslint-plugin/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## 18.2.0 (2024-07-31)
2+
3+
### 🚀 Features
4+
5+
- update typescript-eslint to v8 stable, eslint v9.8.0
6+
7+
### 🩹 Fixes
8+
9+
- **eslint-plugin:** [prefer-standalone] ignore empty Directive decorators
10+
11+
### ❤️ Thank You
12+
13+
- James Henry
14+
- Paweł Maniecki
15+
116
## 18.1.0 (2024-07-01)
217

318
### 🚀 Features

packages/eslint-plugin/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular-eslint/eslint-plugin",
3-
"version": "18.1.0",
3+
"version": "18.2.0",
44
"description": "ESLint plugin for Angular applications, following https://angular.dev/style-guide",
55
"license": "MIT",
66
"main": "dist/index.js",
@@ -18,11 +18,11 @@
1818
"LICENSE"
1919
],
2020
"dependencies": {
21-
"@angular-eslint/bundled-angular-compiler": "18.1.0",
22-
"@angular-eslint/utils": "18.1.0"
21+
"@angular-eslint/bundled-angular-compiler": "18.2.0",
22+
"@angular-eslint/utils": "18.2.0"
2323
},
2424
"devDependencies": {
25-
"@angular-eslint/test-utils": "18.1.0"
25+
"@angular-eslint/test-utils": "18.2.0"
2626
},
2727
"peerDependencies": {
2828
"@typescript-eslint/utils": "^7.11.0 || ^8.0.0",

packages/schematics/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 18.2.0 (2024-07-31)
2+
3+
### 🚀 Features
4+
5+
- update typescript-eslint to v8 stable, eslint v9.8.0
6+
7+
### 🩹 Fixes
8+
9+
- update dependency semver to v7.6.3
10+
11+
### ❤️ Thank You
12+
13+
- James Henry
14+
115
## 18.1.0 (2024-07-01)
216

317
### 🩹 Fixes

packages/schematics/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/schematics",
3-
"version": "18.1.0",
3+
"version": "18.2.0",
44
"description": "Angular Schematics for angular-eslint",
55
"license": "MIT",
66
"main": "dist/index.js",
@@ -36,8 +36,8 @@
3636
"save": "devDependencies"
3737
},
3838
"dependencies": {
39-
"@angular-eslint/eslint-plugin": "18.1.0",
40-
"@angular-eslint/eslint-plugin-template": "18.1.0",
39+
"@angular-eslint/eslint-plugin": "18.2.0",
40+
"@angular-eslint/eslint-plugin-template": "18.2.0",
4141
"@nx/devkit": "^19.0.6",
4242
"ignore": "5.3.1",
4343
"nx": "^19.0.6",

packages/template-parser/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 18.2.0 (2024-07-31)
2+
3+
### 🚀 Features
4+
5+
- update typescript-eslint to v8 stable, eslint v9.8.0
6+
7+
### ❤️ Thank You
8+
9+
- James Henry
10+
111
## 18.1.0 (2024-07-01)
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular-eslint/template-parser",
3-
"version": "18.1.0",
3+
"version": "18.2.0",
44
"description": "Angular Template parser for ESLint",
55
"license": "MIT",
66
"main": "dist/index.js",
@@ -18,7 +18,7 @@
1818
"LICENSE"
1919
],
2020
"dependencies": {
21-
"@angular-eslint/bundled-angular-compiler": "18.1.0",
21+
"@angular-eslint/bundled-angular-compiler": "18.2.0",
2222
"eslint-scope": "^8.0.2"
2323
},
2424
"peerDependencies": {

packages/test-utils/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 18.2.0 (2024-07-31)
2+
3+
### 🚀 Features
4+
5+
- update typescript-eslint to v8 stable, eslint v9.8.0
6+
7+
### ❤️ Thank You
8+
9+
- James Henry
10+
111
## 18.1.0 (2024-07-01)
212

313
### 🩹 Fixes

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

packages/utils/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 18.2.0 (2024-07-31)
2+
3+
### 🚀 Features
4+
5+
- update typescript-eslint to v8 stable, eslint v9.8.0
6+
7+
### ❤️ Thank You
8+
9+
- James Henry
10+
111
## 18.1.0 (2024-07-01)
212

313
### 🩹 Fixes

packages/utils/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular-eslint/utils",
3-
"version": "18.1.0",
3+
"version": "18.2.0",
44
"license": "MIT",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -22,7 +22,7 @@
2222
"typescript": "*"
2323
},
2424
"dependencies": {
25-
"@angular-eslint/bundled-angular-compiler": "18.1.0"
25+
"@angular-eslint/bundled-angular-compiler": "18.2.0"
2626
},
2727
"gitHead": "e2006e5e9c99e5a943d1a999e0efa5247d29ec24"
2828
}

0 commit comments

Comments
 (0)