-
Notifications
You must be signed in to change notification settings - Fork 0
build(deps-dev): update dependency vitest to v5 #245
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -51,7 +51,7 @@ | |
| "typescript": "6.0.3", | ||
| "typescript-eslint": "8.68.0", | ||
| "vite": "8.2.2", | ||
| "vitest": "4.1.11" | ||
| "vitest": "5.0.1" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Note 📦 Dependency vitest 5 系の主な破壊的変更と本リポジトリへの影響の整理です。実害は見当たりません。
セキュリティ面では なお vitest 5.0.x には未解決のリグレッション報告が残っています (例: vitest-dev/vitest#11310 |
||
| }, | ||
| "engines": { | ||
| "node": ">=22.22" | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tip
📦 Dependency 🧪 Test
参考情報として、vitest 5.0.1時点で未修正の既知issueを挙げておきます。いずれも緊急度は低く、このPRのマージを妨げるものではありません。
toContainEqual/toHaveProperty/toBeOneOfなどでiterableEqualityが適用されず、Map/Setが常に等価と判定される。5.0.1で再現、修正PR準備中。現状これらのマッチャは未使用なので影響はありません。fsModuleCache: trueでブランチ切替後にstale transformが返りCannot find moduleになる。また、v5ではjson/junitレポータの出力先が
.vitest/配下に統一されています。今はレポータ設定がないため影響ありませんが、将来導入する場合は.gitignoreへの追加が必要になります。