Skip to content

Commit

Permalink
feat: add support for CycloneDX 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyharrison committed May 2, 2024
1 parent 7759318 commit 6c814de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ The following section identifies the checks which are performed.

The following checks are performed:

- Check that the version of the SBOM is either version 2.2 or 2.3 (SPDX) or version 1.3, 1.4 or 1.5 (CycloneDX).
- Check that the version of the SBOM is either version 2.2 or 2.3 (SPDX) or version 1.3, 1.4, 1.5 or 1.6 (CycloneDX).

- Check that a creator is defined.

Expand Down
2 changes: 1 addition & 1 deletion sbomaudit/audit.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def audit_sbom(self, sbom_parser):
else:
self._check_value(
"Up to date CycloneDX Version",
["1.3", "1.4", "1.5"],
["1.3", "1.4", "1.5", "1.6"],
document.get_version(),
)
creation_time = document.get_created() is not None
Expand Down

0 comments on commit 6c814de

Please sign in to comment.