Skip to content

Commit 936f350

Browse files
chore(release): publish 8.33.1
1 parent c14bcac commit 936f350

File tree

30 files changed

+206
-96
lines changed

30 files changed

+206
-96
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 8.33.1 (2025-06-02)
2+
3+
### 🩹 Fixes
4+
5+
- exclude docs/ directory from eslint-plugin package ([#11251](https://github.com/typescript-eslint/typescript-eslint/pull/11251))
6+
- **project-service:** add missing `typescript` peer dependency ([#11265](https://github.com/typescript-eslint/typescript-eslint/pull/11265))
7+
8+
### ❤️ Thank You
9+
10+
- JounQin
11+
- roottool
12+
13+
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.
14+
115
## 8.33.0 (2025-05-26)
216

317
### 🚀 Features

packages/ast-spec/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 8.33.1 (2025-06-02)
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
## 8.33.0 (2025-05-26)
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

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": "8.33.0",
3+
"version": "8.33.1",
44
"description": "Complete specification for the TypeScript-ESTree AST",
55
"private": true,
66
"keywords": [

packages/eslint-plugin/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 8.33.1 (2025-06-02)
2+
3+
### 🩹 Fixes
4+
5+
- exclude docs/ directory from eslint-plugin package ([#11251](https://github.com/typescript-eslint/typescript-eslint/pull/11251))
6+
7+
### ❤️ Thank You
8+
9+
- roottool
10+
11+
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.
12+
113
## 8.33.0 (2025-05-26)
214

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

packages/eslint-plugin/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/eslint-plugin",
3-
"version": "8.33.0",
3+
"version": "8.33.1",
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": "8.33.0",
64-
"@typescript-eslint/type-utils": "8.33.0",
65-
"@typescript-eslint/utils": "8.33.0",
66-
"@typescript-eslint/visitor-keys": "8.33.0",
63+
"@typescript-eslint/scope-manager": "8.33.1",
64+
"@typescript-eslint/type-utils": "8.33.1",
65+
"@typescript-eslint/utils": "8.33.1",
66+
"@typescript-eslint/visitor-keys": "8.33.1",
6767
"graphemer": "^1.4.0",
6868
"ignore": "^7.0.0",
6969
"natural-compare": "^1.4.0",
@@ -72,8 +72,8 @@
7272
"devDependencies": {
7373
"@types/mdast": "^4.0.3",
7474
"@types/natural-compare": "*",
75-
"@typescript-eslint/rule-schema-to-typescript-types": "8.33.0",
76-
"@typescript-eslint/rule-tester": "8.33.0",
75+
"@typescript-eslint/rule-schema-to-typescript-types": "8.33.1",
76+
"@typescript-eslint/rule-tester": "8.33.1",
7777
"@vitest/coverage-v8": "^3.1.3",
7878
"ajv": "^6.12.6",
7979
"cross-fetch": "*",
@@ -93,7 +93,7 @@
9393
"vitest": "^3.1.3"
9494
},
9595
"peerDependencies": {
96-
"@typescript-eslint/parser": "^8.33.0",
96+
"@typescript-eslint/parser": "^8.33.1",
9797
"eslint": "^8.57.0 || ^9.0.0",
9898
"typescript": ">=4.8.4 <5.9.0"
9999
},

packages/parser/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 8.33.1 (2025-06-02)
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
## 8.33.0 (2025-05-26)
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

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": "8.33.0",
3+
"version": "8.33.1",
44
"description": "An ESLint custom parser which leverages TypeScript ESTree",
55
"files": [
66
"dist",
@@ -52,10 +52,10 @@
5252
"typescript": ">=4.8.4 <5.9.0"
5353
},
5454
"dependencies": {
55-
"@typescript-eslint/scope-manager": "8.33.0",
56-
"@typescript-eslint/types": "8.33.0",
57-
"@typescript-eslint/typescript-estree": "8.33.0",
58-
"@typescript-eslint/visitor-keys": "8.33.0",
55+
"@typescript-eslint/scope-manager": "8.33.1",
56+
"@typescript-eslint/types": "8.33.1",
57+
"@typescript-eslint/typescript-estree": "8.33.1",
58+
"@typescript-eslint/visitor-keys": "8.33.1",
5959
"debug": "^4.3.4"
6060
},
6161
"devDependencies": {

packages/project-service/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 8.33.1 (2025-06-02)
2+
3+
### 🩹 Fixes
4+
5+
- **project-service:** add missing `typescript` peer dependency ([#11265](https://github.com/typescript-eslint/typescript-eslint/pull/11265))
6+
7+
### ❤️ Thank You
8+
9+
- JounQin
10+
11+
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.
12+
113
## 8.33.0 (2025-05-26)
214

315
### 🚀 Features

packages/project-service/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/project-service",
3-
"version": "8.33.0",
3+
"version": "8.33.1",
44
"description": "Standalone TypeScript project service wrapper for linting.",
55
"files": [
66
"dist",
@@ -49,8 +49,8 @@
4949
"typescript": ">=4.8.4 <5.9.0"
5050
},
5151
"dependencies": {
52-
"@typescript-eslint/tsconfig-utils": "^8.33.0",
53-
"@typescript-eslint/types": "^8.33.0",
52+
"@typescript-eslint/tsconfig-utils": "^8.33.1",
53+
"@typescript-eslint/types": "^8.33.1",
5454
"debug": "^4.3.4"
5555
},
5656
"funding": {

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+
## 8.33.1 (2025-06-02)
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
## 8.33.0 (2025-05-26)
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

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": "8.33.0",
3+
"version": "8.33.1",
44
"private": true,
55
"type": "commonjs",
66
"exports": {
@@ -33,8 +33,8 @@
3333
"typecheck": "yarn run -BT nx typecheck"
3434
},
3535
"dependencies": {
36-
"@typescript-eslint/type-utils": "8.33.0",
37-
"@typescript-eslint/utils": "8.33.0",
36+
"@typescript-eslint/type-utils": "8.33.1",
37+
"@typescript-eslint/utils": "8.33.1",
3838
"natural-compare": "^1.4.0",
3939
"prettier": "^3.2.5"
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+
## 8.33.1 (2025-06-02)
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
## 8.33.0 (2025-05-26)
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

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": "8.33.0",
3+
"version": "8.33.1",
44
"description": "Tooling to test ESLint rules",
55
"files": [
66
"dist",
@@ -45,9 +45,9 @@
4545
},
4646
"//": "NOTE - AJV is out-of-date, but it's intentionally synced with ESLint - https://github.com/eslint/eslint/blob/ad9dd6a933fd098a0d99c6a9aa059850535c23ee/package.json#L70",
4747
"dependencies": {
48-
"@typescript-eslint/parser": "8.33.0",
49-
"@typescript-eslint/typescript-estree": "8.33.0",
50-
"@typescript-eslint/utils": "8.33.0",
48+
"@typescript-eslint/parser": "8.33.1",
49+
"@typescript-eslint/typescript-estree": "8.33.1",
50+
"@typescript-eslint/utils": "8.33.1",
5151
"ajv": "^6.12.6",
5252
"json-stable-stringify-without-jsonify": "^1.0.1",
5353
"lodash.merge": "4.6.2",

packages/scope-manager/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 8.33.1 (2025-06-02)
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
## 8.33.0 (2025-05-26)
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

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": "8.33.0",
3+
"version": "8.33.1",
44
"description": "TypeScript scope analyser for ESLint",
55
"files": [
66
"dist",
@@ -48,11 +48,11 @@
4848
"typecheck": "yarn run -BT nx typecheck"
4949
},
5050
"dependencies": {
51-
"@typescript-eslint/types": "8.33.0",
52-
"@typescript-eslint/visitor-keys": "8.33.0"
51+
"@typescript-eslint/types": "8.33.1",
52+
"@typescript-eslint/visitor-keys": "8.33.1"
5353
},
5454
"devDependencies": {
55-
"@typescript-eslint/typescript-estree": "8.33.0",
55+
"@typescript-eslint/typescript-estree": "8.33.1",
5656
"@vitest/coverage-v8": "^3.1.3",
5757
"@vitest/pretty-format": "^3.1.3",
5858
"glob": "*",

packages/tsconfig-utils/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 8.33.1 (2025-06-02)
2+
3+
This was a version bump only for tsconfig-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
## 8.33.0 (2025-05-26)
28

39
### 🚀 Features

packages/tsconfig-utils/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/tsconfig-utils",
3-
"version": "8.33.0",
3+
"version": "8.33.1",
44
"description": "Utilities for collecting TSConfigs for linting scenarios.",
55
"files": [
66
"dist",

packages/type-utils/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 8.33.1 (2025-06-02)
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
## 8.33.0 (2025-05-26)
28

39
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

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": "8.33.0",
3+
"version": "8.33.1",
44
"description": "Type utilities for working with TypeScript + ESLint together",
55
"files": [
66
"dist",
@@ -45,8 +45,8 @@
4545
"typecheck": "yarn run -BT nx typecheck"
4646
},
4747
"dependencies": {
48-
"@typescript-eslint/typescript-estree": "8.33.0",
49-
"@typescript-eslint/utils": "8.33.0",
48+
"@typescript-eslint/typescript-estree": "8.33.1",
49+
"@typescript-eslint/utils": "8.33.1",
5050
"debug": "^4.3.4",
5151
"ts-api-utils": "^2.1.0"
5252
},
@@ -55,7 +55,7 @@
5555
"typescript": ">=4.8.4 <5.9.0"
5656
},
5757
"devDependencies": {
58-
"@typescript-eslint/parser": "8.33.0",
58+
"@typescript-eslint/parser": "8.33.1",
5959
"@vitest/coverage-v8": "^3.1.3",
6060
"ajv": "^6.12.6",
6161
"eslint": "*",

packages/types/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 8.33.1 (2025-06-02)
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
## 8.33.0 (2025-05-26)
28

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

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": "8.33.0",
3+
"version": "8.33.1",
44
"description": "Types for the TypeScript-ESTree AST spec",
55
"files": [
66
"dist",

packages/typescript-eslint/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 8.33.1 (2025-06-02)
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
## 8.33.0 (2025-05-26)
28

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

packages/typescript-eslint/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",
3-
"version": "8.33.0",
3+
"version": "8.33.1",
44
"description": "Tooling which enables you to use TypeScript with ESLint",
55
"files": [
66
"dist",
@@ -51,9 +51,9 @@
5151
"typecheck": "yarn run -BT nx typecheck"
5252
},
5353
"dependencies": {
54-
"@typescript-eslint/eslint-plugin": "8.33.0",
55-
"@typescript-eslint/parser": "8.33.0",
56-
"@typescript-eslint/utils": "8.33.0"
54+
"@typescript-eslint/eslint-plugin": "8.33.1",
55+
"@typescript-eslint/parser": "8.33.1",
56+
"@typescript-eslint/utils": "8.33.1"
5757
},
5858
"peerDependencies": {
5959
"eslint": "^8.57.0 || ^9.0.0",

packages/typescript-estree/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 8.33.1 (2025-06-02)
2+
3+
This was a version bump only for typescript-estree 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
## 8.33.0 (2025-05-26)
28

39
### 🚀 Features

packages/typescript-estree/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/typescript-estree",
3-
"version": "8.33.0",
3+
"version": "8.33.1",
44
"description": "A parser that converts TypeScript source code into an ESTree compatible form",
55
"files": [
66
"dist",
@@ -53,10 +53,10 @@
5353
"typecheck": "yarn run -BT nx typecheck"
5454
},
5555
"dependencies": {
56-
"@typescript-eslint/project-service": "8.33.0",
57-
"@typescript-eslint/tsconfig-utils": "8.33.0",
58-
"@typescript-eslint/types": "8.33.0",
59-
"@typescript-eslint/visitor-keys": "8.33.0",
56+
"@typescript-eslint/project-service": "8.33.1",
57+
"@typescript-eslint/tsconfig-utils": "8.33.1",
58+
"@typescript-eslint/types": "8.33.1",
59+
"@typescript-eslint/visitor-keys": "8.33.1",
6060
"debug": "^4.3.4",
6161
"fast-glob": "^3.3.2",
6262
"is-glob": "^4.0.3",

0 commit comments

Comments
 (0)