-
Notifications
You must be signed in to change notification settings - Fork 60
Remove 'make-fetch-happen' dependency #4247
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
Remove 'make-fetch-happen' dependency #4247
Conversation
a38d4c5
to
1f7db43
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #4247 +/- ##
===========================================
+ Coverage 32.37% 43.81% +11.44%
===========================================
Files 85 95 +10
Lines 6505 7707 +1202
Branches 1349 1647 +298
===========================================
+ Hits 2106 3377 +1271
+ Misses 4399 4330 -69 ☔ View full report in Codecov by Sentry. |
1f7db43
to
1929fe9
Compare
1929fe9
to
00b45b7
Compare
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.
Seems to work for me, but we should update the engine version if we are making this change so that versions of VS Code that don't come with Node 18 can't download this update.
6f234a2
to
21b7bcf
Compare
As Fetch API is compatible with Node.js >= v18, the engine and dependencies are accordingly updated: - engines: ``` "vscode": "^1.82.3", "npm": ">=8.6.0", "node": ">=18.0.0" ``` - devDependencies: ``` "@types/node": "^18.19.39", ... "@types/vscode": "1.82.0", ``` Signed-off-by: Victor Rubezhny <[email protected]>
21b7bcf
to
431a178
Compare
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.
Looks good. Thanks, Victor!
As Fetch API is compatible with Node.js >= v18, the engine and dependencies are accordingly updated: