-
-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Problem with query params #1300
Comments
+1 We encountered this bug in our project as well. In the parseURL function, the path property needs to carry the query string since it is so far the only way to send query parameters to the node standard https/http.request API. |
Sorry about this, looking into it |
We have the same issue, the issue is that whatwgUrl.URL does not return a "query" parametr, only a "search", e.g.:
Also interesting is that watwg-url is avaiable in version 9, but the referenced version is ^5.0.0. On my monorepo setup, version 9 is installed though, I guess this could also be related? |
v2.6.4 was just released, and fixes this for me 👍 |
Yea, released it as a hot fix without merging #3001 did not announce it or closed this issue, |
v2.6.4 fixed this for us too. The latest version broke our app in production 🥲 |
Very sorry for the breakage everyone! A fix has been pushed out as version Thank you @jimmywarting for the quick fix ❤️ I would recommend everyone to use package lock files to avoid having your production break, that way you can test your app before any dependencies change. |
Already release, closing now as it got merged |
@jimmywarting would you be able to deprecate version |
Something in lines of: |
Sounds good 👍 or maybe: npm deprecate [email protected] "query parameters being dropped bug fixed in v2.6.4" |
Or after #1303 is merged:
|
Hmm, that specific bug was fixed in 2.6.4 though, I think that people will just upgrade to the latest version anyways? And I don't think that nearly as many people are affected by #1303, which also manifests as a crash on startup so no subtle behaviour... But anyways, no strong feelings from my side so you can decide 👍 |
Some more info on what and why this happened: I was back porting #701 to the v2.x branch, specifically this line: But what I failed to realise that it had a follow up PR later that fixed the very same bug that I now introduced: This is the issue that previously reported this for the 3.x release line: #749 #759 didn't add any test cases, but I think that a good thing to do now is to port the test case added in the hot fix here to the 3.x branch, and to backport all other tests from 3.x to 2.x to further ensure that we don't do any breaking changes... |
Reproduction
Steps to reproduce the behavior:
When using node-fetch version 2.6.3, making a request to http://nginx/transactions/total?month=2021-09 do not send the url params. If I am using node-fetch version 2.6.1 everything work fine. Enabling node http verbose log, when making the request using node-fetch version 2.6.1 I get:
but using node-fetch version 2.6.3 I get
Note the query part is undefined when using node-fetch version 2.6.3.
Expected behavior
The behaviour of the two versions should be the same.
Screenshots
Your Environment
Additional context
The text was updated successfully, but these errors were encountered: