Releases: EmbarkStudios/cargo-deny-action
Releases Β· EmbarkStudios/cargo-deny-action
v2.0.10
Release 2.0.9 - cargo-deny 0.18.0
- d8395c1 removed the rustup update.
v2.0.8
Release 2.0.7 - cargo-deny 0.18.0
- PR#92 fixed an issue introduced by the latest rustup release.
Release 2.0.6 - cargo-deny 0.18.0
Changed
- PR#746 changed the directory naming of advisory databases, again, so the name uses the last path component and a different, but also stable, hashing algorithm. Eg. the default
https://github.com/rustsec/advisory-db
will now be placed in$CARGO_HOME/advisory-dbs/advisory-db-3157b0e258782691
. - PR#746 changed the MSRV to 1.85.0 and uses edition 2024.
Fixed
- PR#746 fixes an issue when using cargo 1.85.0 where source urls were not being properly assigned to crates.io due to the constant being used no longer matching the new path used in cargo 1.85.0 causing eg. workspace dependency checks to fail.
Release 2.0.5 - cargo-deny 0.17.0
Release 2.0.4 - cargo-deny 0.16.3
- Update base image to rust 1.83.0 so that version 4 lockfiles are supported with no config changes
Release 2.0.3 - cargo-deny 0.16.3
Release 2.0.2 - cargo-deny 0.16.2
Fixed
- PR#703 resolved #696 by no longer emitting errors when failing to deserialize deprecated fields, and removed some lingering documentation that wasn't removed in PR#611.
- PR#719 updated to
krates
-> 0.17.5, fixing an issue wherecargo-deny
could panic due to incorrectly resolving features for different versions of the same crate referenced by a single crate. - PR#719 resolved #706 by removing a warning issued when users use ignored scheme modifiers for source urls.
- PR#719 resolved #718 by updating the book with missing arguments.
Added
- PR#715 resolved #714 by adding support for Edition 2024. Thanks @kpcyrd!
- PR#710 resolved #708 by allowing for unpublished workspace crates to be excluded from the dependency graph that checks are run against, either via the
--exclude-unpublished
CLI argument or thegraph.exclude-unpublished
config field. Thanks @Tastaturtaste!
Changed
Release 2.0.1 - cargo-deny 0.16.1
Fixed
- PR#691 fixed an issue where workspace dependencies that used the current dir '.' path component would incorrectly trigger the
unused-workspace-dependency
lint.