Fix critical Dependabot alerts: handlebars & form-data - #19
Merged
Conversation
Resolve two critical Dependabot alerts for transitive deps in server/: - handlebars 4.7.8 -> 4.7.9 (CVE-2026-33937, AST type-confusion RCE), pulled in via ts-jest. - form-data 2.3.3 -> 2.5.6 (CVE-2025-7783, predictable multipart boundary), pulled in via @kubernetes/client-node -> request. Scoped to that chain so the already-patched form-data@4.0.4 used elsewhere is left untouched. Applied via yarn resolutions. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
wildgeodude
approved these changes
Jul 24, 2026
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.
Resolves two critical Dependabot alerts for transitive dependencies in
server/.compile()ts-jest(dev)Math.random()@kubernetes/client-node→request(runtime)Approach
Both are transitive deps, so they're fixed via a
resolutionsblock inserver/package.json:requestchain only. Another copy (form-data@4.0.4) was already on the patched 4.x line and is used by other packages — a global resolution would have downgraded those, so this leaves them untouched.Verification
yarn installclean.nest buildpasses.handlebars@4.7.9, rootform-data@4.0.4, nestedrequest/form-data@2.5.6— no vulnerable versions remain.🤖 Generated with Claude Code