From c2f6e66774a515bf95adf4c04f6fd359b1f43dc2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 16 Jul 2025 18:01:07 +0000 Subject: [PATCH 01/17] chore(deps): update dependency eslint to ~9.31.0 (#717) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f5d91d48..ed508f23 100644 --- a/package.json +++ b/package.json @@ -84,7 +84,7 @@ "chai": "^5.2.0", "env-cmd": "^10.1.0", "esbuild": "^0.25.1", - "eslint": "~9.27.0", + "eslint": "~9.31.0", "eslint-config-prettier": "^10.1.1", "eslint-plugin-eslint-comments": "^3.2.0", "eslint-plugin-jsdoc": "^50.6.9", From a394c034efdf6ac0d89566b67feae1e8889b4d84 Mon Sep 17 00:00:00 2001 From: Yosuke Ota Date: Thu, 31 Jul 2025 14:55:16 +0900 Subject: [PATCH 02/17] test: update fixtures (#731) --- explorer-v2/src/lib/ESLintEditor.svelte | 3 ++- .../parser/ast/svelte5/docs/runes/11-2-$inspect-ts-output.json | 2 +- .../parser/ast/svelte5/docs/runes/11-3-$inspect-ts-output.json | 2 +- tests/fixtures/parser/ast/ts-await-non-promise01-output.json | 2 +- tests/fixtures/parser/ast/ts-issue226-output.json | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/explorer-v2/src/lib/ESLintEditor.svelte b/explorer-v2/src/lib/ESLintEditor.svelte index cc440f2c..8537401c 100644 --- a/explorer-v2/src/lib/ESLintEditor.svelte +++ b/explorer-v2/src/lib/ESLintEditor.svelte @@ -3,6 +3,7 @@ import MonacoEditor from './MonacoEditor.svelte'; import { loadMonacoEditor } from './scripts/monaco-loader'; import { createEventDispatcher, onMount } from 'svelte'; + import { SvelteMap } from 'svelte/reactivity'; const dispatch = createEventDispatcher(); @@ -16,7 +17,7 @@ let leftMarkers = []; let rightMarkers = []; - let messageMap = new Map(); + let messageMap = new SvelteMap(); $: showApplyFix = fix && fixedValue !== code; $: { diff --git a/tests/fixtures/parser/ast/svelte5/docs/runes/11-2-$inspect-ts-output.json b/tests/fixtures/parser/ast/svelte5/docs/runes/11-2-$inspect-ts-output.json index 0b52ca4c..69669535 100644 --- a/tests/fixtures/parser/ast/svelte5/docs/runes/11-2-$inspect-ts-output.json +++ b/tests/fixtures/parser/ast/svelte5/docs/runes/11-2-$inspect-ts-output.json @@ -1188,7 +1188,7 @@ } }, { - "type": "Keyword", + "type": "Identifier", "value": "with", "range": [ 63, diff --git a/tests/fixtures/parser/ast/svelte5/docs/runes/11-3-$inspect-ts-output.json b/tests/fixtures/parser/ast/svelte5/docs/runes/11-3-$inspect-ts-output.json index 3a146be6..e247f41f 100644 --- a/tests/fixtures/parser/ast/svelte5/docs/runes/11-3-$inspect-ts-output.json +++ b/tests/fixtures/parser/ast/svelte5/docs/runes/11-3-$inspect-ts-output.json @@ -811,7 +811,7 @@ } }, { - "type": "Keyword", + "type": "Identifier", "value": "with", "range": [ 63, diff --git a/tests/fixtures/parser/ast/ts-await-non-promise01-output.json b/tests/fixtures/parser/ast/ts-await-non-promise01-output.json index 1600d867..3ff706ee 100644 --- a/tests/fixtures/parser/ast/ts-await-non-promise01-output.json +++ b/tests/fixtures/parser/ast/ts-await-non-promise01-output.json @@ -1347,7 +1347,7 @@ } }, { - "type": "Keyword", + "type": "Identifier", "value": "const", "range": [ 41, diff --git a/tests/fixtures/parser/ast/ts-issue226-output.json b/tests/fixtures/parser/ast/ts-issue226-output.json index f037ef8f..40511c22 100644 --- a/tests/fixtures/parser/ast/ts-issue226-output.json +++ b/tests/fixtures/parser/ast/ts-issue226-output.json @@ -2909,7 +2909,7 @@ } }, { - "type": "Keyword", + "type": "Identifier", "value": "catch", "range": [ 210, From ea590ab594b109020dc95caeb3603ed502a9e6c7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 31 Jul 2025 09:09:15 +0000 Subject: [PATCH 03/17] chore(deps): update dependency eslint to ~9.32.0 (#728) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ed508f23..60cc599b 100644 --- a/package.json +++ b/package.json @@ -84,7 +84,7 @@ "chai": "^5.2.0", "env-cmd": "^10.1.0", "esbuild": "^0.25.1", - "eslint": "~9.31.0", + "eslint": "~9.32.0", "eslint-config-prettier": "^10.1.1", "eslint-plugin-eslint-comments": "^3.2.0", "eslint-plugin-jsdoc": "^50.6.9", From 7e6df4e9cb7157a6d24bea20e9152c89577d959a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 31 Jul 2025 18:25:54 +0000 Subject: [PATCH 04/17] chore(deps): update dependency prettier to ~3.6.0 (#720) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 60cc599b..91eaa744 100644 --- a/package.json +++ b/package.json @@ -100,7 +100,7 @@ "locate-character": "^3.0.0", "magic-string": "^0.30.17", "mocha": "^11.1.0", - "prettier": "~3.5.3", + "prettier": "~3.6.0", "prettier-plugin-pkg": "^0.19.0", "prettier-plugin-svelte": "^3.3.3", "rimraf": "^6.0.1", From 1354fa06c9c6cbc6b9adec12ec1811828e2294f3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 1 Aug 2025 00:34:34 +0000 Subject: [PATCH 05/17] chore(deps): update dependency prettier-plugin-pkg to ^0.21.0 (#718) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 91eaa744..c96d79eb 100644 --- a/package.json +++ b/package.json @@ -101,7 +101,7 @@ "magic-string": "^0.30.17", "mocha": "^11.1.0", "prettier": "~3.6.0", - "prettier-plugin-pkg": "^0.19.0", + "prettier-plugin-pkg": "^0.21.0", "prettier-plugin-svelte": "^3.3.3", "rimraf": "^6.0.1", "semver": "^7.7.1", From b8f533474d4c0a204a232dfb9166ff75f68c12d5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 1 Aug 2025 06:48:26 +0000 Subject: [PATCH 06/17] chore(deps): update dependency typescript to ~5.9.0 (#733) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c96d79eb..9194dd35 100644 --- a/package.json +++ b/package.json @@ -108,7 +108,7 @@ "svelte": "^5.36.2", "svelte2tsx": "^0.7.35", "tsx": "^4.19.3", - "typescript": "~5.8.2", + "typescript": "~5.9.0", "typescript-eslint": "^8.28.0", "typescript-eslint-parser-for-extra-files": "^0.9.0" }, From 6395302638764a6e32c43754b2f25b98e4459b64 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 1 Aug 2025 10:53:54 +0000 Subject: [PATCH 07/17] fix(deps): update dependency vite-plugin-eslint4b to ^0.6.0 (#723) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- explorer-v2/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/explorer-v2/package.json b/explorer-v2/package.json index 74e4f661..8e6a127d 100644 --- a/explorer-v2/package.json +++ b/explorer-v2/package.json @@ -21,7 +21,7 @@ "svelte": "^5.2.12", "svelte-eslint-parser": "link:..", "tslib": "^2.8.1", - "vite-plugin-eslint4b": "^0.5.1" + "vite-plugin-eslint4b": "^0.6.0" }, "devDependencies": { "@sveltejs/adapter-static": "^3.0.6", From 68e581594bf1da4a740ab0348e4263e3e9066020 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 1 Aug 2025 16:39:43 +0000 Subject: [PATCH 08/17] chore(deps): update dependency @sveltejs/vite-plugin-svelte to v6 (#724) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- explorer-v2/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/explorer-v2/package.json b/explorer-v2/package.json index 8e6a127d..2db8eb7c 100644 --- a/explorer-v2/package.json +++ b/explorer-v2/package.json @@ -26,7 +26,7 @@ "devDependencies": { "@sveltejs/adapter-static": "^3.0.6", "@sveltejs/kit": "^2.9.0", - "@sveltejs/vite-plugin-svelte": "^5.0.1", + "@sveltejs/vite-plugin-svelte": "^6.0.0", "monaco-editor": "^0.52.0", "prettier": "^3.4.1", "prettier-plugin-svelte": "^3.3.2", From c5f1d24ff59c735cdfc57fed311a85c789cc7313 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 1 Aug 2025 22:05:42 +0000 Subject: [PATCH 09/17] chore(deps): update dependency eslint-plugin-jsdoc to v52 (#729) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 9194dd35..d2031d86 100644 --- a/package.json +++ b/package.json @@ -87,7 +87,7 @@ "eslint": "~9.32.0", "eslint-config-prettier": "^10.1.1", "eslint-plugin-eslint-comments": "^3.2.0", - "eslint-plugin-jsdoc": "^50.6.9", + "eslint-plugin-jsdoc": "^52.0.0", "eslint-plugin-json-schema-validator": "^5.3.1", "eslint-plugin-jsonc": "^2.20.0", "eslint-plugin-n": "^17.17.0", From 1350734793ad8cf86b660aa8e3337be3c48fb5d4 Mon Sep 17 00:00:00 2001 From: Yosuke Ota Date: Sat, 2 Aug 2025 09:21:02 +0900 Subject: [PATCH 10/17] fix: `$derived` argument expression to apply correct type information to `this` (#732) --- .changeset/light-carrots-pump.md | 5 ++ src/parser/typescript/analyze/index.ts | 53 ++++++++++++++----- .../$derived-within-class-input.svelte.ts | 5 ++ .../$derived-within-class-output.json | 1 + .../$derived-within-class-requirements.json | 5 ++ .../$derived-within-class-setup.ts | 33 ++++++++++++ 6 files changed, 88 insertions(+), 14 deletions(-) create mode 100644 .changeset/light-carrots-pump.md create mode 100644 tests/fixtures/integrations/type-info-tests/$derived-within-class-input.svelte.ts create mode 100644 tests/fixtures/integrations/type-info-tests/$derived-within-class-output.json create mode 100644 tests/fixtures/integrations/type-info-tests/$derived-within-class-requirements.json create mode 100644 tests/fixtures/integrations/type-info-tests/$derived-within-class-setup.ts diff --git a/.changeset/light-carrots-pump.md b/.changeset/light-carrots-pump.md new file mode 100644 index 00000000..2715a12e --- /dev/null +++ b/.changeset/light-carrots-pump.md @@ -0,0 +1,5 @@ +--- +"svelte-eslint-parser": patch +--- + +fix: `$derived` argument expression to apply correct type information to `this` diff --git a/src/parser/typescript/analyze/index.ts b/src/parser/typescript/analyze/index.ts index 4dde5837..ed13f0d7 100644 --- a/src/parser/typescript/analyze/index.ts +++ b/src/parser/typescript/analyze/index.ts @@ -946,17 +946,18 @@ function transformForReactiveStatement( } /** - * Transform for `$derived(expr)` to `$derived((()=>{ return fn(); function fn () { return expr } })())` + * Transform for `$derived(expr)` to `$derived((()=>{ type This = typeof this; return fn(); function fn (this: This) { return expr } })())` */ function transformForDollarDerived( derivedCall: TSESTree.CallExpression, ctx: VirtualTypeScriptContext, ) { const functionId = ctx.generateUniqueId("$derivedArgument"); + const thisTypeId = ctx.generateUniqueId("$This"); const expression = derivedCall.arguments[0]; ctx.appendOriginal(expression.range[0]); ctx.appendVirtualScript( - `(()=>{return ${functionId}();function ${functionId}(){return `, + `(()=>{type ${thisTypeId} = typeof this; return ${functionId}();function ${functionId}(this: ${thisTypeId}){return `, ); ctx.appendOriginal(expression.range[1]); ctx.appendVirtualScript(`}})()`); @@ -977,21 +978,40 @@ function transformForDollarDerived( arg.arguments.length !== 0 || arg.callee.type !== "ArrowFunctionExpression" || arg.callee.body.type !== "BlockStatement" || - arg.callee.body.body.length !== 2 || - arg.callee.body.body[0].type !== "ReturnStatement" || - arg.callee.body.body[0].argument?.type !== "CallExpression" || - arg.callee.body.body[0].argument.callee.type !== "Identifier" || - arg.callee.body.body[0].argument.callee.name !== functionId || - arg.callee.body.body[1].type !== "FunctionDeclaration" || - arg.callee.body.body[1].id.name !== functionId + arg.callee.body.body.length !== 3 ) { return false; } - const fnNode = arg.callee.body.body[1]; + const thisTypeNode = arg.callee.body.body[0]; if ( + thisTypeNode.type !== "TSTypeAliasDeclaration" || + thisTypeNode.id.name !== thisTypeId + ) { + return false; + } + const returnNode = arg.callee.body.body[1]; + if ( + returnNode.type !== "ReturnStatement" || + returnNode.argument?.type !== "CallExpression" || + returnNode.argument.callee.type !== "Identifier" || + returnNode.argument.callee.name !== functionId + ) { + return false; + } + + const fnNode = arg.callee.body.body[2]; + if ( + fnNode.type !== "FunctionDeclaration" || + fnNode.id.name !== functionId || fnNode.body.body.length !== 1 || fnNode.body.body[0].type !== "ReturnStatement" || - !fnNode.body.body[0].argument + !fnNode.body.body[0].argument || + fnNode.params[0]?.type !== "Identifier" || + !fnNode.params[0].typeAnnotation || + fnNode.params[0].typeAnnotation.typeAnnotation.type !== + "TSTypeReference" || + fnNode.params[0].typeAnnotation.typeAnnotation.typeName.type !== + "Identifier" ) { return false; } @@ -1002,11 +1022,16 @@ function transformForDollarDerived( expr.parent = node; const scopeManager = result.scopeManager as ScopeManager; - removeFunctionScope(arg.callee.body.body[1], scopeManager); + const fnScope = scopeManager.acquire(fnNode)!; + removeIdentifierVariable(fnNode.params[0], fnScope); removeIdentifierReference( - arg.callee.body.body[0].argument.callee, - scopeManager.acquire(arg.callee)!, + fnNode.params[0].typeAnnotation.typeAnnotation.typeName, + fnScope, ); + removeFunctionScope(fnNode, scopeManager); + const scope = scopeManager.acquire(arg.callee)!; + removeIdentifierVariable(thisTypeNode.id, scope); + removeIdentifierReference(returnNode.argument.callee, scope); removeFunctionScope(arg.callee, scopeManager); return true; }, diff --git a/tests/fixtures/integrations/type-info-tests/$derived-within-class-input.svelte.ts b/tests/fixtures/integrations/type-info-tests/$derived-within-class-input.svelte.ts new file mode 100644 index 00000000..ff8e8c03 --- /dev/null +++ b/tests/fixtures/integrations/type-info-tests/$derived-within-class-input.svelte.ts @@ -0,0 +1,5 @@ +export class Product { + x = $state(1) + y = $state(2) + result = $derived(this.x * this.y) +} \ No newline at end of file diff --git a/tests/fixtures/integrations/type-info-tests/$derived-within-class-output.json b/tests/fixtures/integrations/type-info-tests/$derived-within-class-output.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/tests/fixtures/integrations/type-info-tests/$derived-within-class-output.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/tests/fixtures/integrations/type-info-tests/$derived-within-class-requirements.json b/tests/fixtures/integrations/type-info-tests/$derived-within-class-requirements.json new file mode 100644 index 00000000..809a4e1f --- /dev/null +++ b/tests/fixtures/integrations/type-info-tests/$derived-within-class-requirements.json @@ -0,0 +1,5 @@ +{ + "parse": { + "svelte": ">=5.0.0-0" + } +} \ No newline at end of file diff --git a/tests/fixtures/integrations/type-info-tests/$derived-within-class-setup.ts b/tests/fixtures/integrations/type-info-tests/$derived-within-class-setup.ts new file mode 100644 index 00000000..af932ff3 --- /dev/null +++ b/tests/fixtures/integrations/type-info-tests/$derived-within-class-setup.ts @@ -0,0 +1,33 @@ +import type { Linter } from "eslint"; +import { generateParserOptions } from "../../../src/parser/test-utils.js"; +import { plugin } from "typescript-eslint"; +import * as parser from "../../../../src/index.js"; +import globals from "globals"; + +export function getConfig(): Linter.Config { + return { + plugins: { + "@typescript-eslint": { + rules: plugin.rules as any, + }, + }, + languageOptions: { + parser, + parserOptions: { + ...generateParserOptions(), + svelteFeatures: { runes: true }, + }, + globals: { + ...globals.browser, + ...globals.es2021, + }, + }, + rules: { + "@typescript-eslint/no-unsafe-argument": "error", + "@typescript-eslint/no-unsafe-assignment": "error", + "@typescript-eslint/no-unsafe-call": "error", + "@typescript-eslint/no-unsafe-member-access": "error", + "@typescript-eslint/no-unsafe-return": "error", + }, + }; +} From b5def76455b178e1229dc5d97453308e5b3222bd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 2 Aug 2025 09:21:17 +0900 Subject: [PATCH 11/17] chore(deps): update dependency vite to v7 (#721) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- explorer-v2/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/explorer-v2/package.json b/explorer-v2/package.json index 2db8eb7c..d961b3af 100644 --- a/explorer-v2/package.json +++ b/explorer-v2/package.json @@ -32,7 +32,7 @@ "prettier-plugin-svelte": "^3.3.2", "string-replace-loader": "^3.1.0", "typescript": "^5.7.2", - "vite": "^6.0.1", + "vite": "^7.0.0", "webpack": "^5.96.1", "webpack-cli": "^6.0.0", "wrapper-webpack-plugin": "^2.2.2" From c9839a1cea31ade43d625255d400bacc3250c3c0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Aug 2025 09:24:24 +0900 Subject: [PATCH 12/17] chore: release svelte-eslint-parser (#734) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .changeset/light-carrots-pump.md | 5 ----- CHANGELOG.md | 6 ++++++ package.json | 2 +- src/meta.ts | 2 +- 4 files changed, 8 insertions(+), 7 deletions(-) delete mode 100644 .changeset/light-carrots-pump.md diff --git a/.changeset/light-carrots-pump.md b/.changeset/light-carrots-pump.md deleted file mode 100644 index 2715a12e..00000000 --- a/.changeset/light-carrots-pump.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"svelte-eslint-parser": patch ---- - -fix: `$derived` argument expression to apply correct type information to `this` diff --git a/CHANGELOG.md b/CHANGELOG.md index ce969872..21cad427 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # svelte-eslint-parser +## 1.3.1 + +### Patch Changes + +- [#732](https://github.com/sveltejs/svelte-eslint-parser/pull/732) [`1350734`](https://github.com/sveltejs/svelte-eslint-parser/commit/1350734793ad8cf86b660aa8e3337be3c48fb5d4) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: `$derived` argument expression to apply correct type information to `this` + ## 1.3.0 ### Minor Changes diff --git a/package.json b/package.json index d2031d86..89ed88fb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "svelte-eslint-parser", - "version": "1.3.0", + "version": "1.3.1", "type": "module", "description": "Svelte parser for ESLint", "repository": "git+https://github.com/sveltejs/svelte-eslint-parser.git", diff --git a/src/meta.ts b/src/meta.ts index 3a3f5c18..023b70e8 100644 --- a/src/meta.ts +++ b/src/meta.ts @@ -2,4 +2,4 @@ // This file has been automatically generated, // in order to update its content execute "pnpm run build:meta" export const name = "svelte-eslint-parser" as const; -export const version = "1.3.0" as const; +export const version = "1.3.1" as const; From 932742be2f984f36e2ec9898ee7b38e78768bbb0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 5 Aug 2025 08:33:08 +0000 Subject: [PATCH 13/17] chore(deps): update dependency @ota-meshi/eslint-plugin to ^0.18.0 (#735) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 89ed88fb..22a1609d 100644 --- a/package.json +++ b/package.json @@ -66,7 +66,7 @@ "@changesets/changelog-github": "^0.5.1", "@changesets/cli": "^2.28.1", "@changesets/get-release-plan": "^4.0.8", - "@ota-meshi/eslint-plugin": "^0.17.6", + "@ota-meshi/eslint-plugin": "^0.18.0", "@ota-meshi/test-snapshot": "^1.1.0", "@types/benchmark": "^2.1.5", "@types/chai": "^5.2.1", From 6fbed20a20543f543ffbae7bca5e137b4ae229dd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 6 Aug 2025 19:01:12 +0900 Subject: [PATCH 14/17] chore(deps): update actions/download-artifact action to v5 (#736) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/pkg.pr.new-comment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pkg.pr.new-comment.yml b/.github/workflows/pkg.pr.new-comment.yml index 788908ef..5724d648 100644 --- a/.github/workflows/pkg.pr.new-comment.yml +++ b/.github/workflows/pkg.pr.new-comment.yml @@ -18,7 +18,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Download artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: output github-token: ${{ secrets.GITHUB_TOKEN }} From 09cbad896ae45e554e994e860b9eaa463eb9f641 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 9 Aug 2025 00:33:27 +0000 Subject: [PATCH 15/17] chore(deps): update dependency eslint to ~9.33.0 (#737) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 22a1609d..b6848bc8 100644 --- a/package.json +++ b/package.json @@ -84,7 +84,7 @@ "chai": "^5.2.0", "env-cmd": "^10.1.0", "esbuild": "^0.25.1", - "eslint": "~9.32.0", + "eslint": "~9.33.0", "eslint-config-prettier": "^10.1.1", "eslint-plugin-eslint-comments": "^3.2.0", "eslint-plugin-jsdoc": "^52.0.0", From 3acabb2a4ac5b210c677a5497711945a98f32c06 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 01:12:25 +0000 Subject: [PATCH 16/17] chore(deps): update dependency eslint-plugin-jsdoc to v53 (#739) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b6848bc8..57782014 100644 --- a/package.json +++ b/package.json @@ -87,7 +87,7 @@ "eslint": "~9.33.0", "eslint-config-prettier": "^10.1.1", "eslint-plugin-eslint-comments": "^3.2.0", - "eslint-plugin-jsdoc": "^52.0.0", + "eslint-plugin-jsdoc": "^53.0.0", "eslint-plugin-json-schema-validator": "^5.3.1", "eslint-plugin-jsonc": "^2.20.0", "eslint-plugin-n": "^17.17.0", From 1a729e5b9285d621e17223bf835ad741c7339a0e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 13 Aug 2025 07:03:46 +0000 Subject: [PATCH 17/17] chore(deps): update dependency eslint-plugin-jsdoc to v54 (#740) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 57782014..2898778e 100644 --- a/package.json +++ b/package.json @@ -87,7 +87,7 @@ "eslint": "~9.33.0", "eslint-config-prettier": "^10.1.1", "eslint-plugin-eslint-comments": "^3.2.0", - "eslint-plugin-jsdoc": "^53.0.0", + "eslint-plugin-jsdoc": "^54.0.0", "eslint-plugin-json-schema-validator": "^5.3.1", "eslint-plugin-jsonc": "^2.20.0", "eslint-plugin-n": "^17.17.0",