Skip to content
This repository was archived by the owner on Sep 24, 2020. It is now read-only.

Update httpcore requirement from ==0.9.* to >=0.9,<0.12#48

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/pip/httpcore-gte-0.9-and-lt-0.12
Open

Update httpcore requirement from ==0.9.* to >=0.9,<0.12#48
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/pip/httpcore-gte-0.9-and-lt-0.12

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Sep 23, 2020

Updates the requirements on httpcore to permit the latest version.

Release notes

Sourced from httpcore's releases.

Version 0.11.0

0.11.0 (September 22nd, 2020)

The Transport API with 0.11.0 has a couple of significant changes.

Firstly we've moved changed the request interface in order to allow extensions, which will later enable us to support features such as trailing headers, HTTP/2 server push, and CONNECT/Upgrade connections.

The interface changes from:

def request(method, url, headers, stream, timeout):
    return (http_version, status_code, reason, headers, stream)

To instead including an optional dictionary of extensions on the request and response:

def request(method, url, headers, stream, ext):
    return (status_code, headers, stream, ext)

Having an open-ended extensions point will allow us to add later support for various optional features, that wouldn't otherwise be supported without these API changes.

In particular:

  • Trailing headers support.
  • HTTP/2 Server Push
  • sendfile.
  • Exposing raw connection on CONNECT, Upgrade, HTTP/2 bi-di streaming.
  • Exposing debug information out of the API, including template name, template context.

Currently extensions are limited to:

  • request: timeout - Optional. Timeout dictionary.
  • response: http_version - Optional. Include the HTTP version used on the response.
  • response: reason - Optional. Include the reason phrase used on the response. Only valid with HTTP/1.*.

See encode/httpx#1274 for the history behind this.

Secondly, the async version of request is now namespaced as arequest.

This allows concrete transports to support both sync and async implementations on the same class.

Added

  • Add curio support. (Pull #168)
  • Add anyio support, with backend="anyio". (Pull #169)

Changed

... (truncated)

Changelog

Sourced from httpcore's changelog.

0.11.0 (September 22nd, 2020)

The Transport API with 0.11.0 has a couple of significant changes.

Firstly we've moved changed the request interface in order to allow extensions, which will later enable us to support features such as trailing headers, HTTP/2 server push, and CONNECT/Upgrade connections.

The interface changes from:

def request(method, url, headers, stream, timeout):
    return (http_version, status_code, reason, headers, stream)

To instead including an optional dictionary of extensions on the request and response:

def request(method, url, headers, stream, ext):
    return (status_code, headers, stream, ext)

Having an open-ended extensions point will allow us to add later support for various optional features, that wouldn't otherwise be supported without these API changes.

In particular:

  • Trailing headers support.
  • HTTP/2 Server Push
  • sendfile.
  • Exposing raw connection on CONNECT, Upgrade, HTTP/2 bi-di streaming.
  • Exposing debug information out of the API, including template name, template context.

Currently extensions are limited to:

  • request: timeout - Optional. Timeout dictionary.
  • response: http_version - Optional. Include the HTTP version used on the response.
  • response: reason - Optional. Include the reason phrase used on the response. Only valid with HTTP/1.*.

See encode/httpx#1274 for the history behind this.

Secondly, the async version of request is now namespaced as arequest.

This allows concrete transports to support both sync and async implementations on the same class.

Added

  • Add curio support. (Pull #168)
  • Add anyio support, with backend="anyio". (Pull #169)

Changed

... (truncated)

Commits

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)

Updates the requirements on [httpcore](https://github.com/encode/httpcore) to permit the latest version.
- [Release notes](https://github.com/encode/httpcore/releases)
- [Changelog](https://github.com/encode/httpcore/blob/master/CHANGELOG.md)
- [Commits](encode/httpcore@0.9.0...0.11.0)

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Sep 23, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants