-
Notifications
You must be signed in to change notification settings - Fork 365
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
Reduce number of http client dependencies #5695
Labels
Comments
hereje
added a commit
to hereje/cli
that referenced
this issue
Nov 30, 2023
replace got with node-fetch related to netlify#5695
5 tasks
hereje
added a commit
to hereje/cli
that referenced
this issue
Nov 30, 2023
replace got with node-fetch related to netlify#5695
5 tasks
hereje
added a commit
to hereje/cli
that referenced
this issue
Nov 30, 2023
replace got with node-fetch related to netlify#5695
5 tasks
hereje
added a commit
to hereje/cli
that referenced
this issue
Nov 30, 2023
replace got with node-fetch related to netlify#5695
5 tasks
hereje
added a commit
to hereje/cli
that referenced
this issue
Nov 30, 2023
5 tasks
hereje
added a commit
to hereje/cli
that referenced
this issue
Dec 1, 2023
replace got with node-fetch related to netlify#5695
5 tasks
hereje
added a commit
to hereje/cli
that referenced
this issue
Dec 5, 2023
5 tasks
hereje
added a commit
to hereje/cli
that referenced
this issue
Dec 5, 2023
5 tasks
hereje
added a commit
to hereje/cli
that referenced
this issue
Dec 5, 2023
5 tasks
hereje
added a commit
to hereje/cli
that referenced
this issue
Dec 5, 2023
hereje
added a commit
to hereje/cli
that referenced
this issue
Dec 5, 2023
5 tasks
hereje
added a commit
to hereje/cli
that referenced
this issue
Dec 5, 2023
remove got.js utility so that it is no longer referenced related to netlify#5695
hereje
added a commit
to hereje/cli
that referenced
this issue
Dec 5, 2023
remove got and use node-fetch instead related to netlify#5695
sarahetter
pushed a commit
that referenced
this issue
Dec 8, 2023
replace got with node-fetch related to #5695
kodiakhq bot
added a commit
that referenced
this issue
Dec 13, 2023
) replace got with node-fetch related to #5695 Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
kodiakhq bot
added a commit
that referenced
this issue
Dec 13, 2023
replace got with node-fetch related to #5695 Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
kodiakhq bot
pushed a commit
that referenced
this issue
Dec 13, 2023
* refactor: run tests concurrently * refactor: replace got with node-fetch on v2-api.test.ts related to #5695 --------- Co-authored-by: Sarah Etter <sarah.etter@netlify.com>
sarahetter
pushed a commit
that referenced
this issue
Dec 14, 2023
related to #5695 Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
kodiakhq bot
added a commit
that referenced
this issue
Dec 18, 2023
…6264) * refactor: replace got with node-fetch on functions-with-args.test.js (#6245) related to #5695 Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> * chore: empty commit to rerun actions --------- Co-authored-by: Angel Mendez <amendez1988@gmail.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> Co-authored-by: Sarah Etter <sarah.etter@netlify.com>
kodiakhq bot
added a commit
that referenced
this issue
Jan 11, 2024
replace got with node-fetch related to #5695 Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, we use multiple libraries to perform HTTP requests like
node-fetch
andgot
.To reduce our overall dependencies, let's migrate all occurrences to
node-fetch
as when we only have to support node 18+, we can drop the dependency and use the native node fetch.The goal here is to reduce the installation time and the effort of maintaining multiple dependencies.
The text was updated successfully, but these errors were encountered: