Skip to content

Commit 4bc6944

Browse files
chore(release): publish 7.1.0
1 parent c8ba7e7 commit 4bc6944

File tree

36 files changed

+305
-120
lines changed

36 files changed

+305
-120
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
## 7.1.0 (2024-02-26)
2+
3+
4+
### 🚀 Features
5+
6+
- **eslint-plugin:** add *-type-checked-only configs ([#8367](https://github.com/typescript-eslint/typescript-eslint/pull/8367))
7+
- **eslint-plugin:** [naming-convention] support the auto-accessor syntax ([#8084](https://github.com/typescript-eslint/typescript-eslint/pull/8084))
8+
- **eslint-plugin:** [consistent-return] add new rule ([#8289](https://github.com/typescript-eslint/typescript-eslint/pull/8289))
9+
- **typescript-estree:** add debug logs for useProgramFromProjectService ([#8426](https://github.com/typescript-eslint/typescript-eslint/pull/8426))
10+
11+
### 🩹 Fixes
12+
13+
- **eslint-plugin:** [prefer-optional-chan] allow typeof for avoiding reference error ([#8472](https://github.com/typescript-eslint/typescript-eslint/pull/8472))
14+
- **eslint-plugin:** [no-misused-promises] improve check union types ([#8534](https://github.com/typescript-eslint/typescript-eslint/pull/8534))
15+
- **eslint-plugin:** [no-use-before-define] fix false positive type reference in as, satisfies ([#8474](https://github.com/typescript-eslint/typescript-eslint/pull/8474))
16+
- **typescript-estree:** use simpler absolutify behavior for project service client file paths ([#8520](https://github.com/typescript-eslint/typescript-eslint/pull/8520))
17+
18+
### ❤️ Thank You
19+
20+
- Arka Pratim Chaudhuri @arka1002
21+
- Josh Goldberg ✨
22+
- YeonJuan @yeonjuan
23+
24+
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.
25+
126
## 7.0.2 (2024-02-19)
227

328

packages/ast-spec/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 7.1.0 (2024-02-26)
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.0.2 (2024-02-19)
28

39

packages/ast-spec/package.json

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

packages/eslint-plugin-internal/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 7.1.0 (2024-02-26)
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.0.2 (2024-02-19)
28

39

packages/eslint-plugin-internal/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/eslint-plugin-internal",
3-
"version": "7.0.2",
3+
"version": "7.1.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.0",
18-
"@typescript-eslint/rule-tester": "7.0.2",
19-
"@typescript-eslint/scope-manager": "7.0.2",
20-
"@typescript-eslint/type-utils": "7.0.2",
21-
"@typescript-eslint/utils": "7.0.2",
18+
"@typescript-eslint/rule-tester": "7.1.0",
19+
"@typescript-eslint/scope-manager": "7.1.0",
20+
"@typescript-eslint/type-utils": "7.1.0",
21+
"@typescript-eslint/utils": "7.1.0",
2222
"prettier": "^3.0.3"
2323
},
2424
"devDependencies": {

packages/eslint-plugin/CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
## 7.1.0 (2024-02-26)
2+
3+
4+
### 🚀 Features
5+
6+
- **eslint-plugin:** add *-type-checked-only configs
7+
8+
- **eslint-plugin:** [naming-convention] support the auto-accessor syntax
9+
10+
- **eslint-plugin:** [consistent-return] add new rule
11+
12+
13+
### 🩹 Fixes
14+
15+
- **eslint-plugin:** [prefer-optional-chan] allow typeof for avoiding reference error
16+
17+
- **eslint-plugin:** [no-misused-promises] improve check union types
18+
19+
- **eslint-plugin:** [no-use-before-define] fix false positive type reference in as, satisfies
20+
21+
22+
### ❤️ Thank You
23+
24+
- Arka Pratim Chaudhuri
25+
- Josh Goldberg ✨
26+
- YeonJuan
27+
28+
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.
29+
130
## 7.0.2 (2024-02-19)
231

332

packages/eslint-plugin/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/eslint-plugin",
3-
"version": "7.0.2",
3+
"version": "7.1.0",
44
"description": "TypeScript plugin for ESLint",
55
"files": [
66
"dist",
@@ -61,10 +61,10 @@
6161
},
6262
"dependencies": {
6363
"@eslint-community/regexpp": "^4.5.1",
64-
"@typescript-eslint/scope-manager": "7.0.2",
65-
"@typescript-eslint/type-utils": "7.0.2",
66-
"@typescript-eslint/utils": "7.0.2",
67-
"@typescript-eslint/visitor-keys": "7.0.2",
64+
"@typescript-eslint/scope-manager": "7.1.0",
65+
"@typescript-eslint/type-utils": "7.1.0",
66+
"@typescript-eslint/utils": "7.1.0",
67+
"@typescript-eslint/visitor-keys": "7.1.0",
6868
"debug": "^4.3.4",
6969
"graphemer": "^1.4.0",
7070
"ignore": "^5.2.4",
@@ -76,8 +76,8 @@
7676
"@types/debug": "*",
7777
"@types/marked": "*",
7878
"@types/natural-compare": "*",
79-
"@typescript-eslint/rule-schema-to-typescript-types": "7.0.2",
80-
"@typescript-eslint/rule-tester": "7.0.2",
79+
"@typescript-eslint/rule-schema-to-typescript-types": "7.1.0",
80+
"@typescript-eslint/rule-tester": "7.1.0",
8181
"ajv": "^6.12.6",
8282
"chalk": "^5.3.0",
8383
"cross-env": "^7.0.3",

packages/integration-tests/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 7.1.0 (2024-02-26)
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.0.2 (2024-02-19)
28

39

packages/integration-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/integration-tests",
3-
"version": "7.0.2",
3+
"version": "7.1.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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 7.1.0 (2024-02-26)
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.0.2 (2024-02-19)
28

39

packages/parser/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/parser",
3-
"version": "7.0.2",
3+
"version": "7.1.0",
44
"description": "An ESLint custom parser which leverages TypeScript ESTree",
55
"files": [
66
"dist",
@@ -51,10 +51,10 @@
5151
"eslint": "^8.56.0"
5252
},
5353
"dependencies": {
54-
"@typescript-eslint/scope-manager": "7.0.2",
55-
"@typescript-eslint/types": "7.0.2",
56-
"@typescript-eslint/typescript-estree": "7.0.2",
57-
"@typescript-eslint/visitor-keys": "7.0.2",
54+
"@typescript-eslint/scope-manager": "7.1.0",
55+
"@typescript-eslint/types": "7.1.0",
56+
"@typescript-eslint/typescript-estree": "7.1.0",
57+
"@typescript-eslint/visitor-keys": "7.1.0",
5858
"debug": "^4.3.4"
5959
},
6060
"devDependencies": {

packages/repo-tools/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 7.1.0 (2024-02-26)
2+
3+
4+
### 🚀 Features
5+
6+
- **eslint-plugin:** add *-type-checked-only configs
7+
8+
9+
### ❤️ Thank You
10+
11+
- Arka Pratim Chaudhuri
12+
- Josh Goldberg ✨
13+
- YeonJuan
14+
15+
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.
16+
117
## 7.0.2 (2024-02-19)
218

319

packages/repo-tools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/repo-tools",
3-
"version": "7.0.2",
3+
"version": "7.1.0",
44
"private": true,
55
"scripts": {
66
"//": "NOTE: intentionally no build step in this package",

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 7.1.0 (2024-02-26)
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.0.2 (2024-02-19)
28

39

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

Lines changed: 3 additions & 3 deletions
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.0.2",
3+
"version": "7.1.0",
44
"private": true,
55
"type": "commonjs",
66
"exports": {
@@ -33,8 +33,8 @@
3333
"typecheck": "tsc -p tsconfig.json --noEmit"
3434
},
3535
"dependencies": {
36-
"@typescript-eslint/type-utils": "7.0.2",
37-
"@typescript-eslint/utils": "7.0.2",
36+
"@typescript-eslint/type-utils": "7.1.0",
37+
"@typescript-eslint/utils": "7.1.0",
3838
"natural-compare": "^1.4.0",
3939
"prettier": "^3.0.3"
4040
},

packages/rule-tester/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 7.1.0 (2024-02-26)
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.0.2 (2024-02-19)
28

39

packages/rule-tester/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/rule-tester",
3-
"version": "7.0.2",
3+
"version": "7.1.0",
44
"description": "Tooling to test ESLint rules",
55
"files": [
66
"dist",
@@ -47,8 +47,8 @@
4747
},
4848
"//": "NOTE - AJV is out-of-date, but it's intentionally synced with ESLint - https://github.com/eslint/eslint/blob/ad9dd6a933fd098a0d99c6a9aa059850535c23ee/package.json#L70",
4949
"dependencies": {
50-
"@typescript-eslint/typescript-estree": "7.0.2",
51-
"@typescript-eslint/utils": "7.0.2",
50+
"@typescript-eslint/typescript-estree": "7.1.0",
51+
"@typescript-eslint/utils": "7.1.0",
5252
"ajv": "^6.10.0",
5353
"lodash.merge": "4.6.2",
5454
"semver": "^7.5.4"
@@ -59,7 +59,7 @@
5959
},
6060
"devDependencies": {
6161
"@types/lodash.merge": "4.6.9",
62-
"@typescript-eslint/parser": "7.0.2",
62+
"@typescript-eslint/parser": "7.1.0",
6363
"chai": "^4.3.7",
6464
"mocha": "^10.0.0",
6565
"sinon": "^16.0.0",

packages/scope-manager/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 7.1.0 (2024-02-26)
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.0.2 (2024-02-19)
28

39

packages/scope-manager/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/scope-manager",
3-
"version": "7.0.2",
3+
"version": "7.1.0",
44
"description": "TypeScript scope analyser for ESLint",
55
"files": [
66
"dist",
@@ -45,12 +45,12 @@
4545
"typecheck": "npx nx typecheck"
4646
},
4747
"dependencies": {
48-
"@typescript-eslint/types": "7.0.2",
49-
"@typescript-eslint/visitor-keys": "7.0.2"
48+
"@typescript-eslint/types": "7.1.0",
49+
"@typescript-eslint/visitor-keys": "7.1.0"
5050
},
5151
"devDependencies": {
5252
"@types/glob": "*",
53-
"@typescript-eslint/typescript-estree": "7.0.2",
53+
"@typescript-eslint/typescript-estree": "7.1.0",
5454
"glob": "*",
5555
"jest-specific-snapshot": "*",
5656
"make-dir": "*",

packages/type-utils/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 7.1.0 (2024-02-26)
2+
3+
This was a version bump only for type-utils 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.0.2 (2024-02-19)
28

39

packages/type-utils/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/type-utils",
3-
"version": "7.0.2",
3+
"version": "7.1.0",
44
"description": "Type utilities for working with TypeScript + ESLint together",
55
"files": [
66
"dist",
@@ -45,13 +45,13 @@
4545
"typecheck": "tsc -p tsconfig.json --noEmit"
4646
},
4747
"dependencies": {
48-
"@typescript-eslint/typescript-estree": "7.0.2",
49-
"@typescript-eslint/utils": "7.0.2",
48+
"@typescript-eslint/typescript-estree": "7.1.0",
49+
"@typescript-eslint/utils": "7.1.0",
5050
"debug": "^4.3.4",
5151
"ts-api-utils": "^1.0.1"
5252
},
5353
"devDependencies": {
54-
"@typescript-eslint/parser": "7.0.2",
54+
"@typescript-eslint/parser": "7.1.0",
5555
"ajv": "^6.10.0",
5656
"downlevel-dts": "*",
5757
"jest": "29.7.0",

packages/types/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 7.1.0 (2024-02-26)
2+
3+
This was a version bump only for 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.0.2 (2024-02-19)
28

39

packages/types/package.json

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

packages/typescript-eslint/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 7.1.0 (2024-02-26)
2+
3+
4+
### 🚀 Features
5+
6+
- **eslint-plugin:** add *-type-checked-only configs
7+
8+
9+
### ❤️ Thank You
10+
11+
- Arka Pratim Chaudhuri
12+
- Josh Goldberg ✨
13+
- YeonJuan
14+
15+
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.
16+
117
## 7.0.2 (2024-02-19)
218

319

0 commit comments

Comments
 (0)