diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a003701c2e..13ea817dbc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +## 7.0.2 (2024-02-19) + + +### 🩹 Fixes + +- fix tsconfig-less check errors, fix `@types/eslint` incompatibilities, add tests ([#8460](https://github.com/typescript-eslint/typescript-eslint/pull/8460)) +- **utils:** use mergeable interface for `settings` property ([#8485](https://github.com/typescript-eslint/typescript-eslint/pull/8485)) + +### ❤️ Thank You + +- Brad Zacher @bradzacher +- Gareth Jones @G-Rath + +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. + ## 7.0.1 (2024-02-12) diff --git a/packages/ast-spec/CHANGELOG.md b/packages/ast-spec/CHANGELOG.md index bb0e6bea87b..d6879c5a4ad 100644 --- a/packages/ast-spec/CHANGELOG.md +++ b/packages/ast-spec/CHANGELOG.md @@ -1,3 +1,18 @@ +## 7.0.2 (2024-02-19) + + +### 🩹 Fixes + +- fix tsconfig-less check errors, fix `@types/eslint` incompatibilities, add tests + + +### ❤️ Thank You + +- Brad Zacher +- Gareth Jones + +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. + ## 7.0.1 (2024-02-12) This was a version bump only for ast-spec to align it with other projects, there were no code changes. diff --git a/packages/ast-spec/package.json b/packages/ast-spec/package.json index d56e1573d19..195d61b0ecc 100644 --- a/packages/ast-spec/package.json +++ b/packages/ast-spec/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/ast-spec", - "version": "7.0.1", + "version": "7.0.2", "description": "Complete specification for the TypeScript-ESTree AST", "private": true, "keywords": [ diff --git a/packages/eslint-plugin-internal/CHANGELOG.md b/packages/eslint-plugin-internal/CHANGELOG.md index be7680f7cdd..958bcd2682c 100644 --- a/packages/eslint-plugin-internal/CHANGELOG.md +++ b/packages/eslint-plugin-internal/CHANGELOG.md @@ -1,3 +1,18 @@ +## 7.0.2 (2024-02-19) + + +### 🩹 Fixes + +- fix tsconfig-less check errors, fix `@types/eslint` incompatibilities, add tests + + +### ❤️ Thank You + +- Brad Zacher +- Gareth Jones + +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. + ## 7.0.1 (2024-02-12) This was a version bump only for eslint-plugin-internal to align it with other projects, there were no code changes. diff --git a/packages/eslint-plugin-internal/package.json b/packages/eslint-plugin-internal/package.json index 89378998382..c590b8b9b39 100644 --- a/packages/eslint-plugin-internal/package.json +++ b/packages/eslint-plugin-internal/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/eslint-plugin-internal", - "version": "7.0.1", + "version": "7.0.2", "private": true, "main": "dist/index.js", "types": "index.d.ts", @@ -15,10 +15,10 @@ }, "dependencies": { "@prettier/sync": "^0.5.0", - "@typescript-eslint/rule-tester": "7.0.1", - "@typescript-eslint/scope-manager": "7.0.1", - "@typescript-eslint/type-utils": "7.0.1", - "@typescript-eslint/utils": "7.0.1", + "@typescript-eslint/rule-tester": "7.0.2", + "@typescript-eslint/scope-manager": "7.0.2", + "@typescript-eslint/type-utils": "7.0.2", + "@typescript-eslint/utils": "7.0.2", "prettier": "^3.0.3" }, "devDependencies": { diff --git a/packages/eslint-plugin-tslint/CHANGELOG.md b/packages/eslint-plugin-tslint/CHANGELOG.md index 987dc41b086..02aa5478c4a 100644 --- a/packages/eslint-plugin-tslint/CHANGELOG.md +++ b/packages/eslint-plugin-tslint/CHANGELOG.md @@ -1,3 +1,18 @@ +## 7.0.2 (2024-02-19) + + +### 🩹 Fixes + +- fix tsconfig-less check errors, fix `@types/eslint` incompatibilities, add tests + + +### ❤️ Thank You + +- Brad Zacher +- Gareth Jones + +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. + ## 7.0.1 (2024-02-12) This was a version bump only for eslint-plugin-tslint to align it with other projects, there were no code changes. diff --git a/packages/eslint-plugin-tslint/package.json b/packages/eslint-plugin-tslint/package.json index 9136229a739..890850d4a77 100644 --- a/packages/eslint-plugin-tslint/package.json +++ b/packages/eslint-plugin-tslint/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/eslint-plugin-tslint", - "version": "7.0.1", + "version": "7.0.2", "main": "dist/index.js", "typings": "src/index.ts", "description": "ESLint plugin that wraps a TSLint configuration and lints the whole source using TSLint", @@ -46,7 +46,7 @@ "typecheck": "tsc -p tsconfig.json --noEmit" }, "dependencies": { - "@typescript-eslint/utils": "7.0.1" + "@typescript-eslint/utils": "7.0.2" }, "peerDependencies": { "eslint": "^8.56.0", @@ -55,7 +55,7 @@ }, "devDependencies": { "@types/lodash": "*", - "@typescript-eslint/parser": "7.0.1", + "@typescript-eslint/parser": "7.0.2", "jest": "29.7.0", "prettier": "^3.0.3", "rimraf": "*" diff --git a/packages/eslint-plugin/CHANGELOG.md b/packages/eslint-plugin/CHANGELOG.md index fd3bcc0935b..7916a49eb64 100644 --- a/packages/eslint-plugin/CHANGELOG.md +++ b/packages/eslint-plugin/CHANGELOG.md @@ -1,3 +1,18 @@ +## 7.0.2 (2024-02-19) + + +### 🩹 Fixes + +- fix tsconfig-less check errors, fix `@types/eslint` incompatibilities, add tests + + +### ❤️ Thank You + +- Brad Zacher +- Gareth Jones + +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. + ## 7.0.1 (2024-02-12) diff --git a/packages/eslint-plugin/package.json b/packages/eslint-plugin/package.json index 26042d875ea..4db945376db 100644 --- a/packages/eslint-plugin/package.json +++ b/packages/eslint-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/eslint-plugin", - "version": "7.0.1", + "version": "7.0.2", "description": "TypeScript plugin for ESLint", "files": [ "dist", @@ -61,10 +61,10 @@ }, "dependencies": { "@eslint-community/regexpp": "^4.5.1", - "@typescript-eslint/scope-manager": "7.0.1", - "@typescript-eslint/type-utils": "7.0.1", - "@typescript-eslint/utils": "7.0.1", - "@typescript-eslint/visitor-keys": "7.0.1", + "@typescript-eslint/scope-manager": "7.0.2", + "@typescript-eslint/type-utils": "7.0.2", + "@typescript-eslint/utils": "7.0.2", + "@typescript-eslint/visitor-keys": "7.0.2", "debug": "^4.3.4", "graphemer": "^1.4.0", "ignore": "^5.2.4", @@ -76,8 +76,8 @@ "@types/debug": "*", "@types/marked": "*", "@types/natural-compare": "*", - "@typescript-eslint/rule-schema-to-typescript-types": "7.0.1", - "@typescript-eslint/rule-tester": "7.0.1", + "@typescript-eslint/rule-schema-to-typescript-types": "7.0.2", + "@typescript-eslint/rule-tester": "7.0.2", "ajv": "^6.12.6", "chalk": "^5.3.0", "cross-env": "^7.0.3", diff --git a/packages/integration-tests/CHANGELOG.md b/packages/integration-tests/CHANGELOG.md index eb4ef754617..d7eb9b1b7c7 100644 --- a/packages/integration-tests/CHANGELOG.md +++ b/packages/integration-tests/CHANGELOG.md @@ -1,3 +1,18 @@ +## 7.0.2 (2024-02-19) + + +### 🩹 Fixes + +- fix tsconfig-less check errors, fix `@types/eslint` incompatibilities, add tests + + +### ❤️ Thank You + +- Brad Zacher +- Gareth Jones + +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. + ## 7.0.1 (2024-02-12) This was a version bump only for integration-tests to align it with other projects, there were no code changes. diff --git a/packages/integration-tests/package.json b/packages/integration-tests/package.json index e9798dd5033..3edaa27ea39 100644 --- a/packages/integration-tests/package.json +++ b/packages/integration-tests/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/integration-tests", - "version": "7.0.1", + "version": "7.0.2", "private": true, "scripts": { "format": "prettier --write \"./**/*.{ts,mts,cts,tsx,js,mjs,cjs,jsx,json,md,css}\" --ignore-path ../../.prettierignore", diff --git a/packages/parser/CHANGELOG.md b/packages/parser/CHANGELOG.md index 45685dd581f..cb9c008453f 100644 --- a/packages/parser/CHANGELOG.md +++ b/packages/parser/CHANGELOG.md @@ -1,3 +1,18 @@ +## 7.0.2 (2024-02-19) + + +### 🩹 Fixes + +- fix tsconfig-less check errors, fix `@types/eslint` incompatibilities, add tests + + +### ❤️ Thank You + +- Brad Zacher +- Gareth Jones + +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. + ## 7.0.1 (2024-02-12) This was a version bump only for parser to align it with other projects, there were no code changes. diff --git a/packages/parser/package.json b/packages/parser/package.json index 5015f8c6667..9fbf5bdddc0 100644 --- a/packages/parser/package.json +++ b/packages/parser/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/parser", - "version": "7.0.1", + "version": "7.0.2", "description": "An ESLint custom parser which leverages TypeScript ESTree", "files": [ "dist", @@ -51,10 +51,10 @@ "eslint": "^8.56.0" }, "dependencies": { - "@typescript-eslint/scope-manager": "7.0.1", - "@typescript-eslint/types": "7.0.1", - "@typescript-eslint/typescript-estree": "7.0.1", - "@typescript-eslint/visitor-keys": "7.0.1", + "@typescript-eslint/scope-manager": "7.0.2", + "@typescript-eslint/types": "7.0.2", + "@typescript-eslint/typescript-estree": "7.0.2", + "@typescript-eslint/visitor-keys": "7.0.2", "debug": "^4.3.4" }, "devDependencies": { diff --git a/packages/repo-tools/CHANGELOG.md b/packages/repo-tools/CHANGELOG.md index b8fae6579af..cc49bbc56fe 100644 --- a/packages/repo-tools/CHANGELOG.md +++ b/packages/repo-tools/CHANGELOG.md @@ -1,3 +1,18 @@ +## 7.0.2 (2024-02-19) + + +### 🩹 Fixes + +- fix tsconfig-less check errors, fix `@types/eslint` incompatibilities, add tests + + +### ❤️ Thank You + +- Brad Zacher +- Gareth Jones + +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. + ## 7.0.1 (2024-02-12) This was a version bump only for repo-tools to align it with other projects, there were no code changes. diff --git a/packages/repo-tools/package.json b/packages/repo-tools/package.json index 6126070161e..bf22667449a 100644 --- a/packages/repo-tools/package.json +++ b/packages/repo-tools/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/repo-tools", - "version": "7.0.1", + "version": "7.0.2", "private": true, "scripts": { "//": "NOTE: intentionally no build step in this package", diff --git a/packages/rule-schema-to-typescript-types/CHANGELOG.md b/packages/rule-schema-to-typescript-types/CHANGELOG.md index dd3ecacdec0..1e5940a0ada 100644 --- a/packages/rule-schema-to-typescript-types/CHANGELOG.md +++ b/packages/rule-schema-to-typescript-types/CHANGELOG.md @@ -1,3 +1,18 @@ +## 7.0.2 (2024-02-19) + + +### 🩹 Fixes + +- fix tsconfig-less check errors, fix `@types/eslint` incompatibilities, add tests + + +### ❤️ Thank You + +- Brad Zacher +- Gareth Jones + +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. + ## 7.0.1 (2024-02-12) This was a version bump only for rule-schema-to-typescript-types to align it with other projects, there were no code changes. diff --git a/packages/rule-schema-to-typescript-types/package.json b/packages/rule-schema-to-typescript-types/package.json index ae53d35b06b..ecafb892630 100644 --- a/packages/rule-schema-to-typescript-types/package.json +++ b/packages/rule-schema-to-typescript-types/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/rule-schema-to-typescript-types", - "version": "7.0.1", + "version": "7.0.2", "private": true, "type": "commonjs", "exports": { @@ -33,8 +33,8 @@ "typecheck": "tsc -p tsconfig.json --noEmit" }, "dependencies": { - "@typescript-eslint/type-utils": "7.0.1", - "@typescript-eslint/utils": "7.0.1", + "@typescript-eslint/type-utils": "7.0.2", + "@typescript-eslint/utils": "7.0.2", "natural-compare": "^1.4.0", "prettier": "^3.0.3" }, diff --git a/packages/rule-tester/CHANGELOG.md b/packages/rule-tester/CHANGELOG.md index 098d59ab125..af133b5e7ed 100644 --- a/packages/rule-tester/CHANGELOG.md +++ b/packages/rule-tester/CHANGELOG.md @@ -1,3 +1,18 @@ +## 7.0.2 (2024-02-19) + + +### 🩹 Fixes + +- fix tsconfig-less check errors, fix `@types/eslint` incompatibilities, add tests + + +### ❤️ Thank You + +- Brad Zacher +- Gareth Jones + +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. + ## 7.0.1 (2024-02-12) This was a version bump only for rule-tester to align it with other projects, there were no code changes. diff --git a/packages/rule-tester/package.json b/packages/rule-tester/package.json index 3316baa945b..94902301c19 100644 --- a/packages/rule-tester/package.json +++ b/packages/rule-tester/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/rule-tester", - "version": "7.0.1", + "version": "7.0.2", "description": "Tooling to test ESLint rules", "files": [ "dist", @@ -47,8 +47,8 @@ }, "//": "NOTE - AJV is out-of-date, but it's intentionally synced with ESLint - https://github.com/eslint/eslint/blob/ad9dd6a933fd098a0d99c6a9aa059850535c23ee/package.json#L70", "dependencies": { - "@typescript-eslint/typescript-estree": "7.0.1", - "@typescript-eslint/utils": "7.0.1", + "@typescript-eslint/typescript-estree": "7.0.2", + "@typescript-eslint/utils": "7.0.2", "ajv": "^6.10.0", "lodash.merge": "4.6.2", "semver": "^7.5.4" @@ -59,7 +59,7 @@ }, "devDependencies": { "@types/lodash.merge": "4.6.9", - "@typescript-eslint/parser": "7.0.1", + "@typescript-eslint/parser": "7.0.2", "chai": "^4.3.7", "mocha": "^10.0.0", "sinon": "^16.0.0", diff --git a/packages/scope-manager/CHANGELOG.md b/packages/scope-manager/CHANGELOG.md index a41ffa6502f..aa1e437f7f7 100644 --- a/packages/scope-manager/CHANGELOG.md +++ b/packages/scope-manager/CHANGELOG.md @@ -1,3 +1,18 @@ +## 7.0.2 (2024-02-19) + + +### 🩹 Fixes + +- fix tsconfig-less check errors, fix `@types/eslint` incompatibilities, add tests + + +### ❤️ Thank You + +- Brad Zacher +- Gareth Jones + +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. + ## 7.0.1 (2024-02-12) This was a version bump only for scope-manager to align it with other projects, there were no code changes. diff --git a/packages/scope-manager/package.json b/packages/scope-manager/package.json index 160b295c7c2..953b94afb48 100644 --- a/packages/scope-manager/package.json +++ b/packages/scope-manager/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/scope-manager", - "version": "7.0.1", + "version": "7.0.2", "description": "TypeScript scope analyser for ESLint", "files": [ "dist", @@ -45,12 +45,12 @@ "typecheck": "npx nx typecheck" }, "dependencies": { - "@typescript-eslint/types": "7.0.1", - "@typescript-eslint/visitor-keys": "7.0.1" + "@typescript-eslint/types": "7.0.2", + "@typescript-eslint/visitor-keys": "7.0.2" }, "devDependencies": { "@types/glob": "*", - "@typescript-eslint/typescript-estree": "7.0.1", + "@typescript-eslint/typescript-estree": "7.0.2", "glob": "*", "jest-specific-snapshot": "*", "make-dir": "*", diff --git a/packages/type-utils/CHANGELOG.md b/packages/type-utils/CHANGELOG.md index 2ead7983f3e..11db9b204f4 100644 --- a/packages/type-utils/CHANGELOG.md +++ b/packages/type-utils/CHANGELOG.md @@ -1,3 +1,18 @@ +## 7.0.2 (2024-02-19) + + +### 🩹 Fixes + +- fix tsconfig-less check errors, fix `@types/eslint` incompatibilities, add tests + + +### ❤️ Thank You + +- Brad Zacher +- Gareth Jones + +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. + ## 7.0.1 (2024-02-12) This was a version bump only for type-utils to align it with other projects, there were no code changes. diff --git a/packages/type-utils/package.json b/packages/type-utils/package.json index 9c78d642ce6..fd50dd38373 100644 --- a/packages/type-utils/package.json +++ b/packages/type-utils/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/type-utils", - "version": "7.0.1", + "version": "7.0.2", "description": "Type utilities for working with TypeScript + ESLint together", "files": [ "dist", @@ -45,13 +45,13 @@ "typecheck": "tsc -p tsconfig.json --noEmit" }, "dependencies": { - "@typescript-eslint/typescript-estree": "7.0.1", - "@typescript-eslint/utils": "7.0.1", + "@typescript-eslint/typescript-estree": "7.0.2", + "@typescript-eslint/utils": "7.0.2", "debug": "^4.3.4", "ts-api-utils": "^1.0.1" }, "devDependencies": { - "@typescript-eslint/parser": "7.0.1", + "@typescript-eslint/parser": "7.0.2", "ajv": "^6.10.0", "downlevel-dts": "*", "jest": "29.7.0", diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index cfefda33725..ab9728855a2 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/CHANGELOG.md @@ -1,3 +1,18 @@ +## 7.0.2 (2024-02-19) + + +### 🩹 Fixes + +- fix tsconfig-less check errors, fix `@types/eslint` incompatibilities, add tests + + +### ❤️ Thank You + +- Brad Zacher +- Gareth Jones + +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. + ## 7.0.1 (2024-02-12) This was a version bump only for types to align it with other projects, there were no code changes. diff --git a/packages/types/package.json b/packages/types/package.json index 79e027befcf..e7de9e9301e 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/types", - "version": "7.0.1", + "version": "7.0.2", "description": "Types for the TypeScript-ESTree AST spec", "files": [ "dist", diff --git a/packages/typescript-eslint/CHANGELOG.md b/packages/typescript-eslint/CHANGELOG.md index a2b611ea4c9..7e70f19981a 100644 --- a/packages/typescript-eslint/CHANGELOG.md +++ b/packages/typescript-eslint/CHANGELOG.md @@ -1,3 +1,18 @@ +## 7.0.2 (2024-02-19) + + +### 🩹 Fixes + +- fix tsconfig-less check errors, fix `@types/eslint` incompatibilities, add tests + + +### ❤️ Thank You + +- Brad Zacher +- Gareth Jones + +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. + ## 7.0.1 (2024-02-12) This was a version bump only for typescript-eslint to align it with other projects, there were no code changes. diff --git a/packages/typescript-eslint/package.json b/packages/typescript-eslint/package.json index e9796c2b819..614e697d989 100644 --- a/packages/typescript-eslint/package.json +++ b/packages/typescript-eslint/package.json @@ -1,6 +1,6 @@ { "name": "typescript-eslint", - "version": "7.0.1", + "version": "7.0.2", "description": "Tooling which enables you to use TypeScript with ESLint", "files": [ "dist", @@ -54,8 +54,8 @@ "eslint": "^8.56.0" }, "dependencies": { - "@typescript-eslint/eslint-plugin": "7.0.1", - "@typescript-eslint/parser": "7.0.1" + "@typescript-eslint/eslint-plugin": "7.0.2", + "@typescript-eslint/parser": "7.0.2" }, "devDependencies": { "downlevel-dts": "*", diff --git a/packages/typescript-estree/CHANGELOG.md b/packages/typescript-estree/CHANGELOG.md index 1cd6afb320a..db757e600ed 100644 --- a/packages/typescript-estree/CHANGELOG.md +++ b/packages/typescript-estree/CHANGELOG.md @@ -1,3 +1,18 @@ +## 7.0.2 (2024-02-19) + + +### 🩹 Fixes + +- fix tsconfig-less check errors, fix `@types/eslint` incompatibilities, add tests + + +### ❤️ Thank You + +- Brad Zacher +- Gareth Jones + +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. + ## 7.0.1 (2024-02-12) This was a version bump only for typescript-estree to align it with other projects, there were no code changes. diff --git a/packages/typescript-estree/package.json b/packages/typescript-estree/package.json index df75c17202c..e7fa4013083 100644 --- a/packages/typescript-estree/package.json +++ b/packages/typescript-estree/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/typescript-estree", - "version": "7.0.1", + "version": "7.0.2", "description": "A parser that converts TypeScript source code into an ESTree compatible form", "files": [ "dist", @@ -53,8 +53,8 @@ "typecheck": "tsc -p tsconfig.json --noEmit" }, "dependencies": { - "@typescript-eslint/types": "7.0.1", - "@typescript-eslint/visitor-keys": "7.0.1", + "@typescript-eslint/types": "7.0.2", + "@typescript-eslint/visitor-keys": "7.0.2", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index e07f747f030..0abbd4e9530 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,3 +1,20 @@ +## 7.0.2 (2024-02-19) + + +### 🩹 Fixes + +- fix tsconfig-less check errors, fix `@types/eslint` incompatibilities, add tests + +- **utils:** use mergeable interface for `settings` property + + +### ❤️ Thank You + +- Brad Zacher +- Gareth Jones + +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. + ## 7.0.1 (2024-02-12) This was a version bump only for utils to align it with other projects, there were no code changes. diff --git a/packages/utils/package.json b/packages/utils/package.json index 503eaf7e9a4..1941c0c099e 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/utils", - "version": "7.0.1", + "version": "7.0.2", "description": "Utilities for working with TypeScript + ESLint together", "files": [ "dist", @@ -69,16 +69,16 @@ "@eslint-community/eslint-utils": "^4.4.0", "@types/json-schema": "^7.0.12", "@types/semver": "^7.5.0", - "@typescript-eslint/scope-manager": "7.0.1", - "@typescript-eslint/types": "7.0.1", - "@typescript-eslint/typescript-estree": "7.0.1", + "@typescript-eslint/scope-manager": "7.0.2", + "@typescript-eslint/types": "7.0.2", + "@typescript-eslint/typescript-estree": "7.0.2", "semver": "^7.5.4" }, "peerDependencies": { "eslint": "^8.56.0" }, "devDependencies": { - "@typescript-eslint/parser": "7.0.1", + "@typescript-eslint/parser": "7.0.2", "downlevel-dts": "*", "jest": "29.7.0", "prettier": "^3.0.3", diff --git a/packages/visitor-keys/CHANGELOG.md b/packages/visitor-keys/CHANGELOG.md index ebb9c0b44bd..4dc1a4192bf 100644 --- a/packages/visitor-keys/CHANGELOG.md +++ b/packages/visitor-keys/CHANGELOG.md @@ -1,3 +1,18 @@ +## 7.0.2 (2024-02-19) + + +### 🩹 Fixes + +- fix tsconfig-less check errors, fix `@types/eslint` incompatibilities, add tests + + +### ❤️ Thank You + +- Brad Zacher +- Gareth Jones + +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. + ## 7.0.1 (2024-02-12) This was a version bump only for visitor-keys to align it with other projects, there were no code changes. diff --git a/packages/visitor-keys/package.json b/packages/visitor-keys/package.json index 91c2233dfcf..6e5878ba646 100644 --- a/packages/visitor-keys/package.json +++ b/packages/visitor-keys/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/visitor-keys", - "version": "7.0.1", + "version": "7.0.2", "description": "Visitor keys used to help traverse the TypeScript-ESTree AST", "files": [ "dist", @@ -46,7 +46,7 @@ "typecheck": "tsc -p tsconfig.json --noEmit" }, "dependencies": { - "@typescript-eslint/types": "7.0.1", + "@typescript-eslint/types": "7.0.2", "eslint-visitor-keys": "^3.4.1" }, "devDependencies": { diff --git a/packages/website-eslint/CHANGELOG.md b/packages/website-eslint/CHANGELOG.md index e962f20aaa0..f96c1462f82 100644 --- a/packages/website-eslint/CHANGELOG.md +++ b/packages/website-eslint/CHANGELOG.md @@ -1,3 +1,18 @@ +## 7.0.2 (2024-02-19) + + +### 🩹 Fixes + +- fix tsconfig-less check errors, fix `@types/eslint` incompatibilities, add tests + + +### ❤️ Thank You + +- Brad Zacher +- Gareth Jones + +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. + ## 7.0.1 (2024-02-12) This was a version bump only for website-eslint to align it with other projects, there were no code changes. diff --git a/packages/website-eslint/package.json b/packages/website-eslint/package.json index 53ee32f8a6f..bc6485a6200 100644 --- a/packages/website-eslint/package.json +++ b/packages/website-eslint/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/website-eslint", - "version": "7.0.1", + "version": "7.0.2", "private": true, "description": "ESLint which works in browsers.", "files": [ @@ -23,16 +23,16 @@ "typecheck": "tsc --noEmit" }, "dependencies": { - "@typescript-eslint/types": "7.0.1", - "@typescript-eslint/utils": "7.0.1" + "@typescript-eslint/types": "7.0.2", + "@typescript-eslint/utils": "7.0.2" }, "devDependencies": { "@eslint/js": "*", - "@typescript-eslint/eslint-plugin": "7.0.1", - "@typescript-eslint/parser": "7.0.1", - "@typescript-eslint/scope-manager": "7.0.1", - "@typescript-eslint/typescript-estree": "7.0.1", - "@typescript-eslint/visitor-keys": "7.0.1", + "@typescript-eslint/eslint-plugin": "7.0.2", + "@typescript-eslint/parser": "7.0.2", + "@typescript-eslint/scope-manager": "7.0.2", + "@typescript-eslint/typescript-estree": "7.0.2", + "@typescript-eslint/visitor-keys": "7.0.2", "esbuild": "~0.20.0", "eslint": "*", "esquery": "*", diff --git a/packages/website/CHANGELOG.md b/packages/website/CHANGELOG.md index 589c15328c3..e1662e6e227 100644 --- a/packages/website/CHANGELOG.md +++ b/packages/website/CHANGELOG.md @@ -1,3 +1,18 @@ +## 7.0.2 (2024-02-19) + + +### 🩹 Fixes + +- fix tsconfig-less check errors, fix `@types/eslint` incompatibilities, add tests + + +### ❤️ Thank You + +- Brad Zacher +- Gareth Jones + +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. + ## 7.0.1 (2024-02-12) This was a version bump only for website to align it with other projects, there were no code changes. diff --git a/packages/website/package.json b/packages/website/package.json index 6efa09738ce..1a55e33355b 100644 --- a/packages/website/package.json +++ b/packages/website/package.json @@ -1,6 +1,6 @@ { "name": "website", - "version": "7.0.1", + "version": "7.0.2", "private": true, "scripts": { "build": "docusaurus build", @@ -23,8 +23,8 @@ "@docusaurus/remark-plugin-npm2yarn": "~2.4.1", "@docusaurus/theme-common": "~2.4.1", "@mdx-js/react": "1.6.22", - "@typescript-eslint/parser": "7.0.1", - "@typescript-eslint/website-eslint": "7.0.1", + "@typescript-eslint/parser": "7.0.2", + "@typescript-eslint/website-eslint": "7.0.2", "clsx": "^2.0.0", "eslint": "*", "json-schema": "^0.4.0", @@ -49,9 +49,9 @@ "@types/react": "*", "@types/react-helmet": "^6.1.6", "@types/react-router-dom": "^5.3.3", - "@typescript-eslint/eslint-plugin": "7.0.1", - "@typescript-eslint/rule-schema-to-typescript-types": "7.0.1", - "@typescript-eslint/types": "7.0.1", + "@typescript-eslint/eslint-plugin": "7.0.2", + "@typescript-eslint/rule-schema-to-typescript-types": "7.0.2", + "@typescript-eslint/types": "7.0.2", "copy-webpack-plugin": "^11.0.0", "cross-fetch": "*", "globby": "^11.1.0", diff --git a/yarn.lock b/yarn.lock index 939e4ba0384..9c7412a701e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5395,10 +5395,10 @@ __metadata: resolution: "@typescript-eslint/eslint-plugin-internal@workspace:packages/eslint-plugin-internal" dependencies: "@prettier/sync": ^0.5.0 - "@typescript-eslint/rule-tester": 7.0.1 - "@typescript-eslint/scope-manager": 7.0.1 - "@typescript-eslint/type-utils": 7.0.1 - "@typescript-eslint/utils": 7.0.1 + "@typescript-eslint/rule-tester": 7.0.2 + "@typescript-eslint/scope-manager": 7.0.2 + "@typescript-eslint/type-utils": 7.0.2 + "@typescript-eslint/utils": 7.0.2 jest: 29.7.0 prettier: ^3.0.3 rimraf: "*" @@ -5410,8 +5410,8 @@ __metadata: resolution: "@typescript-eslint/eslint-plugin-tslint@workspace:packages/eslint-plugin-tslint" dependencies: "@types/lodash": "*" - "@typescript-eslint/parser": 7.0.1 - "@typescript-eslint/utils": 7.0.1 + "@typescript-eslint/parser": 7.0.2 + "@typescript-eslint/utils": 7.0.2 jest: 29.7.0 prettier: ^3.0.3 rimraf: "*" @@ -5422,7 +5422,7 @@ __metadata: languageName: unknown linkType: soft -"@typescript-eslint/eslint-plugin@7.0.1, @typescript-eslint/eslint-plugin@workspace:packages/eslint-plugin": +"@typescript-eslint/eslint-plugin@7.0.2, @typescript-eslint/eslint-plugin@workspace:packages/eslint-plugin": version: 0.0.0-use.local resolution: "@typescript-eslint/eslint-plugin@workspace:packages/eslint-plugin" dependencies: @@ -5430,12 +5430,12 @@ __metadata: "@types/debug": "*" "@types/marked": "*" "@types/natural-compare": "*" - "@typescript-eslint/rule-schema-to-typescript-types": 7.0.1 - "@typescript-eslint/rule-tester": 7.0.1 - "@typescript-eslint/scope-manager": 7.0.1 - "@typescript-eslint/type-utils": 7.0.1 - "@typescript-eslint/utils": 7.0.1 - "@typescript-eslint/visitor-keys": 7.0.1 + "@typescript-eslint/rule-schema-to-typescript-types": 7.0.2 + "@typescript-eslint/rule-tester": 7.0.2 + "@typescript-eslint/scope-manager": 7.0.2 + "@typescript-eslint/type-utils": 7.0.2 + "@typescript-eslint/utils": 7.0.2 + "@typescript-eslint/visitor-keys": 7.0.2 ajv: ^6.12.6 chalk: ^5.3.0 cross-env: ^7.0.3 @@ -5477,15 +5477,15 @@ __metadata: languageName: unknown linkType: soft -"@typescript-eslint/parser@7.0.1, @typescript-eslint/parser@workspace:packages/parser": +"@typescript-eslint/parser@7.0.2, @typescript-eslint/parser@workspace:packages/parser": version: 0.0.0-use.local resolution: "@typescript-eslint/parser@workspace:packages/parser" dependencies: "@types/glob": "*" - "@typescript-eslint/scope-manager": 7.0.1 - "@typescript-eslint/types": 7.0.1 - "@typescript-eslint/typescript-estree": 7.0.1 - "@typescript-eslint/visitor-keys": 7.0.1 + "@typescript-eslint/scope-manager": 7.0.2 + "@typescript-eslint/types": 7.0.2 + "@typescript-eslint/typescript-estree": 7.0.2 + "@typescript-eslint/visitor-keys": 7.0.2 debug: ^4.3.4 downlevel-dts: "*" glob: "*" @@ -5516,25 +5516,25 @@ __metadata: languageName: unknown linkType: soft -"@typescript-eslint/rule-schema-to-typescript-types@7.0.1, @typescript-eslint/rule-schema-to-typescript-types@workspace:packages/rule-schema-to-typescript-types": +"@typescript-eslint/rule-schema-to-typescript-types@7.0.2, @typescript-eslint/rule-schema-to-typescript-types@workspace:packages/rule-schema-to-typescript-types": version: 0.0.0-use.local resolution: "@typescript-eslint/rule-schema-to-typescript-types@workspace:packages/rule-schema-to-typescript-types" dependencies: - "@typescript-eslint/type-utils": 7.0.1 - "@typescript-eslint/utils": 7.0.1 + "@typescript-eslint/type-utils": 7.0.2 + "@typescript-eslint/utils": 7.0.2 natural-compare: ^1.4.0 prettier: ^3.0.3 languageName: unknown linkType: soft -"@typescript-eslint/rule-tester@7.0.1, @typescript-eslint/rule-tester@workspace:packages/rule-tester": +"@typescript-eslint/rule-tester@7.0.2, @typescript-eslint/rule-tester@workspace:packages/rule-tester": version: 0.0.0-use.local resolution: "@typescript-eslint/rule-tester@workspace:packages/rule-tester" dependencies: "@types/lodash.merge": 4.6.9 - "@typescript-eslint/parser": 7.0.1 - "@typescript-eslint/typescript-estree": 7.0.1 - "@typescript-eslint/utils": 7.0.1 + "@typescript-eslint/parser": 7.0.2 + "@typescript-eslint/typescript-estree": 7.0.2 + "@typescript-eslint/utils": 7.0.2 ajv: ^6.10.0 chai: ^4.3.7 lodash.merge: 4.6.2 @@ -5548,14 +5548,14 @@ __metadata: languageName: unknown linkType: soft -"@typescript-eslint/scope-manager@7.0.1, @typescript-eslint/scope-manager@workspace:packages/scope-manager": +"@typescript-eslint/scope-manager@7.0.2, @typescript-eslint/scope-manager@workspace:packages/scope-manager": version: 0.0.0-use.local resolution: "@typescript-eslint/scope-manager@workspace:packages/scope-manager" dependencies: "@types/glob": "*" - "@typescript-eslint/types": 7.0.1 - "@typescript-eslint/typescript-estree": 7.0.1 - "@typescript-eslint/visitor-keys": 7.0.1 + "@typescript-eslint/types": 7.0.2 + "@typescript-eslint/typescript-estree": 7.0.2 + "@typescript-eslint/visitor-keys": 7.0.2 glob: "*" jest-specific-snapshot: "*" make-dir: "*" @@ -5584,13 +5584,13 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/type-utils@7.0.1, @typescript-eslint/type-utils@workspace:packages/type-utils": +"@typescript-eslint/type-utils@7.0.2, @typescript-eslint/type-utils@workspace:packages/type-utils": version: 0.0.0-use.local resolution: "@typescript-eslint/type-utils@workspace:packages/type-utils" dependencies: - "@typescript-eslint/parser": 7.0.1 - "@typescript-eslint/typescript-estree": 7.0.1 - "@typescript-eslint/utils": 7.0.1 + "@typescript-eslint/parser": 7.0.2 + "@typescript-eslint/typescript-estree": 7.0.2 + "@typescript-eslint/utils": 7.0.2 ajv: ^6.10.0 debug: ^4.3.4 downlevel-dts: "*" @@ -5607,7 +5607,7 @@ __metadata: languageName: unknown linkType: soft -"@typescript-eslint/types@7.0.1, @typescript-eslint/types@workspace:packages/types": +"@typescript-eslint/types@7.0.2, @typescript-eslint/types@workspace:packages/types": version: 0.0.0-use.local resolution: "@typescript-eslint/types@workspace:packages/types" dependencies: @@ -5709,14 +5709,14 @@ __metadata: languageName: unknown linkType: soft -"@typescript-eslint/typescript-estree@7.0.1, @typescript-eslint/typescript-estree@workspace:packages/typescript-estree": +"@typescript-eslint/typescript-estree@7.0.2, @typescript-eslint/typescript-estree@workspace:packages/typescript-estree": version: 0.0.0-use.local resolution: "@typescript-eslint/typescript-estree@workspace:packages/typescript-estree" dependencies: "@babel/code-frame": "*" "@babel/parser": "*" - "@typescript-eslint/types": 7.0.1 - "@typescript-eslint/visitor-keys": 7.0.1 + "@typescript-eslint/types": 7.0.2 + "@typescript-eslint/visitor-keys": 7.0.2 debug: ^4.3.4 glob: "*" globby: ^11.1.0 @@ -5774,17 +5774,17 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/utils@7.0.1, @typescript-eslint/utils@workspace:packages/utils": +"@typescript-eslint/utils@7.0.2, @typescript-eslint/utils@workspace:packages/utils": version: 0.0.0-use.local resolution: "@typescript-eslint/utils@workspace:packages/utils" dependencies: "@eslint-community/eslint-utils": ^4.4.0 "@types/json-schema": ^7.0.12 "@types/semver": ^7.5.0 - "@typescript-eslint/parser": 7.0.1 - "@typescript-eslint/scope-manager": 7.0.1 - "@typescript-eslint/types": 7.0.1 - "@typescript-eslint/typescript-estree": 7.0.1 + "@typescript-eslint/parser": 7.0.2 + "@typescript-eslint/scope-manager": 7.0.2 + "@typescript-eslint/types": 7.0.2 + "@typescript-eslint/typescript-estree": 7.0.2 downlevel-dts: "*" jest: 29.7.0 prettier: ^3.0.3 @@ -5831,12 +5831,12 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/visitor-keys@7.0.1, @typescript-eslint/visitor-keys@workspace:packages/visitor-keys": +"@typescript-eslint/visitor-keys@7.0.2, @typescript-eslint/visitor-keys@workspace:packages/visitor-keys": version: 0.0.0-use.local resolution: "@typescript-eslint/visitor-keys@workspace:packages/visitor-keys" dependencies: "@types/eslint-visitor-keys": "*" - "@typescript-eslint/types": 7.0.1 + "@typescript-eslint/types": 7.0.2 downlevel-dts: "*" eslint-visitor-keys: ^3.4.1 jest: 29.7.0 @@ -5866,18 +5866,18 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/website-eslint@7.0.1, @typescript-eslint/website-eslint@workspace:packages/website-eslint": +"@typescript-eslint/website-eslint@7.0.2, @typescript-eslint/website-eslint@workspace:packages/website-eslint": version: 0.0.0-use.local resolution: "@typescript-eslint/website-eslint@workspace:packages/website-eslint" dependencies: "@eslint/js": "*" - "@typescript-eslint/eslint-plugin": 7.0.1 - "@typescript-eslint/parser": 7.0.1 - "@typescript-eslint/scope-manager": 7.0.1 - "@typescript-eslint/types": 7.0.1 - "@typescript-eslint/typescript-estree": 7.0.1 - "@typescript-eslint/utils": 7.0.1 - "@typescript-eslint/visitor-keys": 7.0.1 + "@typescript-eslint/eslint-plugin": 7.0.2 + "@typescript-eslint/parser": 7.0.2 + "@typescript-eslint/scope-manager": 7.0.2 + "@typescript-eslint/types": 7.0.2 + "@typescript-eslint/typescript-estree": 7.0.2 + "@typescript-eslint/utils": 7.0.2 + "@typescript-eslint/visitor-keys": 7.0.2 esbuild: ~0.20.0 eslint: "*" esquery: "*" @@ -18479,8 +18479,8 @@ __metadata: version: 0.0.0-use.local resolution: "typescript-eslint@workspace:packages/typescript-eslint" dependencies: - "@typescript-eslint/eslint-plugin": 7.0.1 - "@typescript-eslint/parser": 7.0.1 + "@typescript-eslint/eslint-plugin": 7.0.2 + "@typescript-eslint/parser": 7.0.2 downlevel-dts: "*" jest: 29.7.0 prettier: ^3.0.3 @@ -19268,11 +19268,11 @@ __metadata: "@types/react": "*" "@types/react-helmet": ^6.1.6 "@types/react-router-dom": ^5.3.3 - "@typescript-eslint/eslint-plugin": 7.0.1 - "@typescript-eslint/parser": 7.0.1 - "@typescript-eslint/rule-schema-to-typescript-types": 7.0.1 - "@typescript-eslint/types": 7.0.1 - "@typescript-eslint/website-eslint": 7.0.1 + "@typescript-eslint/eslint-plugin": 7.0.2 + "@typescript-eslint/parser": 7.0.2 + "@typescript-eslint/rule-schema-to-typescript-types": 7.0.2 + "@typescript-eslint/types": 7.0.2 + "@typescript-eslint/website-eslint": 7.0.2 clsx: ^2.0.0 copy-webpack-plugin: ^11.0.0 cross-fetch: "*"