Conversation
Ensures that the next `cargo-audit` release will always be built with this version at a minimum, which should help ensure bugs in the previous release were fixed.
Merged
tarcieri
added a commit
that referenced
this pull request
May 7, 2021
The intent is for `cargo-audit` to warn about these, printing their titles, but not exit with an error. Two types of informational advisories are introduced: - `notice`: Used to publish security-related notices about a crate which don't directly map to a vulnerability in the crates source code, such as an insecure configuration or practice. - `unmaintained`: crate is unmaintained / abandoned. The enum representing `Informational` advisories is kept open-ended through a third `Other(String)` variant which allows additional categories of informational advisories to be added in the future in a backwards-compatible way. It additionally adds an `obsolete` flag which can be used to indicate an informational advisory no longer applies, which can be used when unmaintained crates find new maintainers. Finally, it renames the previous `Info` struct (representing the `[advisory]` section) to `metadata` so as not to have `info` and `informational`, which would be confusing.
tarcieri
added a commit
that referenced
this pull request
May 7, 2021
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> Co-authored-by: Tony Arcieri <bascule@gmail.com>
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.
Ensures that the next
cargo-auditrelease will always be built with this version at a minimum, which should help when communicating about whether or not the bugs in the previous release were fixed.