build(deps): update linkerd2-proxy-api from 0.18.0 to 0.20.0#4552
Merged
Conversation
see: * https://github.com/linkerd/linkerd2-proxy-api/releases/tag/v0.20.0 * linkerd/linkerd2-proxy-api#562 * linkerd/linkerd2-proxy-api#559 * linkerd/linkerd2-proxy-api#565 * #4537 * #4546 * #4544 this commit updates linkerd2-proxy-api, pulling in the latest release. aside from a slew of dependency updates, this new version most importantly includes changes to set the state for forthcoming load-balancing work. these new fields are marked with "todo" comments to indicate where future work in `linkerd-proxy-client-policy` in that vein will introduce future enum variants, fields, marshalling and validation, etc. this new version also includes an update to the most recent version of rand, which will allow us to properly update to the latest version of hickory-resolver without introducing breakage in our audit job in CI. Signed-off-by: katelyn martin <kate@buoyant.io>
cratelyn
commented
Jun 3, 2026
Comment on lines
+399
to
+401
|
|
||
| #[error("penalty peak ewma mode is not yet supported")] | ||
| PenaltyPeakEwmaUnsupported, |
Member
Author
| Forward(SocketAddr, Arc<EndpointMetadata>), | ||
| BalanceP2c(Load, EndpointDiscovery), | ||
| Fail { message: Arc<str> }, | ||
| // TODO(kate): add a `PenaltyPeakEwma` variant here. |
Member
Author
There was a problem hiding this comment.
and as the description notes, i've left some TODO(kate) comments here and elsewhere to leave breadcrumbs for when we wire this up.
adleong
approved these changes
Jun 3, 2026
cratelyn
added a commit
that referenced
this pull request
Jun 4, 2026
see: * https://rustsec.org/advisories/RUSTSEC-2026-0120.html * https://rustsec.org/advisories/RUSTSEC-2026-0119.html * GHSA-3v94-mw7p-v465 * GHSA-q2qq-hmj6-3wpp * https://www.cve.org/CVERecord?id=CVE-2024-8508 this branch provides changes, updating `hickory-resolver` in particular, to address RUSTSEC-2026-0120 (_aka GHSA-3v94-mw7p-v465_) and RUSTSEC-2026-0119 (_aka GHSA-q2qq-hmj6-3wpp, CVE-2024-8508_). we update `hickory-resolver` from 0.25.2 to 0.26.1. this is a significant release that includes many changes to the hickory-resolver public interface. see the release notes in 0.26.0 for a detailed summary of changes to that library since 0.25.2. see also: * #4552 * linkerd/linkerd2-proxy-api#561 * linkerd/linkerd2-proxy-api#562 * linkerd/linkerd2-proxy-api#563 * open-telemetry/opentelemetry-rust#3536 this branch updates the `quickcheck` library to 1.1.0, now that the linkerd2-proxy-api dependency has been updated to v0.20.0. this removes a dependency on rand@0.8. rand 0.9 is still in our dependency tree, and is ignored in our `cargo deny` at the time of writing. open-telemetry/opentelemetry-rust#3536 updates our remaining dependency on rand 0.9, but otherwise we now depend entirely on rand 0.10. Signed-off-by: katelyn martin <kate@buoyant.io>
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.
see:
this commit updates linkerd2-proxy-api, pulling in the latest release.
aside from a slew of dependency updates, this new version most
importantly includes changes to set the state for forthcoming
load-balancing work.
these new fields are marked with "todo" comments to indicate where
future work in
linkerd-proxy-client-policyin that vein will introducefuture enum variants, fields, marshalling and validation, etc.
this new version also includes an update to the most recent version of
rand, which will allow us to properly update to the latest version of
hickory-resolver without introducing breakage in our audit job in CI.
Signed-off-by: katelyn martin kate@buoyant.io