Skip to content

Commit 35cf3d2

Browse files
chore(release): publish 7.18.0
1 parent 46a5709 commit 35cf3d2

34 files changed

+279
-121
lines changed

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 7.18.0 (2024-07-29)
2+
3+
4+
### 🚀 Features
5+
6+
- **types:** update ECMA versions ([#9634](https://github.com/typescript-eslint/typescript-eslint/pull/9634))
7+
8+
### 🩹 Fixes
9+
10+
- **eslint-plugin:** [no-unnecessary-type-assertion] prevent runtime error when asserting a variable declared in default TS lib ([#9660](https://github.com/typescript-eslint/typescript-eslint/pull/9660))
11+
- **eslint-plugin:** [unbound-method] report on destructuring in function parameters ([#8952](https://github.com/typescript-eslint/typescript-eslint/pull/8952))
12+
- **eslint-plugin:** [no-duplicate-type-constituents] shouldn't report on error types ([#9600](https://github.com/typescript-eslint/typescript-eslint/pull/9600))
13+
- **eslint-plugin:** [strict-boolean-expressions] support branded booleans ([#9297](https://github.com/typescript-eslint/typescript-eslint/pull/9297))
14+
15+
### ❤️ Thank You
16+
17+
- auvred @auvred
18+
- Oliver Salzburg
19+
- Vinccool96
20+
- Yukihiro Hasegawa @y-hsgw
21+
22+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
23+
124
## 7.17.0 (2024-07-22)
225

326

packages/ast-spec/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 7.18.0 (2024-07-29)
2+
3+
This was a version bump only for ast-spec to align it with other projects, there were no code changes.
4+
5+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
6+
17
## 7.17.0 (2024-07-22)
28

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

packages/ast-spec/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/ast-spec",
3-
"version": "7.17.0",
3+
"version": "7.18.0",
44
"description": "Complete specification for the TypeScript-ESTree AST",
55
"private": true,
66
"keywords": [

packages/eslint-plugin-internal/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 7.18.0 (2024-07-29)
2+
3+
This was a version bump only for eslint-plugin-internal to align it with other projects, there were no code changes.
4+
5+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
6+
17
## 7.17.0 (2024-07-22)
28

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

packages/eslint-plugin-internal/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/eslint-plugin-internal",
3-
"version": "7.17.0",
3+
"version": "7.18.0",
44
"private": true,
55
"main": "dist/index.js",
66
"types": "index.d.ts",
@@ -15,10 +15,10 @@
1515
},
1616
"dependencies": {
1717
"@prettier/sync": "^0.5.1",
18-
"@typescript-eslint/rule-tester": "7.17.0",
19-
"@typescript-eslint/scope-manager": "7.17.0",
20-
"@typescript-eslint/type-utils": "7.17.0",
21-
"@typescript-eslint/utils": "7.17.0",
18+
"@typescript-eslint/rule-tester": "7.18.0",
19+
"@typescript-eslint/scope-manager": "7.18.0",
20+
"@typescript-eslint/type-utils": "7.18.0",
21+
"@typescript-eslint/utils": "7.18.0",
2222
"prettier": "^3.2.5"
2323
},
2424
"devDependencies": {

packages/eslint-plugin/CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 7.18.0 (2024-07-29)
2+
3+
4+
### 🩹 Fixes
5+
6+
- **eslint-plugin:** [no-unnecessary-type-assertion] prevent runtime error when asserting a variable declared in default TS lib
7+
8+
- **eslint-plugin:** [unbound-method] report on destructuring in function parameters
9+
10+
- **eslint-plugin:** [no-duplicate-type-constituents] shouldn't report on error types
11+
12+
- **eslint-plugin:** [strict-boolean-expressions] support branded booleans
13+
14+
15+
### ❤️ Thank You
16+
17+
- auvred
18+
- Oliver Salzburg
19+
- Vinccool96
20+
- Yukihiro Hasegawa
21+
22+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
23+
124
## 7.17.0 (2024-07-22)
225

326

packages/eslint-plugin/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/eslint-plugin",
3-
"version": "7.17.0",
3+
"version": "7.18.0",
44
"description": "TypeScript plugin for ESLint",
55
"files": [
66
"dist",
@@ -60,10 +60,10 @@
6060
},
6161
"dependencies": {
6262
"@eslint-community/regexpp": "^4.10.0",
63-
"@typescript-eslint/scope-manager": "7.17.0",
64-
"@typescript-eslint/type-utils": "7.17.0",
65-
"@typescript-eslint/utils": "7.17.0",
66-
"@typescript-eslint/visitor-keys": "7.17.0",
63+
"@typescript-eslint/scope-manager": "7.18.0",
64+
"@typescript-eslint/type-utils": "7.18.0",
65+
"@typescript-eslint/utils": "7.18.0",
66+
"@typescript-eslint/visitor-keys": "7.18.0",
6767
"graphemer": "^1.4.0",
6868
"ignore": "^5.3.1",
6969
"natural-compare": "^1.4.0",
@@ -74,8 +74,8 @@
7474
"@types/marked": "^5.0.2",
7575
"@types/mdast": "^4.0.3",
7676
"@types/natural-compare": "*",
77-
"@typescript-eslint/rule-schema-to-typescript-types": "7.17.0",
78-
"@typescript-eslint/rule-tester": "7.17.0",
77+
"@typescript-eslint/rule-schema-to-typescript-types": "7.18.0",
78+
"@typescript-eslint/rule-tester": "7.18.0",
7979
"ajv": "^6.12.6",
8080
"cross-env": "^7.0.3",
8181
"cross-fetch": "*",

packages/integration-tests/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 7.18.0 (2024-07-29)
2+
3+
This was a version bump only for integration-tests to align it with other projects, there were no code changes.
4+
5+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
6+
17
## 7.17.0 (2024-07-22)
28

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

packages/integration-tests/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/integration-tests",
3-
"version": "7.17.0",
3+
"version": "7.18.0",
44
"private": true,
55
"scripts": {
66
"format": "prettier --write \"./**/*.{ts,mts,cts,tsx,js,mjs,cjs,jsx,json,md,css}\" --ignore-path ../../.prettierignore",

packages/parser/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 7.18.0 (2024-07-29)
2+
3+
This was a version bump only for parser to align it with other projects, there were no code changes.
4+
5+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
6+
17
## 7.17.0 (2024-07-22)
28

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

packages/parser/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/parser",
3-
"version": "7.17.0",
3+
"version": "7.18.0",
44
"description": "An ESLint custom parser which leverages TypeScript ESTree",
55
"files": [
66
"dist",
@@ -52,10 +52,10 @@
5252
"eslint": "^8.56.0"
5353
},
5454
"dependencies": {
55-
"@typescript-eslint/scope-manager": "7.17.0",
56-
"@typescript-eslint/types": "7.17.0",
57-
"@typescript-eslint/typescript-estree": "7.17.0",
58-
"@typescript-eslint/visitor-keys": "7.17.0",
55+
"@typescript-eslint/scope-manager": "7.18.0",
56+
"@typescript-eslint/types": "7.18.0",
57+
"@typescript-eslint/typescript-estree": "7.18.0",
58+
"@typescript-eslint/visitor-keys": "7.18.0",
5959
"debug": "^4.3.4"
6060
},
6161
"devDependencies": {

packages/rule-schema-to-typescript-types/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 7.18.0 (2024-07-29)
2+
3+
This was a version bump only for rule-schema-to-typescript-types to align it with other projects, there were no code changes.
4+
5+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
6+
17
## 7.17.0 (2024-07-22)
28

39
This was a version bump only for rule-schema-to-typescript-types to align it with other projects, there were no code changes.

packages/rule-schema-to-typescript-types/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/rule-schema-to-typescript-types",
3-
"version": "7.17.0",
3+
"version": "7.18.0",
44
"private": true,
55
"type": "commonjs",
66
"exports": {
@@ -34,8 +34,8 @@
3434
"typecheck": "tsc --noEmit"
3535
},
3636
"dependencies": {
37-
"@typescript-eslint/type-utils": "7.17.0",
38-
"@typescript-eslint/utils": "7.17.0",
37+
"@typescript-eslint/type-utils": "7.18.0",
38+
"@typescript-eslint/utils": "7.18.0",
3939
"natural-compare": "^1.4.0",
4040
"prettier": "^3.2.5"
4141
},

packages/rule-tester/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 7.18.0 (2024-07-29)
2+
3+
This was a version bump only for rule-tester to align it with other projects, there were no code changes.
4+
5+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
6+
17
## 7.17.0 (2024-07-22)
28

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

packages/rule-tester/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/rule-tester",
3-
"version": "7.17.0",
3+
"version": "7.18.0",
44
"description": "Tooling to test ESLint rules",
55
"files": [
66
"dist",
@@ -48,8 +48,8 @@
4848
},
4949
"//": "NOTE - AJV is out-of-date, but it's intentionally synced with ESLint - https://github.com/eslint/eslint/blob/ad9dd6a933fd098a0d99c6a9aa059850535c23ee/package.json#L70",
5050
"dependencies": {
51-
"@typescript-eslint/typescript-estree": "7.17.0",
52-
"@typescript-eslint/utils": "7.17.0",
51+
"@typescript-eslint/typescript-estree": "7.18.0",
52+
"@typescript-eslint/utils": "7.18.0",
5353
"ajv": "^6.12.6",
5454
"json-stable-stringify-without-jsonify": "^1.0.1",
5555
"lodash.merge": "4.6.2",
@@ -63,7 +63,7 @@
6363
"@jest/types": "29.6.3",
6464
"@types/json-stable-stringify-without-jsonify": "^1.0.2",
6565
"@types/lodash.merge": "4.6.9",
66-
"@typescript-eslint/parser": "7.17.0",
66+
"@typescript-eslint/parser": "7.18.0",
6767
"chai": "^4.4.1",
6868
"eslint-visitor-keys": "^4.0.0",
6969
"espree": "^10.0.1",

packages/scope-manager/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 7.18.0 (2024-07-29)
2+
3+
This was a version bump only for scope-manager to align it with other projects, there were no code changes.
4+
5+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
6+
17
## 7.17.0 (2024-07-22)
28

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

packages/scope-manager/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/scope-manager",
3-
"version": "7.17.0",
3+
"version": "7.18.0",
44
"description": "TypeScript scope analyser for ESLint",
55
"files": [
66
"dist",
@@ -46,13 +46,13 @@
4646
"typecheck": "npx nx typecheck"
4747
},
4848
"dependencies": {
49-
"@typescript-eslint/types": "7.17.0",
50-
"@typescript-eslint/visitor-keys": "7.17.0"
49+
"@typescript-eslint/types": "7.18.0",
50+
"@typescript-eslint/visitor-keys": "7.18.0"
5151
},
5252
"devDependencies": {
5353
"@jest/types": "29.6.3",
5454
"@types/glob": "*",
55-
"@typescript-eslint/typescript-estree": "7.17.0",
55+
"@typescript-eslint/typescript-estree": "7.18.0",
5656
"glob": "*",
5757
"jest-specific-snapshot": "*",
5858
"make-dir": "*",

packages/type-utils/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## 7.18.0 (2024-07-29)
2+
3+
4+
### 🩹 Fixes
5+
6+
- **eslint-plugin:** [unbound-method] report on destructuring in function parameters
7+
8+
9+
### ❤️ Thank You
10+
11+
- auvred
12+
- Oliver Salzburg
13+
- Vinccool96
14+
- Yukihiro Hasegawa
15+
16+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
17+
118
## 7.17.0 (2024-07-22)
219

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

packages/type-utils/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/type-utils",
3-
"version": "7.17.0",
3+
"version": "7.18.0",
44
"description": "Type utilities for working with TypeScript + ESLint together",
55
"files": [
66
"dist",
@@ -46,14 +46,14 @@
4646
"typecheck": "tsc --noEmit"
4747
},
4848
"dependencies": {
49-
"@typescript-eslint/typescript-estree": "7.17.0",
50-
"@typescript-eslint/utils": "7.17.0",
49+
"@typescript-eslint/typescript-estree": "7.18.0",
50+
"@typescript-eslint/utils": "7.18.0",
5151
"debug": "^4.3.4",
5252
"ts-api-utils": "^1.3.0"
5353
},
5454
"devDependencies": {
5555
"@jest/types": "29.6.3",
56-
"@typescript-eslint/parser": "7.17.0",
56+
"@typescript-eslint/parser": "7.18.0",
5757
"ajv": "^6.12.6",
5858
"downlevel-dts": "*",
5959
"jest": "29.7.0",

packages/types/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## 7.18.0 (2024-07-29)
2+
3+
4+
### 🚀 Features
5+
6+
- **types:** update ECMA versions
7+
8+
9+
### ❤️ Thank You
10+
11+
- auvred
12+
- Oliver Salzburg
13+
- Vinccool96
14+
- Yukihiro Hasegawa
15+
16+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
17+
118
## 7.17.0 (2024-07-22)
219

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

packages/types/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/types",
3-
"version": "7.17.0",
3+
"version": "7.18.0",
44
"description": "Types for the TypeScript-ESTree AST spec",
55
"files": [
66
"dist",

packages/typescript-eslint/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 7.18.0 (2024-07-29)
2+
3+
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
4+
5+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
6+
17
## 7.17.0 (2024-07-22)
28

39

packages/typescript-eslint/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typescript-eslint",
3-
"version": "7.17.0",
3+
"version": "7.18.0",
44
"description": "Tooling which enables you to use TypeScript with ESLint",
55
"files": [
66
"dist",
@@ -55,9 +55,9 @@
5555
"eslint": "^8.56.0"
5656
},
5757
"dependencies": {
58-
"@typescript-eslint/eslint-plugin": "7.17.0",
59-
"@typescript-eslint/parser": "7.17.0",
60-
"@typescript-eslint/utils": "7.17.0"
58+
"@typescript-eslint/eslint-plugin": "7.18.0",
59+
"@typescript-eslint/parser": "7.18.0",
60+
"@typescript-eslint/utils": "7.18.0"
6161
},
6262
"devDependencies": {
6363
"@jest/types": "29.6.3",

0 commit comments

Comments
 (0)