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

build(deps): bump h2 from 0.3.4 to 0.3.6 #1293

Merged
merged 1 commit into from
Sep 30, 2021
Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 30, 2021

Bumps h2 from 0.3.4 to 0.3.6.

Release notes

Sourced from h2's releases.

v0.3.6

  • Fix regression of h2::Error that were created via From<h2::Reason> not returning their reason code in Error::reason().

v0.3.5

  • Fix sending of very large headers. Previously when a single header was too big to fit in a single HEADERS frame, an error was returned. Now it is broken up and sent correctly.
  • Fix buffered data field to be a bigger integer size.
  • Refactor error format to include what initiated the error (remote, local, or user), if it was a stream or connection-level error, and any received debug data.
Changelog

Sourced from h2's changelog.

0.3.6 (September 30, 2021)

  • Fix regression of h2::Error that were created via From<h2::Reason> not returning their reason code in Error::reason().

0.3.5 (September 29, 2021)

  • Fix sending of very large headers. Previously when a single header was too big to fit in a single HEADERS frame, an error was returned. Now it is broken up and sent correctly.
  • Fix buffered data field to be a bigger integer size.
  • Refactor error format to include what initiated the error (remote, local, or user), if it was a stream or connection-level error, and any received debug data.
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)

Bumps [h2](https://github.com/hyperium/h2) from 0.3.4 to 0.3.6.
- [Release notes](https://github.com/hyperium/h2/releases)
- [Changelog](https://github.com/hyperium/h2/blob/master/CHANGELOG.md)
- [Commits](hyperium/h2@v0.3.4...v0.3.6)

---
updated-dependencies:
- dependency-name: h2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team September 30, 2021 20:09
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Sep 30, 2021
@olix0r olix0r merged commit afcfc34 into main Sep 30, 2021
@olix0r olix0r deleted the dependabot/cargo/h2-0.3.6 branch September 30, 2021 20:22
olix0r added a commit to linkerd/linkerd2 that referenced this pull request Oct 7, 2021
This release updates the `h2` crate to support HTTP/2 messages with
large header values.

Legacy support for TLSv1.2 has been removed. Now the proxy only uses
TLSv1.3 for mTLS communication.  Also, gateway proxies now only support
clients that use the `transport.l5d.io` protocol, negotiated via ALPN.
With these changes, older clients (before ~v2.133.0) are no longer
supported by new servers.

---

* build(deps): bump libc from 0.2.102 to 0.2.103 (linkerd/linkerd2-proxy#1290)
* build(deps): bump trust-dns-resolver (linkerd/linkerd2-proxy#1291)
* build(deps): bump h2 from 0.3.4 to 0.3.6 (linkerd/linkerd2-proxy#1293)
* admin: Remove unused types (linkerd/linkerd2-proxy#1294)
* Remove use of TLS 1.2 (linkerd/linkerd2-proxy#1296)
* gateway: Require ALPN on gateway connections (linkerd/linkerd2-proxy#1297)
* Always enable identity in integration tests (linkerd/linkerd2-proxy#1298)
* tracing: use `Option`s as `tracing` values (linkerd/linkerd2-proxy#1299)
* build(deps): bump tracing-subscriber from 0.2.24 to 0.2.25 (linkerd/linkerd2-proxy#1300)
Pothulapati pushed a commit to linkerd/linkerd2 that referenced this pull request Oct 7, 2021
This release updates the `h2` crate to support HTTP/2 messages with
large header values.

Legacy support for TLSv1.2 has been removed. Now the proxy only uses
TLSv1.3 for mTLS communication.  Also, gateway proxies now only support
clients that use the `transport.l5d.io` protocol, negotiated via ALPN.
With these changes, older clients (before ~v2.133.0) are no longer
supported by new servers.

---

* build(deps): bump libc from 0.2.102 to 0.2.103 (linkerd/linkerd2-proxy#1290)
* build(deps): bump trust-dns-resolver (linkerd/linkerd2-proxy#1291)
* build(deps): bump h2 from 0.3.4 to 0.3.6 (linkerd/linkerd2-proxy#1293)
* admin: Remove unused types (linkerd/linkerd2-proxy#1294)
* Remove use of TLS 1.2 (linkerd/linkerd2-proxy#1296)
* gateway: Require ALPN on gateway connections (linkerd/linkerd2-proxy#1297)
* Always enable identity in integration tests (linkerd/linkerd2-proxy#1298)
* tracing: use `Option`s as `tracing` values (linkerd/linkerd2-proxy#1299)
* build(deps): bump tracing-subscriber from 0.2.24 to 0.2.25 (linkerd/linkerd2-proxy#1300)
olix0r pushed a commit that referenced this pull request Oct 22, 2021
Bumps [h2](https://github.com/hyperium/h2) from 0.3.4 to 0.3.6.
- [Release notes](https://github.com/hyperium/h2/releases)
- [Changelog](https://github.com/hyperium/h2/blob/master/CHANGELOG.md)
- [Commits](hyperium/h2@v0.3.4...v0.3.6)

---
updated-dependencies:
- dependency-name: h2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
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 rust Pull requests that update Rust code
Projects
None yet
1 participant