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

Skip to content

Commit 2f27837

Browse files
committed
chore(release): publish 18.3.0
1 parent 8c5bc04 commit 2f27837

File tree

20 files changed

+145
-41
lines changed

20 files changed

+145
-41
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## 18.3.0 (2024-08-13)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin:** new rule runtime-localize ([#1898](https://github.com/angular-eslint/angular-eslint/pull/1898))
6+
7+
### 🩹 Fixes
8+
9+
- update dependency eslint to v9.9.0 ([#1976](https://github.com/angular-eslint/angular-eslint/pull/1976))
10+
- update dependency @angular/compiler to v18.1.4 ([#1973](https://github.com/angular-eslint/angular-eslint/pull/1973))
11+
- update dependency ignore to v5.3.2 ([#1979](https://github.com/angular-eslint/angular-eslint/pull/1979))
12+
- update typescript-eslint packages to v8.1.0 ([#1982](https://github.com/angular-eslint/angular-eslint/pull/1982))
13+
- **eslint-plugin-template:** [interactive-supports-focus] allowList with form as default option to support event bubbling ([#1922](https://github.com/angular-eslint/angular-eslint/pull/1922))
14+
- **eslint-plugin-template:** [prefer-self-closing-tags] fix ng-content with rich default content ([#1971](https://github.com/angular-eslint/angular-eslint/pull/1971))
15+
- **prefer-self-closing-tags:** handle both forward and backward slash ([#1967](https://github.com/angular-eslint/angular-eslint/pull/1967))
16+
17+
### ❤️ Thank You
18+
19+
- Daniel Kimmich @json-derulo
20+
- James Henry @JamesHenry
21+
- m-akinc @m-akinc
22+
- Sandi Barr @sandikbarr
23+
- Simon
24+
125
## 18.2.0 (2024-07-31)
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.3.0 (2024-08-13)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin:** new rule runtime-localize
6+
7+
### ❤️ Thank You
8+
9+
- m-akinc
10+
111
## 18.2.0 (2024-07-31)
212

313
### 🚀 Features

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.2.0",
3+
"version": "18.3.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.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"
26+
"@angular-eslint/builder": "18.3.0",
27+
"@angular-eslint/eslint-plugin": "18.3.0",
28+
"@angular-eslint/eslint-plugin-template": "18.3.0",
29+
"@angular-eslint/schematics": "18.3.0",
30+
"@angular-eslint/template-parser": "18.3.0"
3131
}
3232
}

packages/builder/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 18.3.0 (2024-08-13)
2+
3+
### 🩹 Fixes
4+
5+
- ensure consistent nx dependency versions
6+
7+
### ❤️ Thank You
8+
9+
- James Henry
10+
111
## 18.2.0 (2024-07-31)
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": "18.2.0",
3+
"version": "18.3.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.3.0 (2024-08-13)
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.2.0 (2024-07-31)
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.2.0",
3+
"version": "18.3.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+
## 18.3.0 (2024-08-13)
2+
3+
### 🩹 Fixes
4+
5+
- **eslint-plugin-template:** [interactive-supports-focus] allowList with form as default option to support event bubbling
6+
7+
- **eslint-plugin-template:** [prefer-self-closing-tags] fix ng-content with rich default content
8+
9+
- **prefer-self-closing-tags:** handle both forward and backward slash
10+
11+
### ❤️ Thank You
12+
13+
- Daniel Kimmich
14+
- Sandi Barr
15+
- Simon
16+
117
## 18.2.0 (2024-07-31)
218

319
### 🚀 Features

packages/eslint-plugin-template/package.json

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

packages/eslint-plugin/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 18.3.0 (2024-08-13)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin:** new rule runtime-localize
6+
7+
### ❤️ Thank You
8+
9+
- m-akinc
10+
111
## 18.2.0 (2024-07-31)
212

313
### 🚀 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.2.0",
3+
"version": "18.3.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.2.0",
22-
"@angular-eslint/utils": "18.2.0"
21+
"@angular-eslint/bundled-angular-compiler": "18.3.0",
22+
"@angular-eslint/utils": "18.3.0"
2323
},
2424
"devDependencies": {
25-
"@angular-eslint/test-utils": "18.2.0",
25+
"@angular-eslint/test-utils": "18.3.0",
2626
"@angular-eslint/utils": "18.2.0"
2727
},
2828
"peerDependencies": {

packages/schematics/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## 18.3.0 (2024-08-13)
2+
3+
### 🩹 Fixes
4+
5+
- ensure consistent nx dependency versions
6+
7+
- update dependency eslint to v9.9.0
8+
9+
- update dependency ignore to v5.3.2
10+
11+
- update typescript-eslint packages to v8.0.1
12+
13+
- update typescript-eslint packages to v8.1.0
14+
15+
### ❤️ Thank You
16+
17+
- James Henry
18+
119
## 18.2.0 (2024-07-31)
220

321
### 🚀 Features

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.2.0",
3+
"version": "18.3.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.2.0",
40-
"@angular-eslint/eslint-plugin-template": "18.2.0",
39+
"@angular-eslint/eslint-plugin": "18.3.0",
40+
"@angular-eslint/eslint-plugin-template": "18.3.0",
4141
"ignore": "5.3.2",
4242
"semver": "7.6.3",
4343
"strip-json-comments": "3.1.1"

packages/template-parser/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 18.3.0 (2024-08-13)
2+
3+
This was a version bump only for template-parser to align it with other projects, there were no code changes.
4+
15
## 18.2.0 (2024-07-31)
26

37
### 🚀 Features

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.2.0",
3+
"version": "18.3.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.2.0",
21+
"@angular-eslint/bundled-angular-compiler": "18.3.0",
2222
"eslint-scope": "^8.0.2"
2323
},
2424
"peerDependencies": {

packages/test-utils/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 18.3.0 (2024-08-13)
2+
3+
This was a version bump only for test-utils to align it with other projects, there were no code changes.
4+
15
## 18.2.0 (2024-07-31)
26

37
### 🚀 Features

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

packages/utils/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 18.3.0 (2024-08-13)
2+
3+
This was a version bump only for utils to align it with other projects, there were no code changes.
4+
15
## 18.2.0 (2024-07-31)
26

37
### 🚀 Features

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.2.0",
3+
"version": "18.3.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.2.0"
25+
"@angular-eslint/bundled-angular-compiler": "18.3.0"
2626
},
2727
"gitHead": "e2006e5e9c99e5a943d1a999e0efa5247d29ec24"
2828
}

pnpm-lock.yaml

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

0 commit comments

Comments
 (0)