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

chore: Update templated files (35074dc) #142

Merged
merged 1 commit into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,27 @@ targets = [

[advisories]
yanked = "deny"
ignore = [
# https://rustsec.org/advisories/RUSTSEC-2023-0071
# "rsa" crate: Marvin Attack: potential key recovery through timing sidechannel
#
# No patch is yet available, however work is underway to migrate to a fully constant-time implementation
# So we need to accept this, as of SDP 24.11 we are not using the rsa crate to create certificates used in production
# setups.
#
# TODO: Remove after https://github.com/RustCrypto/RSA/pull/394 is merged
"RUSTSEC-2023-0071",

# https://rustsec.org/advisories/RUSTSEC-2024-0384
# "instant" is unmaintained
#
# The upstream "kube" crate also silenced this in https://github.com/kube-rs/kube/commit/4f1e889f265da8f19f03f60683569cae1a154fda
# They/we are actively working on migrating kube from backoff to backon, which removes the transitive dependency on
# instant, in https://github.com/kube-rs/kube/pull/1652.
#
# TODO: Remove after https://github.com/kube-rs/kube/pull/1652 is merged
"RUSTSEC-2024-0384",
]

[bans]
multiple-versions = "allow"
Expand All @@ -26,6 +47,7 @@ allow = [
"LicenseRef-webpki",
"MIT",
"MPL-2.0",
"OpenSSL", # Needed for the ring and/or aws-lc-sys crate. See https://github.com/stackabletech/operator-templating/pull/464 for details
"Unicode-3.0",
"Unicode-DFS-2016",
"Zlib",
Expand Down
2 changes: 1 addition & 1 deletion scripts/docs_templating.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ fi
if ! command -v jinja2 &> /dev/null
then
echo "jinja2 could not be found. Use 'pip install jinja2-cli' to install it."
exit
exit 1
fi

# Check if templating vars file exists
Expand Down
Loading