Conversation
`h2` has a few important changes since its last official release: * hyperium/h2@4dc2b4a Avoids time operations that can panic * hyperium/h2@85549fc Fixes an issue with header parsing * hyperium/h2@b8eab38 Removes noise from tracing spans This change patches our `h2` dependency to use the laster commit on the master branch. Signed-off-by: Oliver Gould <[email protected]>
Contributor
|
We should probably stage a release... |
Member
Author
|
@hawkw agreed, but this will unblock us getting a proxy release out with the changes. It will be easy to update once there's a release out. |
Contributor
|
upstream release PR: hyperium/h2#609 |
hawkw
added a commit
that referenced
this pull request
Mar 9, 2022
Version v0.3.12 of `h2` has been published, so we no longer need the patch added in #1536 to pick up unreleased changes.
olix0r
pushed a commit
that referenced
this pull request
Mar 9, 2022
Version v0.3.12 of `h2` has been published, so we no longer need the patch added in #1536 to pick up unreleased changes. Signed-off-by: Eliza Weisman <[email protected]>
olix0r
added a commit
to linkerd/linkerd2
that referenced
this pull request
Mar 10, 2022
This release fixes an issue that could prevent proxies from sending HTTP Upgrade requests (e.g., for websockets) through multi-cluster gateways. Many dependencies have been updated, notably including a new version of `h2` that improves debug logging, avoids panics in time-related operations, and fixes an issue with parsing certain types of headers. --- * ci: Only run checks on changed crates (linkerd/linkerd2-proxy#1498) * build(deps): bump libc from 0.2.117 to 0.2.118 (linkerd/linkerd2-proxy#1502) * ci: Run fuzzing only on related changes (linkerd/linkerd2-proxy#1501) * deps: update to `tokio` 1.17.0 and `tower` 0.4.12, and unpatch (linkerd/linkerd2-proxy#1503) * build(deps): bump tj-actions/changed-files (linkerd/linkerd2-proxy#1505) * build(deps): bump cc from 1.0.72 to 1.0.73 (linkerd/linkerd2-proxy#1506) * cargo: Omit patch versions from Cargo.toml files (linkerd/linkerd2-proxy#1504) * build(deps): bump tracing-subscriber from 0.3.8 to 0.3.9 (linkerd/linkerd2-proxy#1509) * build(deps): bump tracing from 0.1.30 to 0.1.31 (linkerd/linkerd2-proxy#1508) * build(deps): bump tj-actions/changed-files from 15.1 to 16 (linkerd/linkerd2-proxy#1507) * build(deps): bump rustls from 0.20.3 to 0.20.4 (linkerd/linkerd2-proxy#1510) * build(deps): bump parking_lot_core from 0.9.0 to 0.9.1 (linkerd/linkerd2-proxy#1511) * build(deps): bump libc from 0.2.118 to 0.2.119 (linkerd/linkerd2-proxy#1512) * build(deps): bump anyhow from 1.0.53 to 1.0.55 (linkerd/linkerd2-proxy#1514) * build(deps): bump getrandom from 0.2.4 to 0.2.5 (linkerd/linkerd2-proxy#1516) * build(deps): bump tj-actions/changed-files from 16 to 17 (linkerd/linkerd2-proxy#1515) * Add ExponentialBackoff::new_unchecked (linkerd/linkerd2-proxy#1517) * Update Rust to v1.59.0 (linkerd/linkerd2-proxy#1519) * build(deps): bump drain from 0.1.0 to 0.1.1 (linkerd/linkerd2-proxy#1521) * build(deps): bump tj-actions/changed-files from 17 to 17.2 (linkerd/linkerd2-proxy#1520) * build(deps): bump trust-dns-resolver from 0.21.0-alpha.5 to 0.21.1 (linkerd/linkerd2-proxy#1522) * build(deps): bump redox_syscall from 0.2.10 to 0.2.11 (linkerd/linkerd2-proxy#1524) * build(deps): bump actions/checkout from 2.4.0 to 3 (linkerd/linkerd2-proxy#1525) * build(deps): bump actions/download-artifact from 2.1.0 to 3 (linkerd/linkerd2-proxy#1526) * build(deps): bump once_cell from 1.9.0 to 1.10.0 (linkerd/linkerd2-proxy#1529) * build(deps): bump anyhow from 1.0.55 to 1.0.56 (linkerd/linkerd2-proxy#1531) * build(deps): bump actions/upload-artifact from 2.3.1 to 3 (linkerd/linkerd2-proxy#1527) * build(deps): bump libfuzzer-sys from 0.4.2 to 0.4.3 (linkerd/linkerd2-proxy#1528) * build(deps): bump ipnet from 2.3.1 to 2.4.0 (linkerd/linkerd2-proxy#1530) * build(deps): bump regex from 1.5.4 to 1.5.5 (linkerd/linkerd2-proxy#1535) * build(deps): bump tj-actions/changed-files from 17.2 to 17.3 (linkerd/linkerd2-proxy#1534) * Update h2 to use unpublished changes (linkerd/linkerd2-proxy#1536) * build(deps): bump tracing from 0.1.31 to 0.1.32 (linkerd/linkerd2-proxy#1537) * Use the connection's HTTP version in transport header (linkerd/linkerd2-proxy#1533) * bump `h2` to v0.3.12 and remove patch (linkerd/linkerd2-proxy#1538) Signed-off-by: Oliver Gould <[email protected]>
olix0r
added a commit
to linkerd/linkerd2
that referenced
this pull request
Mar 10, 2022
This release fixes an issue that could prevent proxies from sending HTTP Upgrade requests (e.g., for websockets) through multi-cluster gateways. Many dependencies have been updated, notably including a new version of `h2` that improves debug logging, avoids panics in time-related operations, and fixes an issue with parsing certain types of headers. This change also patches the `regex` crate to address RUSTSEC-2022-0013, which could theoretically allow maliciously crafted ServiceProfile resources to consume an arbitrary amount of proxy resources. --- * ci: Only run checks on changed crates (linkerd/linkerd2-proxy#1498) * build(deps): bump libc from 0.2.117 to 0.2.118 (linkerd/linkerd2-proxy#1502) * ci: Run fuzzing only on related changes (linkerd/linkerd2-proxy#1501) * deps: update to `tokio` 1.17.0 and `tower` 0.4.12, and unpatch (linkerd/linkerd2-proxy#1503) * build(deps): bump tj-actions/changed-files (linkerd/linkerd2-proxy#1505) * build(deps): bump cc from 1.0.72 to 1.0.73 (linkerd/linkerd2-proxy#1506) * cargo: Omit patch versions from Cargo.toml files (linkerd/linkerd2-proxy#1504) * build(deps): bump tracing-subscriber from 0.3.8 to 0.3.9 (linkerd/linkerd2-proxy#1509) * build(deps): bump tracing from 0.1.30 to 0.1.31 (linkerd/linkerd2-proxy#1508) * build(deps): bump tj-actions/changed-files from 15.1 to 16 (linkerd/linkerd2-proxy#1507) * build(deps): bump rustls from 0.20.3 to 0.20.4 (linkerd/linkerd2-proxy#1510) * build(deps): bump parking_lot_core from 0.9.0 to 0.9.1 (linkerd/linkerd2-proxy#1511) * build(deps): bump libc from 0.2.118 to 0.2.119 (linkerd/linkerd2-proxy#1512) * build(deps): bump anyhow from 1.0.53 to 1.0.55 (linkerd/linkerd2-proxy#1514) * build(deps): bump getrandom from 0.2.4 to 0.2.5 (linkerd/linkerd2-proxy#1516) * build(deps): bump tj-actions/changed-files from 16 to 17 (linkerd/linkerd2-proxy#1515) * Add ExponentialBackoff::new_unchecked (linkerd/linkerd2-proxy#1517) * Update Rust to v1.59.0 (linkerd/linkerd2-proxy#1519) * build(deps): bump drain from 0.1.0 to 0.1.1 (linkerd/linkerd2-proxy#1521) * build(deps): bump tj-actions/changed-files from 17 to 17.2 (linkerd/linkerd2-proxy#1520) * build(deps): bump trust-dns-resolver from 0.21.0-alpha.5 to 0.21.1 (linkerd/linkerd2-proxy#1522) * build(deps): bump redox_syscall from 0.2.10 to 0.2.11 (linkerd/linkerd2-proxy#1524) * build(deps): bump actions/checkout from 2.4.0 to 3 (linkerd/linkerd2-proxy#1525) * build(deps): bump actions/download-artifact from 2.1.0 to 3 (linkerd/linkerd2-proxy#1526) * build(deps): bump once_cell from 1.9.0 to 1.10.0 (linkerd/linkerd2-proxy#1529) * build(deps): bump anyhow from 1.0.55 to 1.0.56 (linkerd/linkerd2-proxy#1531) * build(deps): bump actions/upload-artifact from 2.3.1 to 3 (linkerd/linkerd2-proxy#1527) * build(deps): bump libfuzzer-sys from 0.4.2 to 0.4.3 (linkerd/linkerd2-proxy#1528) * build(deps): bump ipnet from 2.3.1 to 2.4.0 (linkerd/linkerd2-proxy#1530) * build(deps): bump regex from 1.5.4 to 1.5.5 (linkerd/linkerd2-proxy#1535) * build(deps): bump tj-actions/changed-files from 17.2 to 17.3 (linkerd/linkerd2-proxy#1534) * Update h2 to use unpublished changes (linkerd/linkerd2-proxy#1536) * build(deps): bump tracing from 0.1.31 to 0.1.32 (linkerd/linkerd2-proxy#1537) * Use the connection's HTTP version in transport header (linkerd/linkerd2-proxy#1533) * bump `h2` to v0.3.12 and remove patch (linkerd/linkerd2-proxy#1538) Signed-off-by: Oliver Gould <[email protected]>
olix0r
added a commit
to linkerd/linkerd2
that referenced
this pull request
Mar 10, 2022
This release fixes an issue that could prevent proxies from sending HTTP Upgrade requests (e.g., for websockets) through multi-cluster gateways. Many dependencies have been updated, notably including a new version of `h2` that improves debug logging, avoids panics in time-related operations, and fixes an issue with parsing certain types of headers. This change also updates the `regex` crate to address RUSTSEC-2022-0013, which could theoretically allow maliciously crafted ServiceProfile resources to consume an arbitrary amount of proxy resources. --- * ci: Only run checks on changed crates (linkerd/linkerd2-proxy#1498) * build(deps): bump libc from 0.2.117 to 0.2.118 (linkerd/linkerd2-proxy#1502) * ci: Run fuzzing only on related changes (linkerd/linkerd2-proxy#1501) * deps: update to `tokio` 1.17.0 and `tower` 0.4.12, and unpatch (linkerd/linkerd2-proxy#1503) * build(deps): bump tj-actions/changed-files (linkerd/linkerd2-proxy#1505) * build(deps): bump cc from 1.0.72 to 1.0.73 (linkerd/linkerd2-proxy#1506) * cargo: Omit patch versions from Cargo.toml files (linkerd/linkerd2-proxy#1504) * build(deps): bump tracing-subscriber from 0.3.8 to 0.3.9 (linkerd/linkerd2-proxy#1509) * build(deps): bump tracing from 0.1.30 to 0.1.31 (linkerd/linkerd2-proxy#1508) * build(deps): bump tj-actions/changed-files from 15.1 to 16 (linkerd/linkerd2-proxy#1507) * build(deps): bump rustls from 0.20.3 to 0.20.4 (linkerd/linkerd2-proxy#1510) * build(deps): bump parking_lot_core from 0.9.0 to 0.9.1 (linkerd/linkerd2-proxy#1511) * build(deps): bump libc from 0.2.118 to 0.2.119 (linkerd/linkerd2-proxy#1512) * build(deps): bump anyhow from 1.0.53 to 1.0.55 (linkerd/linkerd2-proxy#1514) * build(deps): bump getrandom from 0.2.4 to 0.2.5 (linkerd/linkerd2-proxy#1516) * build(deps): bump tj-actions/changed-files from 16 to 17 (linkerd/linkerd2-proxy#1515) * Add ExponentialBackoff::new_unchecked (linkerd/linkerd2-proxy#1517) * Update Rust to v1.59.0 (linkerd/linkerd2-proxy#1519) * build(deps): bump drain from 0.1.0 to 0.1.1 (linkerd/linkerd2-proxy#1521) * build(deps): bump tj-actions/changed-files from 17 to 17.2 (linkerd/linkerd2-proxy#1520) * build(deps): bump trust-dns-resolver from 0.21.0-alpha.5 to 0.21.1 (linkerd/linkerd2-proxy#1522) * build(deps): bump redox_syscall from 0.2.10 to 0.2.11 (linkerd/linkerd2-proxy#1524) * build(deps): bump actions/checkout from 2.4.0 to 3 (linkerd/linkerd2-proxy#1525) * build(deps): bump actions/download-artifact from 2.1.0 to 3 (linkerd/linkerd2-proxy#1526) * build(deps): bump once_cell from 1.9.0 to 1.10.0 (linkerd/linkerd2-proxy#1529) * build(deps): bump anyhow from 1.0.55 to 1.0.56 (linkerd/linkerd2-proxy#1531) * build(deps): bump actions/upload-artifact from 2.3.1 to 3 (linkerd/linkerd2-proxy#1527) * build(deps): bump libfuzzer-sys from 0.4.2 to 0.4.3 (linkerd/linkerd2-proxy#1528) * build(deps): bump ipnet from 2.3.1 to 2.4.0 (linkerd/linkerd2-proxy#1530) * build(deps): bump regex from 1.5.4 to 1.5.5 (linkerd/linkerd2-proxy#1535) * build(deps): bump tj-actions/changed-files from 17.2 to 17.3 (linkerd/linkerd2-proxy#1534) * Update h2 to use unpublished changes (linkerd/linkerd2-proxy#1536) * build(deps): bump tracing from 0.1.31 to 0.1.32 (linkerd/linkerd2-proxy#1537) * Use the connection's HTTP version in transport header (linkerd/linkerd2-proxy#1533) * bump `h2` to v0.3.12 and remove patch (linkerd/linkerd2-proxy#1538) Signed-off-by: Oliver Gould <[email protected]>
olix0r
pushed a commit
that referenced
this pull request
Mar 30, 2022
Version v0.3.12 of `h2` has been published, so we no longer need the patch added in #1536 to pick up unreleased changes. Signed-off-by: Eliza Weisman <[email protected]> (cherry picked from commit d16ffa5) Signed-off-by: Oliver Gould <[email protected]>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
h2has a few important changes since its last official release:This change patches our
h2dependency to use the laster commit on themaster branch.
Signed-off-by: Oliver Gould [email protected]