-
Notifications
You must be signed in to change notification settings - Fork 0
Update form-data to 4.0.4 and add dependency overrides #76
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 | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -37,7 +37,7 @@ | |||||||
| "cross-fetch": "^4.1.0", | ||||||||
| "dotenv": "^16.4.7", | ||||||||
| "express": "^4.21.1", | ||||||||
| "form-data": "^4.0.0", | ||||||||
| "form-data": "4.0.4", | ||||||||
| "graphql": "^16.9.0", | ||||||||
| "ini": "^3.0.1", | ||||||||
| "lodash": "^4.17.21", | ||||||||
|
|
@@ -106,6 +106,10 @@ | |||||||
| "test:jest:coverage": "jest --coverage", | ||||||||
| "prepare": "husky" | ||||||||
| }, | ||||||||
| "overrides": { | ||||||||
| "axios": "~1.10.0", | ||||||||
| "form-data": "4.0.4" | ||||||||
|
Comment on lines
+110
to
+111
|
||||||||
| "axios": "~1.10.0", | |
| "form-data": "4.0.4" | |
| "axios": "~1.10.0" |
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.
The form-data dependency has been pinned to an exact version (4.0.4) by removing the caret (^) operator. While this ensures consistent builds, it may prevent receiving patch updates that could include bug fixes or security patches. Consider whether this strict pinning is necessary, or if using "^4.0.4" would be more appropriate to allow automatic patch-level updates while maintaining compatibility.