Skip to content

Commit

Permalink
chore(release): publish 18.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesHenry committed Jul 1, 2024
1 parent 79d1b41 commit 796e657
Show file tree
Hide file tree
Showing 19 changed files with 159 additions and 24 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
## 18.1.0 (2024-07-01)

### 🚀 Features

- **eslint-plugin:** [prefer-output-readonly] support output() function ([#1876](/~https://github.com/angular-eslint/angular-eslint/pull/1876))
- **eslint-plugin:** [no-call-expression] add allowPrefix and allowSuffix ([#1897](/~https://github.com/angular-eslint/angular-eslint/pull/1897))

### 🩹 Fixes

- update dependency @angular/compiler to v18.0.2 ([#1852](/~https://github.com/angular-eslint/angular-eslint/pull/1852))
- update dependency eslint to v9.5.0 ([#1886](/~https://github.com/angular-eslint/angular-eslint/pull/1886))
- update dependency eslint to v9.6.0 ([#1900](/~https://github.com/angular-eslint/angular-eslint/pull/1900))
- update dependency @angular/compiler to v18.0.5 ([#1893](/~https://github.com/angular-eslint/angular-eslint/pull/1893))
- update nrwl monorepo to v19.3.2 ([#1902](/~https://github.com/angular-eslint/angular-eslint/pull/1902))
- update typescript-eslint packages to v8.0.0-alpha.38 ([#1904](/~https://github.com/angular-eslint/angular-eslint/pull/1904))
- **eslint-plugin-template:** [prefer-self-closing-tags] always ignore index.html files ([#1865](/~https://github.com/angular-eslint/angular-eslint/pull/1865))
- **eslint-plugin-template:** [prefer-self-closing-tags] support ng-content with fallback content ([#1880](/~https://github.com/angular-eslint/angular-eslint/pull/1880))
- **test-utils:** use configured RuleTester.afterAll over global ([#1878](/~https://github.com/angular-eslint/angular-eslint/pull/1878))

### ❤️ Thank You

- Christian Svensson
- Daniel Kimmich @json-derulo
- Dave @reduckted
- Martijn van der Meij
- Maximilian Main @MaximilianMain

## 18.0.1 (2024-05-30)

### 🩹 Fixes
Expand Down
4 changes: 4 additions & 0 deletions packages/angular-eslint/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 18.1.0 (2024-07-01)

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

## 18.0.1 (2024-05-30)

This was a version bump only for angular-eslint to align it with other projects, there were no code changes.
Expand Down
12 changes: 6 additions & 6 deletions packages/angular-eslint/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-eslint",
"version": "18.0.1",
"version": "18.1.0",
"description": "The tooling which enables ESLint to work with Angular projects",
"license": "MIT",
"main": "dist/index.js",
Expand All @@ -23,10 +23,10 @@
"typescript-eslint": "^8.0.0-alpha.20"
},
"dependencies": {
"@angular-eslint/builder": "18.0.1",
"@angular-eslint/eslint-plugin": "18.0.1",
"@angular-eslint/eslint-plugin-template": "18.0.1",
"@angular-eslint/schematics": "18.0.1",
"@angular-eslint/template-parser": "18.0.1"
"@angular-eslint/builder": "18.1.0",
"@angular-eslint/eslint-plugin": "18.1.0",
"@angular-eslint/eslint-plugin-template": "18.1.0",
"@angular-eslint/schematics": "18.1.0",
"@angular-eslint/template-parser": "18.1.0"
}
}
4 changes: 4 additions & 0 deletions packages/builder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 18.1.0 (2024-07-01)

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

## 18.0.1 (2024-05-30)

### 🩹 Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/builder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@angular-eslint/builder",
"version": "18.0.1",
"version": "18.1.0",
"description": "Angular CLI builder for ESLint",
"license": "MIT",
"main": "dist/index.js",
Expand Down
4 changes: 4 additions & 0 deletions packages/bundled-angular-compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 18.1.0 (2024-07-01)

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

## 18.0.1 (2024-05-30)

This was a version bump only for bundled-angular-compiler to align it with other projects, there were no code changes.
Expand Down
2 changes: 1 addition & 1 deletion packages/bundled-angular-compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@angular-eslint/bundled-angular-compiler",
"version": "18.0.1",
"version": "18.1.0",
"description": "A CJS bundled version of @angular/compiler",
"license": "MIT",
"main": "dist/index.js",
Expand Down
22 changes: 22 additions & 0 deletions packages/eslint-plugin-template/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
## 18.1.0 (2024-07-01)

### 🚀 Features

- **eslint-plugin:** [no-call-expression] add allowPrefix and allowSuffix

### 🩹 Fixes

- update typescript-eslint packages to v8.0.0-alpha.37

- **eslint-plugin-template:** [prefer-self-closing-tags] always ignore index.html files

- **eslint-plugin-template:** [prefer-self-closing-tags] support ng-content with fallback content

### ❤️ Thank You

- Christian Svensson
- Daniel Kimmich
- Dave
- Martijn van der Meij
- Maximilian Main

## 18.0.1 (2024-05-30)

### 🩹 Fixes
Expand Down
8 changes: 4 additions & 4 deletions packages/eslint-plugin-template/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@angular-eslint/eslint-plugin-template",
"version": "18.0.1",
"version": "18.1.0",
"description": "ESLint plugin for Angular Templates",
"license": "MIT",
"main": "dist/index.js",
Expand All @@ -18,13 +18,13 @@
"LICENSE"
],
"dependencies": {
"@angular-eslint/bundled-angular-compiler": "18.0.1",
"@angular-eslint/utils": "18.0.1",
"@angular-eslint/bundled-angular-compiler": "18.1.0",
"@angular-eslint/utils": "18.1.0",
"aria-query": "5.3.0",
"axobject-query": "4.0.0"
},
"devDependencies": {
"@angular-eslint/test-utils": "18.0.1",
"@angular-eslint/test-utils": "18.1.0",
"@types/aria-query": "5.0.4"
},
"peerDependencies": {
Expand Down
18 changes: 18 additions & 0 deletions packages/eslint-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## 18.1.0 (2024-07-01)

### 🚀 Features

- **eslint-plugin:** [prefer-output-readonly] support output() function

### 🩹 Fixes

- update typescript-eslint packages to v8.0.0-alpha.37

### ❤️ Thank You

- Christian Svensson
- Daniel Kimmich
- Dave
- Martijn van der Meij
- Maximilian Main

## 18.0.1 (2024-05-30)

### 🩹 Fixes
Expand Down
8 changes: 4 additions & 4 deletions packages/eslint-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@angular-eslint/eslint-plugin",
"version": "18.0.1",
"version": "18.1.0",
"description": "ESLint plugin for Angular applications, following https://angular.dev/style-guide",
"license": "MIT",
"main": "dist/index.js",
Expand All @@ -18,11 +18,11 @@
"LICENSE"
],
"dependencies": {
"@angular-eslint/bundled-angular-compiler": "18.0.1",
"@angular-eslint/utils": "18.0.1"
"@angular-eslint/bundled-angular-compiler": "18.1.0",
"@angular-eslint/utils": "18.1.0"
},
"devDependencies": {
"@angular-eslint/test-utils": "18.0.1"
"@angular-eslint/test-utils": "18.1.0"
},
"peerDependencies": {
"@typescript-eslint/utils": "^7.11.0 || ^8.0.0-alpha.37",
Expand Down
22 changes: 22 additions & 0 deletions packages/schematics/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
## 18.1.0 (2024-07-01)

### 🩹 Fixes

- update dependency eslint to v9.4.0

- update dependency eslint to v9.5.0

- update dependency eslint to v9.6.0

- update typescript-eslint packages to v8.0.0-alpha.37

- update typescript-eslint packages to v8.0.0-alpha.38

### ❤️ Thank You

- Christian Svensson
- Daniel Kimmich
- Dave
- Martijn van der Meij
- Maximilian Main

## 18.0.1 (2024-05-30)

This was a version bump only for schematics to align it with other projects, there were no code changes.
Expand Down
6 changes: 3 additions & 3 deletions packages/schematics/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@angular-eslint/schematics",
"version": "18.0.1",
"version": "18.1.0",
"description": "Angular Schematics for angular-eslint",
"license": "MIT",
"main": "dist/index.js",
Expand Down Expand Up @@ -36,8 +36,8 @@
"save": "devDependencies"
},
"dependencies": {
"@angular-eslint/eslint-plugin": "18.0.1",
"@angular-eslint/eslint-plugin-template": "18.0.1",
"@angular-eslint/eslint-plugin": "18.1.0",
"@angular-eslint/eslint-plugin-template": "18.1.0",
"@nx/devkit": "^19.0.6",
"ignore": "5.3.1",
"nx": "^19.0.6",
Expand Down
4 changes: 4 additions & 0 deletions packages/template-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 18.1.0 (2024-07-01)

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

## 18.0.1 (2024-05-30)

This was a version bump only for template-parser to align it with other projects, there were no code changes.
Expand Down
4 changes: 2 additions & 2 deletions packages/template-parser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@angular-eslint/template-parser",
"version": "18.0.1",
"version": "18.1.0",
"description": "Angular Template parser for ESLint",
"license": "MIT",
"main": "dist/index.js",
Expand All @@ -18,7 +18,7 @@
"LICENSE"
],
"dependencies": {
"@angular-eslint/bundled-angular-compiler": "18.0.1",
"@angular-eslint/bundled-angular-compiler": "18.1.0",
"eslint-scope": "^8.0.0"
},
"peerDependencies": {
Expand Down
16 changes: 16 additions & 0 deletions packages/test-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## 18.1.0 (2024-07-01)

### 🩹 Fixes

- update typescript-eslint packages to v8.0.0-alpha.37

- **test-utils:** use configured RuleTester.afterAll over global

### ❤️ Thank You

- Christian Svensson
- Daniel Kimmich
- Dave
- Martijn van der Meij
- Maximilian Main

## 18.0.1 (2024-05-30)

### 🩹 Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/test-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@angular-eslint/test-utils",
"version": "18.0.1",
"version": "18.1.0",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
14 changes: 14 additions & 0 deletions packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## 18.1.0 (2024-07-01)

### 🩹 Fixes

- update typescript-eslint packages to v8.0.0-alpha.37

### ❤️ Thank You

- Christian Svensson
- Daniel Kimmich
- Dave
- Martijn van der Meij
- Maximilian Main

## 18.0.1 (2024-05-30)

### 🩹 Fixes
Expand Down
4 changes: 2 additions & 2 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@angular-eslint/utils",
"version": "18.0.1",
"version": "18.1.0",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -22,7 +22,7 @@
"typescript": "*"
},
"dependencies": {
"@angular-eslint/bundled-angular-compiler": "18.0.1"
"@angular-eslint/bundled-angular-compiler": "18.1.0"
},
"gitHead": "e2006e5e9c99e5a943d1a999e0efa5247d29ec24"
}

0 comments on commit 796e657

Please sign in to comment.