Releases: EmbarkStudios/cargo-deny-action
Releases · EmbarkStudios/cargo-deny-action
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.
Release 2.0.0 - cargo-deny 0.16.0
Action
Added
Changed
- This release includes breaking changes in cargo-deny, so this release begins the
v2
tag, usingv1
will be stable but not follow futurecargo-deny
releases.
cargo-deny
Removed
- PR#681 finished the deprecation introduced in PR#611, making the usage of the deprecated fields into errors.
[advisories]
The following fields have all been removed in favor of denying all advisories by default. To ignore an advisory the ignore
field can be used as before.
vulnerability
- Vulnerability advisories are nowdeny
by defaultunmaintained
- Unmaintained advisories are nowdeny
by defaultunsound
- Unsound advisories are nowdeny
by defaultnotice
- Notice advisories are nowdeny
by defaultseverity-threshold
- The severity of vulnerabilities is now irrelevant
[licenses]
The following fields have all been removed in favor of denying all licenses that are not explicitly allowed via either allow
or exceptions
.
unlicensed
- Crates whose license(s) cannot be confidently determined are now always errors. Theclarify
field can be used to help cargo-deny determine the license.allow-osi-fsf-free
- The OSI/FSF Free attributes are now irrelevant, only whether it is explicitly allowed.copyleft
- The copyleft attribute is now irrelevant, only whether it is explicitly allowed.default
- The default is nowdeny
.deny
- All licenses are now denied by default, this field added nothing.
Changed
- PR#685 follows up on PR#673, moving the fields that were added to their own separate
bans.workspace-dependencies
section. This is an unannounced breaking change but is fairly minor and 0.15.0 was never released on github actions so the amount of people affected by this will be (hopefully) small. This also makes the workspace duplicate detection off by default since the field is optional, but makes it so that if not specified workspace duplicates are nowdeny
instead ofwarn
.
Fixed
Release 1.6.3 - cargo-deny 0.14.21
Fixed
- PR#643 resolved #629 by making the hosted git (github, gitlab, bitbucket) org/user name comparison case-insensitive. Thanks @pmnlla!
- PR#649 fixed an issue where depending on the same crate multiple times by using different
cfg()/triple
targets could cause features to be resolved incorrectly and thus crates to be not pulled into the graph used for checking.
[0.14.20] - 2024-03-23
Fixed
- PR#642 resolved #641 by pinning
gix-transport
(and its unique dependencies) to 0.41.2 as a workaround forcargo install
not using the lockfile. See this issue for more information.
Release 1.6.2 - cargo-deny 0.14.19
Changed
- PR#639 updated tame-index to avoid an error if you don't used
--locked
.
[0.14.18] - 2024-03-21
Fixed
[0.14.17] - 2024-03-17
Changed
v1.6.1
v1.6.0
action changes
- Color output is now always enabled so that colors show up in the action output.
0.14.15
Added
- PR#618 added metadata notes to diagnostics when a license is rejected, as well as removing span information for accepted licenses unless the log level is
info
or higher to make the diagnostic clearer by default.
0.14.14
Fixed
0.14.13
Fixed
- PR#615 fixed an issue introduced in PR#605 where the various
bans
diagnostic codes could not have their lint level changed via the CLI. It also introduced thedeprecated
diagnostic code.
0.14.12
Changed
- PR#605 did a major refactor of configuration, both how it is deserialized and changing (hopefully improving) many options.
- PR#605 moved
targets
,exclude
,all-features
,features
,no-default-features
, andexclude
into the[graph]
table. - PR#605 moved
feature-depth
into the[output]
table.
Added
- PR#613 added support for basic shell expansion to
advisories.db-path
, which expands support beyond just~
to include environment variable expansion.
Fixed
- PR#601 resolved #600 by outputting the correct spans when a license was both allowed and denied.
- PR#605 resolved #264 be replacing
toml
andserde
withtoml-span
. - PR#605 resolved #539 by simplifying the very common
name = "<crate_name>", version = "<requirements>"
used to target specific crates into either a plain package spec string or the simplercrate = "<package spec>"
. - PR#605 resolved #578 by adding a
reason = "<reason>"
field to many fields within the configuration that are provided in diagnostics.[bans.deny]
also has an additionaluse-instead = "<url/crate_name>"
. PR#610 did this for theadvisories.ignore
field. - PR#605 resolved #579 by allowing yanked crates to be ignored by specifying a PackageSpec in the
[advisories.ignore]
array.
Deprecated
- PR#606 and PR#611 together deprecated several fields listed below. See PR#611 for how to change your config to opt-in to the new behavior that will become the default when the deprecated fields are removed in a future minor version.
[advisories]
vulnerability
unmaintained
unsound
notice
severity-threshold
[licenses]
unlicensed
allow-osi-fsf-free
copyleft
default
deny
Release 1.5.15 - cargo-deny 0.14.11
Fixed
- Resolved #71 that was introduced in the previous release.