Skip to content

Commit e6343bf

Browse files
[issue-426] update model: external reference types
to 96d516e846c4911bf28c690fe2d925aa854991b4 Signed-off-by: Armin Tänzer <armin.taenzer@tngtech.com>
1 parent 199cc42 commit e6343bf

2 files changed

Lines changed: 19 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ additional installation of optional dependencies
5050
* Serialize to JSON-LD
5151

5252
See [Quickstart to SPDX 3.0](#quickstart-to-spdx-30) below.
53-
The implementation is based on the descriptive markdown files in the repository https://github.com/spdx/spdx-3-model (latest commit: 58b356c7fb046d90f8e0ddd49460246912a949c2).
53+
The implementation is based on the descriptive markdown files in the repository https://github.com/spdx/spdx-3-model (latest commit: 96d516e846c4911bf28c690fe2d925aa854991b4).
5454

5555

5656
# Installation

src/spdx_tools/spdx3/model/external_reference.py

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,39 @@ class ExternalReferenceType(Enum):
1616
BINARY_ARTIFACT = auto()
1717
BUILD_META = auto()
1818
BUILD_SYSTEM = auto()
19+
CERTIFICATION_REPORT = auto()
1920
CHAT = auto()
21+
COMPONENT_ANALYSIS_REPORT = auto()
2022
DOCUMENTATION = auto()
23+
DYNAMIC_ANALYSIS_REPORT = auto()
24+
EOL_NOTICE = auto()
2125
FUNDING = auto()
2226
ISSUE_TRACKER = auto()
27+
LICENSE = auto()
2328
MAILING_LIST = auto()
2429
METRICS = auto()
25-
LICENSE = auto()
2630
OTHER = auto()
27-
RELEASE_NOTES = auto()
31+
PRODUCT_METADATA = auto()
32+
QUALITY_ASSESSMENT_REPORT = auto()
2833
RELEASE_HISTORY = auto()
34+
RELEASE_NOTES = auto()
35+
RISK_ASSESSMENT = auto()
36+
RUNTIME_ANALYSIS_REPORT = auto()
37+
SECURE_SOFTWARE_ATTESTATION = auto()
38+
SECURITY_ADVERSARY_MODEL = auto()
2939
SECURITY_ADVISORY = auto()
3040
SECURITY_FIX = auto()
3141
SECURITY_OTHER = auto()
42+
SECURITY_PEN_TEST_REPORT = auto()
43+
SECURITY_POLICY = auto()
44+
SECURITY_THREAT_MODEL = auto()
3245
SOCIAL_MEDIA = auto()
3346
SOURCE_ARTIFACT = auto()
47+
STATIC_ANALYSIS_REPORT = auto()
3448
SUPPORT = auto()
3549
VCS = auto()
50+
VULNERABILITY_DISCLOSURE_REPORT = auto()
51+
VULNERABILITY_EXPLOITABILITY_ASSESSMENT = auto()
3652

3753

3854
@dataclass_with_properties

0 commit comments

Comments
 (0)