Skip to content
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

Bump httpx from 0.12.1 to 0.14.3 #143

Closed
wants to merge 1 commit into from

Conversation

dependabot-preview[bot]
Copy link
Contributor

Bumps httpx from 0.12.1 to 0.14.3.

Release notes

Sourced from httpx's releases.

Version 0.14.3

0.14.3 (September 2nd, 2020)

Added

  • http.Response() may now be instantiated without a request=... parameter. Useful for some unit testing cases. (Pull #1238)
  • Add 103 Early Hints and 425 Too Early status codes. (Pull #1244)

Fixed

  • DigestAuth now handles responses that include multiple 'WWW-Authenticate' headers. (Pull #1240)
  • Call into transport __enter__/__exit__ or __aenter__/__aexit__ when client is used in a context manager style. (Pull #1218)

Version 0.14.2

0.14.2 (August 24th, 2020)

Added

  • Support client.get(..., auth=None) to bypass the default authentication on a clients. (Pull #1115)
  • Support client.auth = ... property setter. (Pull #1185)
  • Support httpx.get(..., proxies=...) on top-level request functions. (Pull #1198)
  • Display instances with nicer import styles. (Eg. ) (Pull #1155)
  • Support cookies=[(key, value)] list-of-two-tuples style usage. (Pull #1211)

Fixed

  • Ensure that automatically included headers on a request may be modified. (Pull #1205)
  • Allow explicit Content-Length header on streaming requests. (Pull #1170)
  • Handle URL quoted usernames and passwords properly. (Pull #1159)
  • Use more consistent default for HEAD requests, setting allow_redirects=True. (Pull #1183)
  • If a transport error occurs while streaming the response, raise an httpx exception, not the underlying httpcore exception. (Pull #1190)
  • Include the underlying httpcore traceback, when transport exceptions occur. (Pull #1199)

Version 0.14.1

0.14.1 (August 11th, 2020)

Added

  • The httpx.URL(...) class now raises httpx.InvalidURL on invalid URLs, rather than exposing the underlying rfc3986 exception. If a redirect response includes an invalid 'Location' header, then a RemoteProtocolError exception is raised, which will be associated with the request that caused it. (Pull #1163)

Fixed

  • Handling multiple Set-Cookie headers became broken in the 0.14.0 release, and is now resolved. (Pull #1156)

Version 0.14.0

0.14.0 (August 7th, 2020)

The 0.14 release includes a range of improvements to the public API, intended on preparing for our upcoming 1.0 release.

  • Our HTTP/2 support is now fully optional. You now need to use pip install httpx[http2] if you want to include the HTTP/2 dependancies.
Changelog

Sourced from httpx's changelog.

0.14.3 (September 2nd, 2020)

Added

  • http.Response() may now be instantiated without a request=... parameter. Useful for some unit testing cases. (Pull #1238)
  • Add 103 Early Hints and 425 Too Early status codes. (Pull #1244)

Fixed

  • DigestAuth now handles responses that include multiple 'WWW-Authenticate' headers. (Pull #1240)
  • Call into transport __enter__/__exit__ or __aenter__/__aexit__ when client is used in a context manager style. (Pull #1218)

0.14.2 (August 24th, 2020)

Added

  • Support client.get(..., auth=None) to bypass the default authentication on a clients. (Pull #1115)
  • Support client.auth = ... property setter. (Pull #1185)
  • Support httpx.get(..., proxies=...) on top-level request functions. (Pull #1198)
  • Display instances with nicer import styles. (Eg. ) (Pull #1155)
  • Support cookies=[(key, value)] list-of-two-tuples style usage. (Pull #1211)

Fixed

  • Ensure that automatically included headers on a request may be modified. (Pull #1205)
  • Allow explicit Content-Length header on streaming requests. (Pull #1170)
  • Handle URL quoted usernames and passwords properly. (Pull #1159)
  • Use more consistent default for HEAD requests, setting allow_redirects=True. (Pull #1183)
  • If a transport error occurs while streaming the response, raise an httpx exception, not the underlying httpcore exception. (Pull #1190)
  • Include the underlying httpcore traceback, when transport exceptions occur. (Pull #1199)

0.14.1 (August 11th, 2020)

Added

  • The httpx.URL(...) class now raises httpx.InvalidURL on invalid URLs, rather than exposing the underlying rfc3986 exception. If a redirect response includes an invalid 'Location' header, then a RemoteProtocolError exception is raised, which will be associated with the request that caused it. (Pull #1163)

Fixed

  • Handling multiple Set-Cookie headers became broken in the 0.14.0 release, and is now resolved. (Pull #1156)

0.14.0 (August 7th, 2020)

The 0.14 release includes a range of improvements to the public API, intended on preparing for our upcoming 1.0 release.

  • Our HTTP/2 support is now fully optional. You now need to use pip install httpx[http2] if you want to include the HTTP/2 dependancies.
  • Our HSTS support has now been removed. Rewriting URLs from http to https if the host is on the HSTS list can be beneficial in avoiding roundtrips to incorrectly formed URLs, but on balance we've decided to remove this feature, on the principle of least surprise. Most programmatic clients do not include HSTS support, and for now we're opting to remove our support for it.
  • Our exception hierarchy has been overhauled. Most users will want to stick with their existing httpx.HTTPError usage, but we've got a clearer overall structure now. See https://www.python-httpx.org/exceptions/ for more details.

When upgrading you should be aware of the following public API changes. Note that deprecated usages will currently continue to function, but will issue warnings.

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Bumps [httpx](https://github.com/encode/httpx) from 0.12.1 to 0.14.3.
- [Release notes](https://github.com/encode/httpx/releases)
- [Changelog](https://github.com/encode/httpx/blob/master/CHANGELOG.md)
- [Commits](encode/httpx@0.12.1...0.14.3)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Sep 2, 2020
@dependabot-preview
Copy link
Contributor Author

Superseded by #146.

@dependabot-preview dependabot-preview bot deleted the dependabot/pip/httpx-0.14.3 branch September 22, 2020 17:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants