From 3b3696aaf5d4f89b64ec3c31fbacf438de0d21eb Mon Sep 17 00:00:00 2001 From: YeonJuan Date: Tue, 19 Mar 2024 03:31:23 +0900 Subject: [PATCH 1/4] chore(website): disable internal/no-relative-paths-to-internal-packages rule (#8711) --- packages/website/src/components/editor/useSandboxServices.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/website/src/components/editor/useSandboxServices.ts b/packages/website/src/components/editor/useSandboxServices.ts index c403868c1ecd..c2855c8af6c4 100644 --- a/packages/website/src/components/editor/useSandboxServices.ts +++ b/packages/website/src/components/editor/useSandboxServices.ts @@ -3,6 +3,7 @@ import type * as Monaco from 'monaco-editor'; import { useEffect, useState } from 'react'; import semverSatisfies from 'semver/functions/satisfies'; +// eslint-disable-next-line @typescript-eslint/internal/no-relative-paths-to-internal-packages import rootPackageJson from '../../../../../package.json'; import type { createTypeScriptSandbox } from '../../vendor/sandbox'; import { createCompilerOptions } from '../lib/createCompilerOptions'; From 4f44fbcceb24f6c34a66a10158f2a504725d5f72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josh=20Goldberg=20=E2=9C=A8?= Date: Mon, 18 Mar 2024 17:49:07 -0400 Subject: [PATCH 2/4] chore(website): fix build break from {} for Docusaurus v3 (#8715) --- docs/maintenance/Pull_Requests.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/maintenance/Pull_Requests.mdx b/docs/maintenance/Pull_Requests.mdx index c6901f451f72..15b5e83d1bb2 100644 --- a/docs/maintenance/Pull_Requests.mdx +++ b/docs/maintenance/Pull_Requests.mdx @@ -99,7 +99,7 @@ Be clear in each of your comments what you're looking for or saying. Err on the side of providing more information than you think is needed. Try to default to a questioning tone for points that aren't clear bugs. -Encourage authors to think on your suggestions: _"I think {xyz}, but am not sure - what do you think?"_. +Encourage authors to think on your suggestions: _"I think (xyz), but am not sure - what do you think?"_. #### Preliminary or Repeat Reviews From d78d98b8227ab07759e7246f8d6e830c62c21f55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josh=20Goldberg=20=E2=9C=A8?= Date: Mon, 18 Mar 2024 18:56:47 -0400 Subject: [PATCH 3/4] fix(eslint-plugin): [no-floating-promises] revert disable of ignoreVoid in strict config (#8718) * fix(eslint-plugin): [no-floating-promises] revert disable of ignoreVoid in strict config * Reverted inlines too * yarn generate-configs --- .../eslint-plugin/src/configs/strict-type-checked-only.ts | 2 +- packages/eslint-plugin/src/configs/strict-type-checked.ts | 2 +- packages/eslint-plugin/src/rules/no-floating-promises.ts | 5 +---- packages/repo-tools/src/postinstall.mts | 3 +-- packages/rule-tester/src/utils/config-validator.ts | 3 +-- .../src/configs/strict-type-checked-only.ts | 5 +---- .../typescript-eslint/src/configs/strict-type-checked.ts | 5 +---- packages/website/src/hooks/useClipboard.ts | 2 +- 8 files changed, 8 insertions(+), 19 deletions(-) diff --git a/packages/eslint-plugin/src/configs/strict-type-checked-only.ts b/packages/eslint-plugin/src/configs/strict-type-checked-only.ts index cbfaa5b73b80..7f60694d10ab 100644 --- a/packages/eslint-plugin/src/configs/strict-type-checked-only.ts +++ b/packages/eslint-plugin/src/configs/strict-type-checked-only.ts @@ -15,7 +15,7 @@ export = { '@typescript-eslint/no-base-to-string': 'error', '@typescript-eslint/no-confusing-void-expression': 'error', '@typescript-eslint/no-duplicate-type-constituents': 'error', - '@typescript-eslint/no-floating-promises': ['error', { ignoreVoid: false }], + '@typescript-eslint/no-floating-promises': 'error', '@typescript-eslint/no-for-in-array': 'error', 'no-implied-eval': 'off', '@typescript-eslint/no-implied-eval': 'error', diff --git a/packages/eslint-plugin/src/configs/strict-type-checked.ts b/packages/eslint-plugin/src/configs/strict-type-checked.ts index 6d838db31566..d56d87d4ca3a 100644 --- a/packages/eslint-plugin/src/configs/strict-type-checked.ts +++ b/packages/eslint-plugin/src/configs/strict-type-checked.ts @@ -27,7 +27,7 @@ export = { '@typescript-eslint/no-explicit-any': 'error', '@typescript-eslint/no-extra-non-null-assertion': 'error', '@typescript-eslint/no-extraneous-class': 'error', - '@typescript-eslint/no-floating-promises': ['error', { ignoreVoid: false }], + '@typescript-eslint/no-floating-promises': 'error', '@typescript-eslint/no-for-in-array': 'error', 'no-implied-eval': 'off', '@typescript-eslint/no-implied-eval': 'error', diff --git a/packages/eslint-plugin/src/rules/no-floating-promises.ts b/packages/eslint-plugin/src/rules/no-floating-promises.ts index 9e439118747f..b3ac65296992 100644 --- a/packages/eslint-plugin/src/rules/no-floating-promises.ts +++ b/packages/eslint-plugin/src/rules/no-floating-promises.ts @@ -50,10 +50,7 @@ export default createRule({ docs: { description: 'Require Promise-like statements to be handled appropriately', - recommended: { - recommended: true, - strict: [{ ignoreVoid: false }], - }, + recommended: 'recommended', requiresTypeChecking: true, }, hasSuggestions: true, diff --git a/packages/repo-tools/src/postinstall.mts b/packages/repo-tools/src/postinstall.mts index b89cb17cc867..5facbf0defc9 100644 --- a/packages/repo-tools/src/postinstall.mts +++ b/packages/repo-tools/src/postinstall.mts @@ -20,8 +20,7 @@ if (process.env.SKIP_POSTINSTALL) { process.exit(0); } -// eslint-disable-next-line @typescript-eslint/no-floating-promises -(async function (): Promise { +void (async function (): Promise { // make sure we're running from the workspace root const { default: { workspaceRoot }, diff --git a/packages/rule-tester/src/utils/config-validator.ts b/packages/rule-tester/src/utils/config-validator.ts index ff616a0e57de..ac90b8c21eea 100644 --- a/packages/rule-tester/src/utils/config-validator.ts +++ b/packages/rule-tester/src/utils/config-validator.ts @@ -78,8 +78,7 @@ function validateRuleSchema( const validateRule = ruleValidators.get(rule); if (validateRule) { - // eslint-disable-next-line @typescript-eslint/no-floating-promises - validateRule(localOptions); + void validateRule(localOptions); if (validateRule.errors) { throw new Error( validateRule.errors diff --git a/packages/typescript-eslint/src/configs/strict-type-checked-only.ts b/packages/typescript-eslint/src/configs/strict-type-checked-only.ts index 4c52c09b7376..a7947878da6e 100644 --- a/packages/typescript-eslint/src/configs/strict-type-checked-only.ts +++ b/packages/typescript-eslint/src/configs/strict-type-checked-only.ts @@ -23,10 +23,7 @@ export default ( '@typescript-eslint/no-base-to-string': 'error', '@typescript-eslint/no-confusing-void-expression': 'error', '@typescript-eslint/no-duplicate-type-constituents': 'error', - '@typescript-eslint/no-floating-promises': [ - 'error', - { ignoreVoid: false }, - ], + '@typescript-eslint/no-floating-promises': 'error', '@typescript-eslint/no-for-in-array': 'error', 'no-implied-eval': 'off', '@typescript-eslint/no-implied-eval': 'error', diff --git a/packages/typescript-eslint/src/configs/strict-type-checked.ts b/packages/typescript-eslint/src/configs/strict-type-checked.ts index e53f57934cea..fa0e7af8c0ba 100644 --- a/packages/typescript-eslint/src/configs/strict-type-checked.ts +++ b/packages/typescript-eslint/src/configs/strict-type-checked.ts @@ -35,10 +35,7 @@ export default ( '@typescript-eslint/no-explicit-any': 'error', '@typescript-eslint/no-extra-non-null-assertion': 'error', '@typescript-eslint/no-extraneous-class': 'error', - '@typescript-eslint/no-floating-promises': [ - 'error', - { ignoreVoid: false }, - ], + '@typescript-eslint/no-floating-promises': 'error', '@typescript-eslint/no-for-in-array': 'error', 'no-implied-eval': 'off', '@typescript-eslint/no-implied-eval': 'error', diff --git a/packages/website/src/hooks/useClipboard.ts b/packages/website/src/hooks/useClipboard.ts index d8191784f8e2..0a98af33b91b 100644 --- a/packages/website/src/hooks/useClipboard.ts +++ b/packages/website/src/hooks/useClipboard.ts @@ -9,7 +9,7 @@ export function useClipboard(code: () => string): useClipboardResult { const copy = useCallback(() => { // eslint-disable-next-line @typescript-eslint/no-floating-promises - navigator.clipboard.writeText(code()).then(() => { + void navigator.clipboard.writeText(code()).then(() => { setCopied(true); }); }, [setCopied, code]); From 5995614324a59f558190f6123be96857e324bcb2 Mon Sep 17 00:00:00 2001 From: "typescript-eslint[bot]" Date: Mon, 18 Mar 2024 23:00:08 +0000 Subject: [PATCH 4/4] chore(release): publish 7.3.1 --- CHANGELOG.md | 13 ++ packages/ast-spec/CHANGELOG.md | 6 + packages/ast-spec/package.json | 2 +- packages/eslint-plugin-internal/CHANGELOG.md | 6 + packages/eslint-plugin-internal/package.json | 10 +- packages/eslint-plugin/CHANGELOG.md | 14 +++ packages/eslint-plugin/package.json | 14 +-- packages/integration-tests/CHANGELOG.md | 6 + packages/integration-tests/package.json | 2 +- packages/parser/CHANGELOG.md | 6 + packages/parser/package.json | 10 +- packages/repo-tools/CHANGELOG.md | 14 +++ packages/repo-tools/package.json | 2 +- .../CHANGELOG.md | 6 + .../package.json | 6 +- packages/rule-tester/CHANGELOG.md | 14 +++ packages/rule-tester/package.json | 8 +- packages/scope-manager/CHANGELOG.md | 6 + packages/scope-manager/package.json | 8 +- packages/type-utils/CHANGELOG.md | 6 + packages/type-utils/package.json | 8 +- packages/types/CHANGELOG.md | 6 + packages/types/package.json | 2 +- packages/typescript-eslint/CHANGELOG.md | 14 +++ packages/typescript-eslint/package.json | 6 +- packages/typescript-estree/CHANGELOG.md | 6 + packages/typescript-estree/package.json | 6 +- packages/utils/CHANGELOG.md | 6 + packages/utils/package.json | 10 +- packages/visitor-keys/CHANGELOG.md | 6 + packages/visitor-keys/package.json | 4 +- packages/website-eslint/CHANGELOG.md | 6 + packages/website-eslint/package.json | 16 +-- packages/website/CHANGELOG.md | 14 +++ packages/website/package.json | 12 +- yarn.lock | 114 +++++++++--------- 36 files changed, 275 insertions(+), 120 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bc21e319232..82e86059b32d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## 7.3.1 (2024-03-18) + + +### 🩹 Fixes + +- **eslint-plugin:** [no-floating-promises] revert disable of ignoreVoid in strict config ([#8718](https://github.com/typescript-eslint/typescript-eslint/pull/8718)) + +### ❤️ Thank You + +- Josh Goldberg ✨ + +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.3.0 (2024-03-18) diff --git a/packages/ast-spec/CHANGELOG.md b/packages/ast-spec/CHANGELOG.md index bed0d16706b5..baecf572bc06 100644 --- a/packages/ast-spec/CHANGELOG.md +++ b/packages/ast-spec/CHANGELOG.md @@ -1,3 +1,9 @@ +## 7.3.1 (2024-03-18) + +This was a version bump only for ast-spec to align it with other projects, there were no code changes. + +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.3.0 (2024-03-18) diff --git a/packages/ast-spec/package.json b/packages/ast-spec/package.json index 6dfa2dd64525..fe95cda3c5de 100644 --- a/packages/ast-spec/package.json +++ b/packages/ast-spec/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/ast-spec", - "version": "7.3.0", + "version": "7.3.1", "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 14e3c0d5922c..6e3c2f57f401 100644 --- a/packages/eslint-plugin-internal/CHANGELOG.md +++ b/packages/eslint-plugin-internal/CHANGELOG.md @@ -1,3 +1,9 @@ +## 7.3.1 (2024-03-18) + +This was a version bump only for eslint-plugin-internal to align it with other projects, there were no code changes. + +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.3.0 (2024-03-18) diff --git a/packages/eslint-plugin-internal/package.json b/packages/eslint-plugin-internal/package.json index e644765974bd..335adc775c84 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.3.0", + "version": "7.3.1", "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.3.0", - "@typescript-eslint/scope-manager": "7.3.0", - "@typescript-eslint/type-utils": "7.3.0", - "@typescript-eslint/utils": "7.3.0", + "@typescript-eslint/rule-tester": "7.3.1", + "@typescript-eslint/scope-manager": "7.3.1", + "@typescript-eslint/type-utils": "7.3.1", + "@typescript-eslint/utils": "7.3.1", "prettier": "^3.0.3" }, "devDependencies": { diff --git a/packages/eslint-plugin/CHANGELOG.md b/packages/eslint-plugin/CHANGELOG.md index 8aaf51923203..98567df775b6 100644 --- a/packages/eslint-plugin/CHANGELOG.md +++ b/packages/eslint-plugin/CHANGELOG.md @@ -1,3 +1,17 @@ +## 7.3.1 (2024-03-18) + + +### 🩹 Fixes + +- **eslint-plugin:** [no-floating-promises] revert disable of ignoreVoid in strict config + + +### ❤️ Thank You + +- Josh Goldberg ✨ + +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.3.0 (2024-03-18) diff --git a/packages/eslint-plugin/package.json b/packages/eslint-plugin/package.json index 9f526b25cc8b..3a4ccfe82ba8 100644 --- a/packages/eslint-plugin/package.json +++ b/packages/eslint-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/eslint-plugin", - "version": "7.3.0", + "version": "7.3.1", "description": "TypeScript plugin for ESLint", "files": [ "dist", @@ -61,10 +61,10 @@ }, "dependencies": { "@eslint-community/regexpp": "^4.5.1", - "@typescript-eslint/scope-manager": "7.3.0", - "@typescript-eslint/type-utils": "7.3.0", - "@typescript-eslint/utils": "7.3.0", - "@typescript-eslint/visitor-keys": "7.3.0", + "@typescript-eslint/scope-manager": "7.3.1", + "@typescript-eslint/type-utils": "7.3.1", + "@typescript-eslint/utils": "7.3.1", + "@typescript-eslint/visitor-keys": "7.3.1", "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.3.0", - "@typescript-eslint/rule-tester": "7.3.0", + "@typescript-eslint/rule-schema-to-typescript-types": "7.3.1", + "@typescript-eslint/rule-tester": "7.3.1", "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 f685c956f2a5..e3274568ae22 100644 --- a/packages/integration-tests/CHANGELOG.md +++ b/packages/integration-tests/CHANGELOG.md @@ -1,3 +1,9 @@ +## 7.3.1 (2024-03-18) + +This was a version bump only for integration-tests to align it with other projects, there were no code changes. + +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.3.0 (2024-03-18) 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 82c69b7f784c..d95c348c7c14 100644 --- a/packages/integration-tests/package.json +++ b/packages/integration-tests/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/integration-tests", - "version": "7.3.0", + "version": "7.3.1", "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 261271097568..12bdb4351bc1 100644 --- a/packages/parser/CHANGELOG.md +++ b/packages/parser/CHANGELOG.md @@ -1,3 +1,9 @@ +## 7.3.1 (2024-03-18) + +This was a version bump only for parser to align it with other projects, there were no code changes. + +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.3.0 (2024-03-18) diff --git a/packages/parser/package.json b/packages/parser/package.json index 1b2dc6649b56..981137583f37 100644 --- a/packages/parser/package.json +++ b/packages/parser/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/parser", - "version": "7.3.0", + "version": "7.3.1", "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.3.0", - "@typescript-eslint/types": "7.3.0", - "@typescript-eslint/typescript-estree": "7.3.0", - "@typescript-eslint/visitor-keys": "7.3.0", + "@typescript-eslint/scope-manager": "7.3.1", + "@typescript-eslint/types": "7.3.1", + "@typescript-eslint/typescript-estree": "7.3.1", + "@typescript-eslint/visitor-keys": "7.3.1", "debug": "^4.3.4" }, "devDependencies": { diff --git a/packages/repo-tools/CHANGELOG.md b/packages/repo-tools/CHANGELOG.md index c47c057ebbfc..a28746ea94cc 100644 --- a/packages/repo-tools/CHANGELOG.md +++ b/packages/repo-tools/CHANGELOG.md @@ -1,3 +1,17 @@ +## 7.3.1 (2024-03-18) + + +### 🩹 Fixes + +- **eslint-plugin:** [no-floating-promises] revert disable of ignoreVoid in strict config + + +### ❤️ Thank You + +- Josh Goldberg ✨ + +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.3.0 (2024-03-18) diff --git a/packages/repo-tools/package.json b/packages/repo-tools/package.json index a0a60983e172..1bed8689562d 100644 --- a/packages/repo-tools/package.json +++ b/packages/repo-tools/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/repo-tools", - "version": "7.3.0", + "version": "7.3.1", "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 4e74383341e6..b383fa47416b 100644 --- a/packages/rule-schema-to-typescript-types/CHANGELOG.md +++ b/packages/rule-schema-to-typescript-types/CHANGELOG.md @@ -1,3 +1,9 @@ +## 7.3.1 (2024-03-18) + +This was a version bump only for rule-schema-to-typescript-types to align it with other projects, there were no code changes. + +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.3.0 (2024-03-18) diff --git a/packages/rule-schema-to-typescript-types/package.json b/packages/rule-schema-to-typescript-types/package.json index 0cd50f019374..616c2775ca5e 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.3.0", + "version": "7.3.1", "private": true, "type": "commonjs", "exports": { @@ -33,8 +33,8 @@ "typecheck": "tsc -p tsconfig.json --noEmit" }, "dependencies": { - "@typescript-eslint/type-utils": "7.3.0", - "@typescript-eslint/utils": "7.3.0", + "@typescript-eslint/type-utils": "7.3.1", + "@typescript-eslint/utils": "7.3.1", "natural-compare": "^1.4.0", "prettier": "^3.0.3" }, diff --git a/packages/rule-tester/CHANGELOG.md b/packages/rule-tester/CHANGELOG.md index 6ef734ca8908..b3c956147188 100644 --- a/packages/rule-tester/CHANGELOG.md +++ b/packages/rule-tester/CHANGELOG.md @@ -1,3 +1,17 @@ +## 7.3.1 (2024-03-18) + + +### 🩹 Fixes + +- **eslint-plugin:** [no-floating-promises] revert disable of ignoreVoid in strict config + + +### ❤️ Thank You + +- Josh Goldberg ✨ + +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.3.0 (2024-03-18) diff --git a/packages/rule-tester/package.json b/packages/rule-tester/package.json index 7cac41b08254..6beb99a0cc21 100644 --- a/packages/rule-tester/package.json +++ b/packages/rule-tester/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/rule-tester", - "version": "7.3.0", + "version": "7.3.1", "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.3.0", - "@typescript-eslint/utils": "7.3.0", + "@typescript-eslint/typescript-estree": "7.3.1", + "@typescript-eslint/utils": "7.3.1", "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.3.0", + "@typescript-eslint/parser": "7.3.1", "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 8ec6c5baa7b5..4648f828169d 100644 --- a/packages/scope-manager/CHANGELOG.md +++ b/packages/scope-manager/CHANGELOG.md @@ -1,3 +1,9 @@ +## 7.3.1 (2024-03-18) + +This was a version bump only for scope-manager to align it with other projects, there were no code changes. + +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.3.0 (2024-03-18) diff --git a/packages/scope-manager/package.json b/packages/scope-manager/package.json index bffde1d03b3c..b548a9077a83 100644 --- a/packages/scope-manager/package.json +++ b/packages/scope-manager/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/scope-manager", - "version": "7.3.0", + "version": "7.3.1", "description": "TypeScript scope analyser for ESLint", "files": [ "dist", @@ -45,12 +45,12 @@ "typecheck": "npx nx typecheck" }, "dependencies": { - "@typescript-eslint/types": "7.3.0", - "@typescript-eslint/visitor-keys": "7.3.0" + "@typescript-eslint/types": "7.3.1", + "@typescript-eslint/visitor-keys": "7.3.1" }, "devDependencies": { "@types/glob": "*", - "@typescript-eslint/typescript-estree": "7.3.0", + "@typescript-eslint/typescript-estree": "7.3.1", "glob": "*", "jest-specific-snapshot": "*", "make-dir": "*", diff --git a/packages/type-utils/CHANGELOG.md b/packages/type-utils/CHANGELOG.md index 828192770c52..9debc4edbe36 100644 --- a/packages/type-utils/CHANGELOG.md +++ b/packages/type-utils/CHANGELOG.md @@ -1,3 +1,9 @@ +## 7.3.1 (2024-03-18) + +This was a version bump only for type-utils to align it with other projects, there were no code changes. + +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.3.0 (2024-03-18) diff --git a/packages/type-utils/package.json b/packages/type-utils/package.json index c2041c6f6922..9e05c8afabf8 100644 --- a/packages/type-utils/package.json +++ b/packages/type-utils/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/type-utils", - "version": "7.3.0", + "version": "7.3.1", "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.3.0", - "@typescript-eslint/utils": "7.3.0", + "@typescript-eslint/typescript-estree": "7.3.1", + "@typescript-eslint/utils": "7.3.1", "debug": "^4.3.4", "ts-api-utils": "^1.0.1" }, "devDependencies": { - "@typescript-eslint/parser": "7.3.0", + "@typescript-eslint/parser": "7.3.1", "ajv": "^6.10.0", "downlevel-dts": "*", "jest": "29.7.0", diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index 30c75d78da8d..b6d50280a164 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/CHANGELOG.md @@ -1,3 +1,9 @@ +## 7.3.1 (2024-03-18) + +This was a version bump only for types to align it with other projects, there were no code changes. + +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.3.0 (2024-03-18) diff --git a/packages/types/package.json b/packages/types/package.json index b1ec3380abf1..d677230db53e 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/types", - "version": "7.3.0", + "version": "7.3.1", "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 cb08683822bb..14b4677a2c68 100644 --- a/packages/typescript-eslint/CHANGELOG.md +++ b/packages/typescript-eslint/CHANGELOG.md @@ -1,3 +1,17 @@ +## 7.3.1 (2024-03-18) + + +### 🩹 Fixes + +- **eslint-plugin:** [no-floating-promises] revert disable of ignoreVoid in strict config + + +### ❤️ Thank You + +- Josh Goldberg ✨ + +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.3.0 (2024-03-18) diff --git a/packages/typescript-eslint/package.json b/packages/typescript-eslint/package.json index 5139077b1967..76efb68bbfca 100644 --- a/packages/typescript-eslint/package.json +++ b/packages/typescript-eslint/package.json @@ -1,6 +1,6 @@ { "name": "typescript-eslint", - "version": "7.3.0", + "version": "7.3.1", "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.3.0", - "@typescript-eslint/parser": "7.3.0" + "@typescript-eslint/eslint-plugin": "7.3.1", + "@typescript-eslint/parser": "7.3.1" }, "devDependencies": { "downlevel-dts": "*", diff --git a/packages/typescript-estree/CHANGELOG.md b/packages/typescript-estree/CHANGELOG.md index 850981a95c54..0a26f16d1a32 100644 --- a/packages/typescript-estree/CHANGELOG.md +++ b/packages/typescript-estree/CHANGELOG.md @@ -1,3 +1,9 @@ +## 7.3.1 (2024-03-18) + +This was a version bump only for typescript-estree to align it with other projects, there were no code changes. + +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.3.0 (2024-03-18) diff --git a/packages/typescript-estree/package.json b/packages/typescript-estree/package.json index 7fb3d420e56e..489953a3fa05 100644 --- a/packages/typescript-estree/package.json +++ b/packages/typescript-estree/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/typescript-estree", - "version": "7.3.0", + "version": "7.3.1", "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.3.0", - "@typescript-eslint/visitor-keys": "7.3.0", + "@typescript-eslint/types": "7.3.1", + "@typescript-eslint/visitor-keys": "7.3.1", "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 9830f3eaff3e..e31e683c6ff4 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,3 +1,9 @@ +## 7.3.1 (2024-03-18) + +This was a version bump only for utils to align it with other projects, there were no code changes. + +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.3.0 (2024-03-18) diff --git a/packages/utils/package.json b/packages/utils/package.json index 771f9c409d46..c5dd2375876f 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/utils", - "version": "7.3.0", + "version": "7.3.1", "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.3.0", - "@typescript-eslint/types": "7.3.0", - "@typescript-eslint/typescript-estree": "7.3.0", + "@typescript-eslint/scope-manager": "7.3.1", + "@typescript-eslint/types": "7.3.1", + "@typescript-eslint/typescript-estree": "7.3.1", "semver": "^7.5.4" }, "peerDependencies": { "eslint": "^8.56.0" }, "devDependencies": { - "@typescript-eslint/parser": "7.3.0", + "@typescript-eslint/parser": "7.3.1", "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 ca56dfb62d98..7bd6e9c47654 100644 --- a/packages/visitor-keys/CHANGELOG.md +++ b/packages/visitor-keys/CHANGELOG.md @@ -1,3 +1,9 @@ +## 7.3.1 (2024-03-18) + +This was a version bump only for visitor-keys to align it with other projects, there were no code changes. + +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.3.0 (2024-03-18) diff --git a/packages/visitor-keys/package.json b/packages/visitor-keys/package.json index 4a682c74183c..6b8bd549084f 100644 --- a/packages/visitor-keys/package.json +++ b/packages/visitor-keys/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/visitor-keys", - "version": "7.3.0", + "version": "7.3.1", "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.3.0", + "@typescript-eslint/types": "7.3.1", "eslint-visitor-keys": "^3.4.1" }, "devDependencies": { diff --git a/packages/website-eslint/CHANGELOG.md b/packages/website-eslint/CHANGELOG.md index 96f39307b3db..03f758b8d02f 100644 --- a/packages/website-eslint/CHANGELOG.md +++ b/packages/website-eslint/CHANGELOG.md @@ -1,3 +1,9 @@ +## 7.3.1 (2024-03-18) + +This was a version bump only for website-eslint to align it with other projects, there were no code changes. + +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.3.0 (2024-03-18) diff --git a/packages/website-eslint/package.json b/packages/website-eslint/package.json index 3f434c3dc052..9546023aca53 100644 --- a/packages/website-eslint/package.json +++ b/packages/website-eslint/package.json @@ -1,6 +1,6 @@ { "name": "@typescript-eslint/website-eslint", - "version": "7.3.0", + "version": "7.3.1", "private": true, "description": "ESLint which works in browsers.", "files": [ @@ -23,16 +23,16 @@ "typecheck": "tsc --noEmit" }, "dependencies": { - "@typescript-eslint/types": "7.3.0", - "@typescript-eslint/utils": "7.3.0" + "@typescript-eslint/types": "7.3.1", + "@typescript-eslint/utils": "7.3.1" }, "devDependencies": { "@eslint/js": "*", - "@typescript-eslint/eslint-plugin": "7.3.0", - "@typescript-eslint/parser": "7.3.0", - "@typescript-eslint/scope-manager": "7.3.0", - "@typescript-eslint/typescript-estree": "7.3.0", - "@typescript-eslint/visitor-keys": "7.3.0", + "@typescript-eslint/eslint-plugin": "7.3.1", + "@typescript-eslint/parser": "7.3.1", + "@typescript-eslint/scope-manager": "7.3.1", + "@typescript-eslint/typescript-estree": "7.3.1", + "@typescript-eslint/visitor-keys": "7.3.1", "esbuild": "~0.20.0", "eslint": "*", "esquery": "*", diff --git a/packages/website/CHANGELOG.md b/packages/website/CHANGELOG.md index acb0ee80d6c5..1f11f1d30d4d 100644 --- a/packages/website/CHANGELOG.md +++ b/packages/website/CHANGELOG.md @@ -1,3 +1,17 @@ +## 7.3.1 (2024-03-18) + + +### 🩹 Fixes + +- **eslint-plugin:** [no-floating-promises] revert disable of ignoreVoid in strict config + + +### ❤️ Thank You + +- Josh Goldberg ✨ + +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.3.0 (2024-03-18) diff --git a/packages/website/package.json b/packages/website/package.json index d31a21cbecb2..3623ff9e98d2 100644 --- a/packages/website/package.json +++ b/packages/website/package.json @@ -1,6 +1,6 @@ { "name": "website", - "version": "7.3.0", + "version": "7.3.1", "private": true, "scripts": { "build": "docusaurus build", @@ -25,8 +25,8 @@ "@docusaurus/theme-common": "^3.1.1", "@mdx-js/react": "^3.0.1", "@prettier/sync": "*", - "@typescript-eslint/parser": "7.3.0", - "@typescript-eslint/website-eslint": "7.3.0", + "@typescript-eslint/parser": "7.3.1", + "@typescript-eslint/website-eslint": "7.3.1", "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.3.0", - "@typescript-eslint/rule-schema-to-typescript-types": "7.3.0", - "@typescript-eslint/types": "7.3.0", + "@typescript-eslint/eslint-plugin": "7.3.1", + "@typescript-eslint/rule-schema-to-typescript-types": "7.3.1", + "@typescript-eslint/types": "7.3.1", "copy-webpack-plugin": "^11.0.0", "cross-fetch": "*", "globby": "^11.1.0", diff --git a/yarn.lock b/yarn.lock index 01a57e2a8b3a..985061a81b31 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5488,17 +5488,17 @@ __metadata: resolution: "@typescript-eslint/eslint-plugin-internal@workspace:packages/eslint-plugin-internal" dependencies: "@prettier/sync": ^0.5.0 - "@typescript-eslint/rule-tester": 7.3.0 - "@typescript-eslint/scope-manager": 7.3.0 - "@typescript-eslint/type-utils": 7.3.0 - "@typescript-eslint/utils": 7.3.0 + "@typescript-eslint/rule-tester": 7.3.1 + "@typescript-eslint/scope-manager": 7.3.1 + "@typescript-eslint/type-utils": 7.3.1 + "@typescript-eslint/utils": 7.3.1 jest: 29.7.0 prettier: ^3.0.3 rimraf: "*" languageName: unknown linkType: soft -"@typescript-eslint/eslint-plugin@7.3.0, @typescript-eslint/eslint-plugin@workspace:packages/eslint-plugin": +"@typescript-eslint/eslint-plugin@7.3.1, @typescript-eslint/eslint-plugin@workspace:packages/eslint-plugin": version: 0.0.0-use.local resolution: "@typescript-eslint/eslint-plugin@workspace:packages/eslint-plugin" dependencies: @@ -5506,12 +5506,12 @@ __metadata: "@types/debug": "*" "@types/marked": "*" "@types/natural-compare": "*" - "@typescript-eslint/rule-schema-to-typescript-types": 7.3.0 - "@typescript-eslint/rule-tester": 7.3.0 - "@typescript-eslint/scope-manager": 7.3.0 - "@typescript-eslint/type-utils": 7.3.0 - "@typescript-eslint/utils": 7.3.0 - "@typescript-eslint/visitor-keys": 7.3.0 + "@typescript-eslint/rule-schema-to-typescript-types": 7.3.1 + "@typescript-eslint/rule-tester": 7.3.1 + "@typescript-eslint/scope-manager": 7.3.1 + "@typescript-eslint/type-utils": 7.3.1 + "@typescript-eslint/utils": 7.3.1 + "@typescript-eslint/visitor-keys": 7.3.1 ajv: ^6.12.6 chalk: ^5.3.0 cross-env: ^7.0.3 @@ -5553,15 +5553,15 @@ __metadata: languageName: unknown linkType: soft -"@typescript-eslint/parser@7.3.0, @typescript-eslint/parser@workspace:packages/parser": +"@typescript-eslint/parser@7.3.1, @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.3.0 - "@typescript-eslint/types": 7.3.0 - "@typescript-eslint/typescript-estree": 7.3.0 - "@typescript-eslint/visitor-keys": 7.3.0 + "@typescript-eslint/scope-manager": 7.3.1 + "@typescript-eslint/types": 7.3.1 + "@typescript-eslint/typescript-estree": 7.3.1 + "@typescript-eslint/visitor-keys": 7.3.1 debug: ^4.3.4 downlevel-dts: "*" glob: "*" @@ -5592,25 +5592,25 @@ __metadata: languageName: unknown linkType: soft -"@typescript-eslint/rule-schema-to-typescript-types@7.3.0, @typescript-eslint/rule-schema-to-typescript-types@workspace:packages/rule-schema-to-typescript-types": +"@typescript-eslint/rule-schema-to-typescript-types@7.3.1, @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.3.0 - "@typescript-eslint/utils": 7.3.0 + "@typescript-eslint/type-utils": 7.3.1 + "@typescript-eslint/utils": 7.3.1 natural-compare: ^1.4.0 prettier: ^3.0.3 languageName: unknown linkType: soft -"@typescript-eslint/rule-tester@7.3.0, @typescript-eslint/rule-tester@workspace:packages/rule-tester": +"@typescript-eslint/rule-tester@7.3.1, @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.3.0 - "@typescript-eslint/typescript-estree": 7.3.0 - "@typescript-eslint/utils": 7.3.0 + "@typescript-eslint/parser": 7.3.1 + "@typescript-eslint/typescript-estree": 7.3.1 + "@typescript-eslint/utils": 7.3.1 ajv: ^6.10.0 chai: ^4.3.7 lodash.merge: 4.6.2 @@ -5624,14 +5624,14 @@ __metadata: languageName: unknown linkType: soft -"@typescript-eslint/scope-manager@7.3.0, @typescript-eslint/scope-manager@workspace:packages/scope-manager": +"@typescript-eslint/scope-manager@7.3.1, @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.3.0 - "@typescript-eslint/typescript-estree": 7.3.0 - "@typescript-eslint/visitor-keys": 7.3.0 + "@typescript-eslint/types": 7.3.1 + "@typescript-eslint/typescript-estree": 7.3.1 + "@typescript-eslint/visitor-keys": 7.3.1 glob: "*" jest-specific-snapshot: "*" make-dir: "*" @@ -5660,13 +5660,13 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/type-utils@7.3.0, @typescript-eslint/type-utils@workspace:packages/type-utils": +"@typescript-eslint/type-utils@7.3.1, @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.3.0 - "@typescript-eslint/typescript-estree": 7.3.0 - "@typescript-eslint/utils": 7.3.0 + "@typescript-eslint/parser": 7.3.1 + "@typescript-eslint/typescript-estree": 7.3.1 + "@typescript-eslint/utils": 7.3.1 ajv: ^6.10.0 debug: ^4.3.4 downlevel-dts: "*" @@ -5683,7 +5683,7 @@ __metadata: languageName: unknown linkType: soft -"@typescript-eslint/types@7.3.0, @typescript-eslint/types@workspace:packages/types": +"@typescript-eslint/types@7.3.1, @typescript-eslint/types@workspace:packages/types": version: 0.0.0-use.local resolution: "@typescript-eslint/types@workspace:packages/types" dependencies: @@ -5784,14 +5784,14 @@ __metadata: languageName: unknown linkType: soft -"@typescript-eslint/typescript-estree@7.3.0, @typescript-eslint/typescript-estree@workspace:packages/typescript-estree": +"@typescript-eslint/typescript-estree@7.3.1, @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.3.0 - "@typescript-eslint/visitor-keys": 7.3.0 + "@typescript-eslint/types": 7.3.1 + "@typescript-eslint/visitor-keys": 7.3.1 debug: ^4.3.4 glob: "*" globby: ^11.1.0 @@ -5849,17 +5849,17 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/utils@7.3.0, @typescript-eslint/utils@workspace:packages/utils": +"@typescript-eslint/utils@7.3.1, @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.3.0 - "@typescript-eslint/scope-manager": 7.3.0 - "@typescript-eslint/types": 7.3.0 - "@typescript-eslint/typescript-estree": 7.3.0 + "@typescript-eslint/parser": 7.3.1 + "@typescript-eslint/scope-manager": 7.3.1 + "@typescript-eslint/types": 7.3.1 + "@typescript-eslint/typescript-estree": 7.3.1 downlevel-dts: "*" jest: 29.7.0 prettier: ^3.0.3 @@ -5906,12 +5906,12 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/visitor-keys@7.3.0, @typescript-eslint/visitor-keys@workspace:packages/visitor-keys": +"@typescript-eslint/visitor-keys@7.3.1, @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.3.0 + "@typescript-eslint/types": 7.3.1 downlevel-dts: "*" eslint-visitor-keys: ^3.4.1 jest: 29.7.0 @@ -5941,18 +5941,18 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/website-eslint@7.3.0, @typescript-eslint/website-eslint@workspace:packages/website-eslint": +"@typescript-eslint/website-eslint@7.3.1, @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.3.0 - "@typescript-eslint/parser": 7.3.0 - "@typescript-eslint/scope-manager": 7.3.0 - "@typescript-eslint/types": 7.3.0 - "@typescript-eslint/typescript-estree": 7.3.0 - "@typescript-eslint/utils": 7.3.0 - "@typescript-eslint/visitor-keys": 7.3.0 + "@typescript-eslint/eslint-plugin": 7.3.1 + "@typescript-eslint/parser": 7.3.1 + "@typescript-eslint/scope-manager": 7.3.1 + "@typescript-eslint/types": 7.3.1 + "@typescript-eslint/typescript-estree": 7.3.1 + "@typescript-eslint/utils": 7.3.1 + "@typescript-eslint/visitor-keys": 7.3.1 esbuild: ~0.20.0 eslint: "*" esquery: "*" @@ -19301,8 +19301,8 @@ __metadata: version: 0.0.0-use.local resolution: "typescript-eslint@workspace:packages/typescript-eslint" dependencies: - "@typescript-eslint/eslint-plugin": 7.3.0 - "@typescript-eslint/parser": 7.3.0 + "@typescript-eslint/eslint-plugin": 7.3.1 + "@typescript-eslint/parser": 7.3.1 downlevel-dts: "*" jest: 29.7.0 prettier: ^3.0.3 @@ -20000,11 +20000,11 @@ __metadata: "@types/react": "*" "@types/react-helmet": ^6.1.6 "@types/react-router-dom": ^5.3.3 - "@typescript-eslint/eslint-plugin": 7.3.0 - "@typescript-eslint/parser": 7.3.0 - "@typescript-eslint/rule-schema-to-typescript-types": 7.3.0 - "@typescript-eslint/types": 7.3.0 - "@typescript-eslint/website-eslint": 7.3.0 + "@typescript-eslint/eslint-plugin": 7.3.1 + "@typescript-eslint/parser": 7.3.1 + "@typescript-eslint/rule-schema-to-typescript-types": 7.3.1 + "@typescript-eslint/types": 7.3.1 + "@typescript-eslint/website-eslint": 7.3.1 clsx: ^2.0.0 copy-webpack-plugin: ^11.0.0 cross-fetch: "*"