chore(deps): upgrade form-data to latest version - #500
Open
rohanshrma222 wants to merge 1 commit into
Open
Conversation
rohanshrma222
requested review from
HarshaNalluru,
ashvathsureshkumar and
r4ghu
as code owners
July 29, 2026 17:29
Codex reviewNo issues found. |
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.
Pull Request Checklist
Please ensure that your PR meets the following requirements:
Description
form-data was outdated (4.0.4) in packages/n8n-nodes-moss/package-lock.json, pulled in transitively via n8n-workflow@2.16.0, which pins it to that exact version. Since n8n-workflow is declared as * (any version) and bumping the whole n8n-workflow package is out of scope here, I added "form-data": "^4.0.6" to the existing overrides block in package.json (the same mechanism already used there for lodash) and regenerated the lockfile with npm install.
Checked the other lockfile referencing form-data (apps/moss-vscode/package-lock.json) — it already resolves to the latest 4.0.6 via @vscode/vsce's ^4.0.0 range, so no change was needed there.
Verified npm run typecheck and npm test pass in packages/n8n-nodes-moss, and confirmed via npm ls form-data that only a single deduped 4.0.6 instance is installed (no duplicate/nested copies introduced).
Fixes #468
Type of Change