chore(deny): allow same licenses as linkerd2 - #563
Merged
Conversation
this commit updates the `rust-version` field, so that we can update our dependencies to more recent versions. this field has not been updated in many years, which means that we've fallen out of step with the devcontainer used to build linkerd, and cannot pull in equivalent dependencies. see: - https://github.com/linkerd/dev/blob/main/Dockerfile#L9 - https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field - https://doc.rust-lang.org/cargo/reference/rust-version.html Signed-off-by: katelyn martin <kate@buoyant.io>
see #562. this commit updates our deny.toml file to allow the same licenses that linkerd2 and linkerd2-proxy allow. this way, we can update our dependency tree to use the same dependencies that our data and control planes use. Signed-off-by: katelyn martin <kate@buoyant.io>
Member
Author
|
this is based on #561. |
cratelyn
marked this pull request as ready for review
June 2, 2026 20:03
cratelyn
commented
Jun 2, 2026
Comment on lines
26
to
+33
| allow = [ | ||
| "Apache-2.0", | ||
| "BSD-2-Clause", | ||
| "BSD-3-Clause", | ||
| "ISC", | ||
| "MIT", | ||
| "Unicode-3.0", | ||
| "Zlib", |
Member
Author
There was a problem hiding this comment.
adleong
approved these changes
Jun 2, 2026
cratelyn
added a commit
to linkerd/linkerd2-proxy
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 #562.
this commit updates our deny.toml file to allow the same licenses that
linkerd2 and linkerd2-proxy allow.
this way, we can update our dependency tree to use the same dependencies
that our data and control planes use.
Signed-off-by: katelyn martin kate@buoyant.io