chore(deps): high 취약점 6건 해소 (nodemailer/vite/wrangler/ws/undici) - #67
Merged
Conversation
bun audit --audit-level=high 로 걸리던 6개 high 취약점 정리: - nodemailer ^8.0.7 → ^9.0.3 (raw 옵션 파일읽기/SSRF, GHSA-p6gq-j5cr-w38f) - vite ^8.0.12 → ^8.1.2 (server.fs.deny 우회, GHSA-fx2h-pf6j-xcff) - wrangler ^4.90.0 → ^4.106.0 (miniflare 경유 undici → 7.28.0 패치) - overrides.ws ^8.21.0 (miniflare / @libsql 경유 전이 ws DoS, GHSA-96hv-2xvq-fx4p) 검증: bun audit high 0건, prettier+eslint clean, svelte-check 0 errors, vite build(cloudflare) 성공. nodemailer 사용부는 createTransport/sendMail 뿐이라 9.x major 영향 없음(raw 옵션 미사용). Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
배경
CI의
Lint, Type Check & Build잡이bun audit --audit-level=high스텝에서 high 취약점 6건으로 실패하고 있었습니다(#63 등main대상 PR들이 공통으로 이 게이트에 막힘). 이 PR은 해당 취약점을 정리해 게이트를 통과시킵니다.변경
nodemailer^8.0.7→^9.0.3(direct)vite^8.0.12→^8.1.2(direct)server.fs.deny우회(Windows) — GHSA-fx2h-pf6j-xcffwrangler^4.90.0→^4.106.0(direct)undici→ 7.28.0 패치 (TLS 검증 우회 등 3건)overrides.ws^8.21.0신규ws메모리 고갈 DoS — GHSA-96hv-2xvq-fx4pundici는wrangler업으로 전이 해소되어 별도 override 불필요.ws는 miniflare·@libsql/hrana 양쪽에 전이 고정돼 있어overrides로 일괄 상향(모두 8.x major 내라 안전).검증
bun audit --audit-level=high→ high 0건 (ws→8.21.0, undici→7.28.0)prettier --check+eslintcleansvelte-check→ 1127 files, 0 errors / 0 warningsvite build(adapter-cloudflare) 성공nodemailer 사용부(
src/lib/server/email.ts)는createTransport/sendMail/close뿐이며 문제의raw옵션을 쓰지 않아 9.x major 업 영향 없음.후속
머지 후 #63(prettier bump)·#66(다중 DB 지원) 등을 rebase 하면 audit 게이트를 통과합니다.
🤖 Generated with Claude Code