Skip to content

fix(deps): update dependency httpx to >=0.15.4,<0.18.2 #400

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

Merged
merged 3 commits into from
May 2, 2021

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 29, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
httpx (changelog) >=0.15.4,<0.18.0 -> >=0.15.4,<0.18.2 age adoption passing confidence

Release Notes

encode/httpx

v0.18.1

Compare Source

Changed
  • Update brotli support to use the brotlicffi package (Pull #​1605)
  • Ensure that Request(..., stream=...) does not auto-generate any headers on the request instance. (Pull #​1607)
Fixed
  • Pass through timeout=... in top-level httpx.stream() function. (Pull #​1613)
  • Map httpcore transport close exceptions to httpx exceptions. (Pull #​1606)

v0.18.0

Compare Source

The 0.18.x release series formalises our low-level Transport API, introducing the base classes httpx.BaseTransport and httpx.AsyncBaseTransport.

See the "Writing custom transports" documentation and the httpx.BaseTransport.handle_request() docstring for more complete details on implementing custom transports.

Pull request #​1522 includes a checklist of differences from the previous httpcore transport API, for developers implementing custom transports.

The following API changes have been issuing deprecation warnings since 0.17.0 onwards, and are now fully deprecated...

  • You should now use httpx.codes consistently instead of httpx.StatusCodes.
  • Use limits=... instead of pool_limits=....
  • Use proxies={"http://": ...} instead of proxies={"http": ...} for scheme-specific mounting.
Changed
  • Transport instances now inherit from httpx.BaseTransport or httpx.AsyncBaseTransport,
    and should implement either the handle_request method or handle_async_request method. (Pull #​1522, #​1550)
  • The response.ext property and Response(ext=...) argument are now named extensions. (Pull #​1522)
  • The recommendation to not use data=<bytes|str|bytes (a)iterator> in favour of content=<bytes|str|bytes (a)iterator> has now been escalated to a deprecation warning. (Pull #​1573)
  • Drop Response(on_close=...) from API, since it was a bit of leaking implementation detail. (Pull #​1572)
  • When using a client instance, cookies should always be set on the client, rather than on a per-request basis. We prefer enforcing a stricter API here because it provides clearer expectations around cookie persistence, particularly when redirects occur. (Pull #​1574)
  • The runtime exception httpx.ResponseClosed is now named httpx.StreamClosed. (#​1584)
  • The httpx.QueryParams model now presents an immutable interface. There is a discussion on the design and motivation here. Use client.params = client.params.merge(...) instead of client.params.update(...). The basic query manipulation methods are query.set(...), query.add(...), and query.remove(). (#​1600)
Added
  • The Request and Response classes can now be serialized using pickle. (#​1579)
  • Handle data={"key": [None|int|float|bool]} cases. (Pull #​1539)
  • Support httpx.URL(**kwargs), for example httpx.URL(scheme="https", host="www.example.com", path="/'), or httpx.URL("https://www.example.com/", username="[email protected]", password="123 456"). (Pull #​1601)
  • Support url.copy_with(params=...). (Pull #​1601)
  • Add url.params parameter, returning an immutable QueryParams instance. (Pull #​1601)
  • Support query manipulation methods on the URL class. These are url.copy_set_param(), url.copy_add_param(), url.copy_remove_param(), url.copy_merge_params(). (Pull #​1601)
  • The httpx.URL class now performs port normalization, so :80 ports are stripped from http URLs and :443 ports are stripped from https URLs. (Pull #​1603)
  • The URL.host property returns unicode strings for internationalized domain names. The URL.raw_host property returns byte strings with IDNA escaping applied. (Pull #​1590)
Fixed
  • Fix Content-Length for cases of files=... where unicode string is used as the file content. (Pull #​1537)
  • Fix some cases of merging relative URLs against Client(base_url=...). (Pull #​1532)
  • The request.content attribute is now always available except for streaming content, which requires an explicit .read(). (Pull #​1583)

Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box.

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/httpx-0.x branch from 4e47dd0 to 5c764e1 Compare April 29, 2021 17:25
@renovate renovate bot force-pushed the renovate/httpx-0.x branch from 5c764e1 to 19897b8 Compare April 30, 2021 20:24
@dbanty dbanty enabled auto-merge (squash) May 2, 2021 15:37
@codecov
Copy link

codecov bot commented May 2, 2021

Codecov Report

Merging #400 (837b210) into main (9b0302c) will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff            @@
##              main      #400   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files           46        46           
  Lines         1531      1531           
=========================================
  Hits          1531      1531           

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 9b0302c...837b210. Read the comment docs.

@dbanty dbanty merged commit 59a5827 into main May 2, 2021
@dbanty dbanty deleted the renovate/httpx-0.x branch May 2, 2021 15:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants