fix(deps): update [frontend] update dependencies (#15489)

* fix(deps): update [frontend] update dependencies

* fix type error

* fix

* Revert "fix"

This reverts commit de27d254f4.

* fix version

* attempt to fix test

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: おさむのひと <46447427+samunohito@users.noreply.github.com>
Co-authored-by: kakkokari-gtyih <67428053+kakkokari-gtyih@users.noreply.github.com>
This commit is contained in:
renovate[bot] 2025-02-15 14:54:45 +09:00 committed by GitHub
parent 57e86fe609
commit 280f465769
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 1073 additions and 924 deletions

View File

@ -25,16 +25,16 @@
"misskey-js": "workspace:*", "misskey-js": "workspace:*",
"frontend-shared": "workspace:*", "frontend-shared": "workspace:*",
"punycode.js": "2.3.1", "punycode.js": "2.3.1",
"rollup": "4.31.0", "rollup": "4.34.7",
"sass": "1.83.4", "sass": "1.85.0",
"shiki": "1.27.2", "shiki": "1.29.2",
"tinycolor2": "1.6.0", "tinycolor2": "1.6.0",
"tsc-alias": "1.8.10", "tsc-alias": "1.8.10",
"tsconfig-paths": "4.2.0", "tsconfig-paths": "4.2.0",
"typescript": "5.7.3", "typescript": "5.7.3",
"uuid": "10.0.0", "uuid": "10.0.0",
"json5": "2.2.3", "json5": "2.2.3",
"vite": "6.0.9", "vite": "6.1.0",
"vue": "3.5.13" "vue": "3.5.13"
}, },
"devDependencies": { "devDependencies": {
@ -42,26 +42,26 @@
"@testing-library/vue": "8.1.0", "@testing-library/vue": "8.1.0",
"@types/estree": "1.0.6", "@types/estree": "1.0.6",
"@types/micromatch": "4.0.9", "@types/micromatch": "4.0.9",
"@types/node": "22.10.7", "@types/node": "22.13.4",
"@types/punycode.js": "npm:@types/punycode@2.1.4", "@types/punycode.js": "npm:@types/punycode@2.1.4",
"@types/tinycolor2": "1.4.6", "@types/tinycolor2": "1.4.6",
"@types/uuid": "10.0.0", "@types/uuid": "10.0.0",
"@types/ws": "8.5.13", "@types/ws": "8.5.14",
"@typescript-eslint/eslint-plugin": "8.20.0", "@typescript-eslint/eslint-plugin": "8.24.0",
"@typescript-eslint/parser": "8.20.0", "@typescript-eslint/parser": "8.24.0",
"@vitest/coverage-v8": "1.6.0", "@vitest/coverage-v8": "1.6.1",
"@vue/runtime-core": "3.5.13", "@vue/runtime-core": "3.5.13",
"acorn": "8.14.0", "acorn": "8.14.0",
"cross-env": "7.0.3", "cross-env": "7.0.3",
"eslint-plugin-import": "2.31.0", "eslint-plugin-import": "2.31.0",
"eslint-plugin-vue": "9.32.0", "eslint-plugin-vue": "9.32.0",
"fast-glob": "3.3.3", "fast-glob": "3.3.3",
"happy-dom": "16.6.0", "happy-dom": "16.8.1",
"intersection-observer": "0.12.2", "intersection-observer": "0.12.2",
"micromatch": "4.0.8", "micromatch": "4.0.8",
"msw": "2.7.0", "msw": "2.7.0",
"nodemon": "3.1.9", "nodemon": "3.1.9",
"prettier": "3.4.2", "prettier": "3.5.1",
"start-server-and-test": "2.0.10", "start-server-and-test": "2.0.10",
"vite-plugin-turbosnap": "1.0.3", "vite-plugin-turbosnap": "1.0.3",
"vue-component-type-helpers": "2.2.0", "vue-component-type-helpers": "2.2.0",

View File

@ -12,7 +12,7 @@ export type UnicodeEmojiDef = {
}; };
// initial converted from https://github.com/muan/emojilib/commit/242fe68be86ed6536843b83f7e32f376468b38fb // initial converted from https://github.com/muan/emojilib/commit/242fe68be86ed6536843b83f7e32f376468b38fb
import _emojilist from './emojilist.json'; import _emojilist from './emojilist.json' with { type: 'json' };
export const emojilist: UnicodeEmojiDef[] = _emojilist.map(x => ({ export const emojilist: UnicodeEmojiDef[] = _emojilist.map(x => ({
name: x[1] as string, name: x[1] as string,

View File

@ -21,13 +21,13 @@
"lint": "pnpm typecheck && pnpm eslint" "lint": "pnpm typecheck && pnpm eslint"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "22.9.0", "@types/node": "22.13.4",
"@typescript-eslint/eslint-plugin": "7.17.0", "@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.17.0", "@typescript-eslint/parser": "7.18.0",
"esbuild": "0.25.0", "esbuild": "0.25.0",
"eslint-plugin-vue": "9.31.0", "eslint-plugin-vue": "9.32.0",
"nodemon": "3.1.7", "nodemon": "3.1.9",
"typescript": "5.6.3", "typescript": "5.7.3",
"vue-eslint-parser": "9.4.3" "vue-eslint-parser": "9.4.3"
}, },
"files": [ "files": [
@ -35,6 +35,6 @@
], ],
"dependencies": { "dependencies": {
"misskey-js": "workspace:*", "misskey-js": "workspace:*",
"vue": "3.5.12" "vue": "3.5.13"
} }
} }

View File

@ -38,7 +38,7 @@
"chartjs-chart-matrix": "2.0.1", "chartjs-chart-matrix": "2.0.1",
"chartjs-plugin-gradient": "0.6.1", "chartjs-plugin-gradient": "0.6.1",
"chartjs-plugin-zoom": "2.2.0", "chartjs-plugin-zoom": "2.2.0",
"chromatic": "11.25.0", "chromatic": "11.25.2",
"compare-versions": "6.1.1", "compare-versions": "6.1.1",
"cropperjs": "2.0.0-rc.2", "cropperjs": "2.0.0-rc.2",
"date-fns": "2.30.0", "date-fns": "2.30.0",
@ -49,20 +49,20 @@
"insert-text-at-cursor": "0.3.0", "insert-text-at-cursor": "0.3.0",
"is-file-animated": "1.0.2", "is-file-animated": "1.0.2",
"json5": "2.2.3", "json5": "2.2.3",
"matter-js": "0.19.0", "matter-js": "0.20.0",
"mfm-js": "0.24.0", "mfm-js": "0.24.0",
"misskey-bubble-game": "workspace:*", "misskey-bubble-game": "workspace:*",
"misskey-js": "workspace:*", "misskey-js": "workspace:*",
"misskey-reversi": "workspace:*", "misskey-reversi": "workspace:*",
"photoswipe": "5.4.4", "photoswipe": "5.4.4",
"punycode.js": "2.3.1", "punycode.js": "2.3.1",
"rollup": "4.31.0", "rollup": "4.34.7",
"sanitize-html": "2.14.0", "sanitize-html": "2.14.0",
"sass": "1.83.4", "sass": "1.85.0",
"shiki": "1.27.2", "shiki": "1.29.2",
"strict-event-emitter-types": "2.0.0", "strict-event-emitter-types": "2.0.0",
"textarea-caret": "3.1.0", "textarea-caret": "3.1.0",
"three": "0.172.0", "three": "0.173.0",
"throttle-debounce": "5.0.2", "throttle-debounce": "5.0.2",
"tinycolor2": "1.6.0", "tinycolor2": "1.6.0",
"tsc-alias": "1.8.10", "tsc-alias": "1.8.10",
@ -70,69 +70,69 @@
"typescript": "5.7.3", "typescript": "5.7.3",
"uuid": "11.0.5", "uuid": "11.0.5",
"v-code-diff": "1.13.1", "v-code-diff": "1.13.1",
"vite": "6.0.9", "vite": "6.1.0",
"vue": "3.5.13", "vue": "3.5.13",
"vuedraggable": "next" "vuedraggable": "next"
}, },
"devDependencies": { "devDependencies": {
"@misskey-dev/summaly": "5.2.0", "@misskey-dev/summaly": "5.2.0",
"@storybook/addon-actions": "8.5.0", "@storybook/addon-actions": "8.5.6",
"@storybook/addon-essentials": "8.5.0", "@storybook/addon-essentials": "8.5.6",
"@storybook/addon-interactions": "8.5.0", "@storybook/addon-interactions": "8.5.6",
"@storybook/addon-links": "8.5.0", "@storybook/addon-links": "8.5.6",
"@storybook/addon-mdx-gfm": "8.5.0", "@storybook/addon-mdx-gfm": "8.5.6",
"@storybook/addon-storysource": "8.5.0", "@storybook/addon-storysource": "8.5.6",
"@storybook/blocks": "8.5.0", "@storybook/blocks": "8.5.6",
"@storybook/components": "8.5.0", "@storybook/components": "8.5.6",
"@storybook/core-events": "8.5.0", "@storybook/core-events": "8.5.6",
"@storybook/manager-api": "8.5.0", "@storybook/manager-api": "8.5.6",
"@storybook/preview-api": "8.5.0", "@storybook/preview-api": "8.5.6",
"@storybook/react": "8.5.0", "@storybook/react": "8.5.6",
"@storybook/react-vite": "8.5.0", "@storybook/react-vite": "8.5.6",
"@storybook/test": "8.5.0", "@storybook/test": "8.5.6",
"@storybook/theming": "8.5.0", "@storybook/theming": "8.5.6",
"@storybook/types": "8.5.0", "@storybook/types": "8.5.6",
"@storybook/vue3": "8.5.0", "@storybook/vue3": "8.5.6",
"@storybook/vue3-vite": "8.5.0", "@storybook/vue3-vite": "8.5.6",
"@testing-library/vue": "8.1.0", "@testing-library/vue": "8.1.0",
"@types/canvas-confetti": "1.6.4", "@types/canvas-confetti": "1.9.0",
"@types/estree": "1.0.6", "@types/estree": "1.0.6",
"@types/matter-js": "0.19.7", "@types/matter-js": "0.19.8",
"@types/micromatch": "4.0.9", "@types/micromatch": "4.0.9",
"@types/node": "22.10.7", "@types/node": "22.13.4",
"@types/punycode.js": "npm:@types/punycode@2.1.4", "@types/punycode.js": "npm:@types/punycode@2.1.4",
"@types/sanitize-html": "2.13.0", "@types/sanitize-html": "2.13.0",
"@types/seedrandom": "3.0.8", "@types/seedrandom": "3.0.8",
"@types/throttle-debounce": "5.0.2", "@types/throttle-debounce": "5.0.2",
"@types/tinycolor2": "1.4.6", "@types/tinycolor2": "1.4.6",
"@types/uuid": "10.0.0", "@types/uuid": "10.0.0",
"@types/ws": "8.5.13", "@types/ws": "8.5.14",
"@typescript-eslint/eslint-plugin": "8.20.0", "@typescript-eslint/eslint-plugin": "8.24.0",
"@typescript-eslint/parser": "8.20.0", "@typescript-eslint/parser": "8.24.0",
"@vitest/coverage-v8": "1.6.0", "@vitest/coverage-v8": "1.6.1",
"@vue/runtime-core": "3.5.13", "@vue/runtime-core": "3.5.13",
"acorn": "8.14.0", "acorn": "8.14.0",
"cross-env": "7.0.3", "cross-env": "7.0.3",
"cypress": "14.0.0", "cypress": "14.0.3",
"eslint-plugin-import": "2.31.0", "eslint-plugin-import": "2.31.0",
"eslint-plugin-vue": "9.32.0", "eslint-plugin-vue": "9.32.0",
"fast-glob": "3.3.3", "fast-glob": "3.3.3",
"happy-dom": "16.6.0", "happy-dom": "16.8.1",
"intersection-observer": "0.12.2", "intersection-observer": "0.12.2",
"micromatch": "4.0.8", "micromatch": "4.0.8",
"msw": "2.7.0", "msw": "2.7.0",
"msw-storybook-addon": "2.0.4", "msw-storybook-addon": "2.0.4",
"nodemon": "3.1.9", "nodemon": "3.1.9",
"prettier": "3.4.2", "prettier": "3.5.1",
"react": "18.3.1", "react": "18.3.1",
"react-dom": "18.3.1", "react-dom": "18.3.1",
"seedrandom": "3.0.5", "seedrandom": "3.0.5",
"start-server-and-test": "2.0.10", "start-server-and-test": "2.0.10",
"storybook": "8.5.0", "storybook": "8.5.6",
"storybook-addon-misskey-theme": "github:misskey-dev/storybook-addon-misskey-theme", "storybook-addon-misskey-theme": "github:misskey-dev/storybook-addon-misskey-theme",
"vite-plugin-turbosnap": "1.0.3", "vite-plugin-turbosnap": "1.0.3",
"vitest": "1.6.1", "vitest": "1.6.1",
"vitest-fetch-mock": "0.2.2", "vitest-fetch-mock": "0.4.3",
"vue-component-type-helpers": "2.2.0", "vue-component-type-helpers": "2.2.0",
"vue-eslint-parser": "9.4.3", "vue-eslint-parser": "9.4.3",
"vue-tsc": "2.2.0" "vue-tsc": "2.2.0"

View File

@ -24,7 +24,10 @@ describe('MkUrlPreview', () => {
}; };
} }
fetchMock.mockOnceIf(/^\/url?/, () => { fetchMock.mockOnceIf((req) => {
const url = new URL(req.url);
return url.pathname === '/url';
}, () => {
return { return {
status: 200, status: 200,
body: JSON.stringify(summary), body: JSON.stringify(summary),

View File

@ -22,11 +22,11 @@
"lint": "pnpm typecheck && pnpm eslint" "lint": "pnpm typecheck && pnpm eslint"
}, },
"devDependencies": { "devDependencies": {
"@types/matter-js": "0.19.7", "@types/matter-js": "0.19.8",
"@types/seedrandom": "3.0.8", "@types/seedrandom": "3.0.8",
"@types/node": "22.10.7", "@types/node": "22.13.4",
"@typescript-eslint/eslint-plugin": "8.20.0", "@typescript-eslint/eslint-plugin": "8.24.0",
"@typescript-eslint/parser": "8.20.0", "@typescript-eslint/parser": "8.24.0",
"nodemon": "3.1.9", "nodemon": "3.1.9",
"execa": "8.0.1", "execa": "8.0.1",
"typescript": "5.7.3", "typescript": "5.7.3",
@ -38,7 +38,7 @@
], ],
"dependencies": { "dependencies": {
"eventemitter3": "5.0.1", "eventemitter3": "5.0.1",
"matter-js": "0.19.0", "matter-js": "0.20.0",
"seedrandom": "3.0.5" "seedrandom": "3.0.5"
} }
} }

View File

@ -22,9 +22,9 @@
"lint": "pnpm typecheck && pnpm eslint" "lint": "pnpm typecheck && pnpm eslint"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "22.10.7", "@types/node": "22.13.4",
"@typescript-eslint/eslint-plugin": "8.20.0", "@typescript-eslint/eslint-plugin": "8.24.0",
"@typescript-eslint/parser": "8.20.0", "@typescript-eslint/parser": "8.24.0",
"execa": "8.0.1", "execa": "8.0.1",
"nodemon": "3.1.9", "nodemon": "3.1.9",
"typescript": "5.7.3", "typescript": "5.7.3",

View File

@ -14,8 +14,8 @@
"misskey-js": "workspace:*" "misskey-js": "workspace:*"
}, },
"devDependencies": { "devDependencies": {
"@typescript-eslint/parser": "8.20.0", "@typescript-eslint/parser": "8.24.0",
"@typescript/lib-webworker": "npm:@types/serviceworker@0.0.67", "@typescript/lib-webworker": "npm:@types/serviceworker@0.0.74",
"eslint-plugin-import": "2.31.0", "eslint-plugin-import": "2.31.0",
"nodemon": "3.1.9", "nodemon": "3.1.9",
"typescript": "5.7.3" "typescript": "5.7.3"

File diff suppressed because it is too large Load Diff

View File

@ -12,6 +12,10 @@
"dependencyDashboardAutoclose": true, "dependencyDashboardAutoclose": true,
"osvVulnerabilityAlerts": true, "osvVulnerabilityAlerts": true,
"dependencyDashboardOSVVulnerabilitySummary": "unresolved", "dependencyDashboardOSVVulnerabilitySummary": "unresolved",
"ignoreDeps": [
// https://github.com/misskey-dev/misskey/pull/15489#issuecomment-2660717458
"@typescript/lib-webworker"
],
"packageRules": [ "packageRules": [
{ {
"groupName": "[Backend] Update dependencies", "groupName": "[Backend] Update dependencies",