-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix incompatibility with
httpx>=0.28
(#52)
In `httpx==0.28.0`, the handling of GET query parameters has changed in a backwards-incompatible way. The new behaviour is to replace query parameters in the URL when parameters are passed via the `params` kwarg. Our pagination code expects that parameters in the URL get merged with the additional parameters of the `params` kwarg. This PR explicitly implements the old behaviour of merging params to fix compatibility with recent releases of `httpx`. refs: - encode/httpx#3364 - encode/httpx#3440
- Loading branch information
Showing
3 changed files
with
12 additions
and
9 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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