Prepare for v0.32.0 #2874
knqyf263
started this conversation in
Development
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The release note of v0.32.0
🚀 What's new? 🚀
👽 C/C++ Conan support 🕵️
Trivy now scans C/C++ dependencies installed using the Conan package manager.
🐘 Java Gradle support ☕️
Trivy now scans Java dependencies installed using the Gradle build system.
🆒 SBOM attestation scanning from sigstore/rekor 🌐
Trivy could already scan SBOM and SBOM attestations instead of a full image scan, but now trivy can automatically discover the SBOM attestation for the target image in sigstore's Rekor transparency log! This new feature is enabled using the
--sbom-attestation
flag on theimage
target.📜 SPDX SBOM scanning 🔍
This release adds support for scan SBOM documents in SPDX format. (This feature joins trivy's existing support for scanning SBOM in CycloneDX format).
🧅 Identify layer of detected secrets 👈
When Trivy scans for secrets in container images, it will now show which layer introduced that secret. For convenience, the layer is presented as the Dockerfile line that created it. This is especially useful when finding detected secrets originate in deleted layers.
🐆 Support file patterns for package scanning *️⃣
You can now specify file patterns Trivy should consider in vulnerability scanning using the
--file-patterns
flag. Previously this flag only worked for misconfiguration scanning. For exampletrivy image myimage --file-patterns "pip:requirements-.*\.txt"
will enable trivy to scan the filerequirements-something.txt
for python pip vulnerabilityes.Thanks to @jerbob92 for the contribution: #2539
✍️ Sign released artifacts 📦
Beginning with this release, all release artifacts will be cryptographically signed using sigstore/cosign. This allows users to verify the integrity of artifacts before using them.
Thanks to @JAORMX for the contribution: #2789
🌲 Show dependency graph of Rust binaries 🦀
In the previous release Trivy gained support for scanning binaries built with Rust and cargo-auditable. This release adds support for identifying the origin of Rust dependencies with the
--dependency-tree
.⎈ Kubernetes resources for deprecated and removal APIs 💀
When Trivy scans Kubernetes resources it can now alert when the resource is using a deprecated (or about to be) API, and will also suggest the recommended newer version.
Beta Was this translation helpful? Give feedback.
All reactions