chore(deps): fix dependabot security alerts#244
Merged
michaeljymsgutierrez merged 1 commit intoJun 30, 2026
Conversation
…orm-data and markdown-it
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
michaeljymsgutierrez
added a commit
that referenced
this pull request
Jun 30, 2026
- [c099dd9][michaeljymsgutierrez]: Updated release version from v2.9.0 to v2.9.1 - 2026-07-01 02:27:36 - [9ca0c99][Chael Gutierrez]: fix(deploy): rename release branch prefix to releases to avoid ref collision (#245) - 2026-07-01 02:26:00 - [f823754][Chael Gutierrez]: chore(deps): fix dependabot security alerts - upgrade vite, vitest, form-data and markdown-it (#244) - 2026-07-01 01:55:56 - [2fcec47][Chael Gutierrez]: chore(deploy): add pre-flight checks, dry-run mode, canary sync, path safety and fail-fast (#243) - 2026-07-01 01:36:47 - [8cf2be1][Chael Gutierrez]: test(units): improve test structure and expand coverage across all unit modules (#242) - 2026-07-01 00:38:33 - [81e929f][Chael Gutierrez]: docs(contributing): add branch purposes, flow diagram, and toc updates (#241) - 2026-06-29 02:27:20 - [9e02459][Chael Gutierrez]: docs(contributing): add CONTRIBUTING.md and link from README (#240) - 2026-06-29 02:07:47 - [b8e9297][Chael Gutierrez]: chore(deps): upgrade production dependencies (#239) - 2026-06-24 02:57:14
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.
Description
Fixes open Dependabot security alerts by upgrading vulnerable direct and transitive dependencies. Adds a
resolutionsfield topackages/package.jsonto force safe versions of transitive packages (form-data,markdown-it) without adding them as direct dependencies. Usesresolutions.viteto resolve a yarn 1.x peer dependency hoisting conflict introduced by thevitest@4.1.0upgrade. Theesbuildalert (LOW severity, Windows-only) is intentionally excluded - its fix version (0.28.x) is a semver-breaking change andvitedeclares a peer on^0.27.0, so forcing it risks breaking the build toolchain.Github Issue: N/A
Changes
packages/package.json- upgradedvitefrom^7.3.1to^7.3.5(fixes HIGH severity CVE: dev server allows bypassing of server.fs.deny via encoded path)packages/package.json- upgradedvitestfrom^4.0.18to^4.1.0(fixes CRITICAL severity CVE: allows arbitrary remote code execution via crafted test file)packages/package.json- addedresolutions.vite: "7.3.5"to resolve yarn 1.x peer dependency hoisting conflict betweenvitest@4.1.0andvitepackages/package.json- addedresolutions.form-data: "4.0.6"to pin transitive dep (fixes HIGH severity CVE: allows reading files outside intended directory)packages/package.json- addedresolutions.markdown-it: "14.2.0"to pin transitive dep (fixes MEDIUM severity CVE: ReDoS via crafted input)packages/yarn.lock- updated to reflect resolved versions:vite@7.3.5,vitest@4.1.9,form-data@4.0.6,markdown-it@14.2.0Screenshots/Images
N/A
How Has This Been Tested?
yarn test)yarn installcompletes cleanly withresolutionsapplied - no peer dependency errorsyarn.lock:form-data@4.0.6,markdown-it@14.2.0,vite@7.3.5,vitest@4.1.9Checklist
Reviewer Guidance
packages/package.jsonandpackages/yarn.lockare modified - no source or test changesform-dataandmarkdown-itare NOT added as direct dependencies - they are pinned only viaresolutions(yarn 1.x mechanism for forcing transitive dep versions)resolutions.viteis required to prevent yarn 1.x from failing to hoist a sharedvitecopy for bothviteandvitest- without it, yarn throwsInvariant Violation: could not find a copy of vite to link in vitest/node_modulesesbuildis intentionally NOT upgraded - its current version0.27.3satisfiesvite's peer range^0.27.0; upgrading to0.28.x(the Dependabot fix version) would break that constraint and is classified as LOW severity / Windows-only