diff --git a/cyclonedx_py/_internal/__init__.py b/cyclonedx_py/_internal/__init__.py
index d718f27b5..1206f2ad7 100644
--- a/cyclonedx_py/_internal/__init__.py
+++ b/cyclonedx_py/_internal/__init__.py
@@ -71,13 +71,6 @@ class PropertyName(Enum):
# region poetry
# see https://github.com/CycloneDX/cyclonedx-property-taxonomy/blob/main/cdx/poetry.md
PoetryGroup = 'cdx:poetry:group'
- # region poetry-deprecated
- # the following property names are deprecated
- PoetryPackageSourceReference_misspelled = 'cdx:poetry:source:package:reference'
- PoetryPackageSourceResolvedReference = 'cdx:poetry:package:source:resolved_reference'
- PoetryPackageSourceVcsRequestedRevision = 'cdx:poetry:package:source:vcs:requested_revision'
- PoetryPackageSourceVcsCommitId = 'cdx:poetry:package:source:vcs:commit_id'
- # endregion poetry-deprecated
# endregion poetry
# region pipenv
diff --git a/cyclonedx_py/_internal/environment.py b/cyclonedx_py/_internal/environment.py
index b676db2d8..afec47268 100644
--- a/cyclonedx_py/_internal/environment.py
+++ b/cyclonedx_py/_internal/environment.py
@@ -245,16 +245,10 @@ def __component_add_extref_and_purl(self, component: 'Component',
component.properties.add(Property(
name=PropertyName.PythonPackageSourceVcsCommitId.value,
value=packagesource.commit_id))
- component.properties.add(Property(
- name=PropertyName.PoetryPackageSourceVcsCommitId.value, # deprecated
- value=packagesource.commit_id))
if packagesource.requested_revision:
component.properties.add(Property(
name=PropertyName.PythonPackageSourceVcsRequestedRevision.value,
value=packagesource.requested_revision))
- component.properties.add(Property(
- name=PropertyName.PoetryPackageSourceVcsRequestedRevision.value, # deprecated
- value=packagesource.requested_revision))
elif isinstance(packagesource, PackageSourceArchive):
if '://files.pythonhosted.org/' not in packagesource.url:
# skip PURL bloat, do not add implicit information
diff --git a/cyclonedx_py/_internal/poetry.py b/cyclonedx_py/_internal/poetry.py
index 36d13b6af..df80ef502 100644
--- a/cyclonedx_py/_internal/poetry.py
+++ b/cyclonedx_py/_internal/poetry.py
@@ -416,16 +416,6 @@ def __make_component4lock(self, package: 'T_NameDict') -> 'Component':
name=PropertyName.PoetryGroup.value,
value=package['category']
) if 'category' in package else None,
- # region deprecated
- Property(
- name=PropertyName.PoetryPackageSourceReference_misspelled.value, # deprecated
- value=source['reference']
- ) if is_vcs and 'reference' in source else None,
- Property(
- name=PropertyName.PoetryPackageSourceResolvedReference.value, # deprecated
- value=source['resolved_reference']
- ) if is_vcs and 'resolved_reference' in source else None,
- # endregion deprecated
)),
purl=PackageURL(
type=PurlTypePypi,
diff --git a/cyclonedx_py/_internal/utils/__init__.py b/cyclonedx_py/_internal/utils/__init__.py
new file mode 100644
index 000000000..e6cc23156
--- /dev/null
+++ b/cyclonedx_py/_internal/utils/__init__.py
@@ -0,0 +1,16 @@
+# This file is part of CycloneDX Python
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# SPDX-License-Identifier: Apache-2.0
+# Copyright (c) OWASP Foundation. All Rights Reserved.
diff --git a/cyclonedx_py/_internal/utils/cdx.py b/cyclonedx_py/_internal/utils/cdx.py
index b6abc6f5a..4ac1c5340 100644
--- a/cyclonedx_py/_internal/utils/cdx.py
+++ b/cyclonedx_py/_internal/utils/cdx.py
@@ -23,54 +23,67 @@
from re import compile as re_compile
from typing import Any, Dict, Iterable
-from cyclonedx.model import ExternalReference, ExternalReferenceType, Tool, XsUri
+from cyclonedx.builder.this import this_component as lib_component
+from cyclonedx.model import ExternalReference, ExternalReferenceType, XsUri
from cyclonedx.model.bom import Bom
-from cyclonedx.model.license import License, LicenseExpression
+from cyclonedx.model.component import Component, ComponentType
+from cyclonedx.model.license import DisjunctiveLicense, License, LicenseAcknowledgement, LicenseExpression
-from cyclonedx_py import __version__
+from ... import __version__ as __THIS_VERSION # noqa:N812
def make_bom(**kwargs: Any) -> Bom:
bom = Bom(**kwargs)
- bom.metadata.tools.add(Tool(
- # keep in sync with `../../../pyproject.toml`
- vendor='CycloneDX',
- name='cyclonedx-bom',
- version=__version__,
- external_references=[
- ExternalReference(
- type=ExternalReferenceType.BUILD_SYSTEM,
- url=XsUri('https://github.com/CycloneDX/cyclonedx-python/actions')
+ bom.metadata.tools.components.update((
+ lib_component(),
+ Component(
+ type=ComponentType.APPLICATION,
+ group='CycloneDX',
+ # package is called 'cyclonedx-bom', but the tool is called 'cyclonedx-py'
+ name='cyclonedx-py',
+ version=__THIS_VERSION,
+ description='CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments',
+ licenses=(DisjunctiveLicense(id='Apache-2.0',
+ acknowledgement=LicenseAcknowledgement.DECLARED),),
+ external_references=(
+ # let's assume this is not a fork
+ ExternalReference(
+ type=ExternalReferenceType.WEBSITE,
+ url=XsUri('https://github.com/CycloneDX/cyclonedx-python/#readme')
+ ),
+ ExternalReference(
+ type=ExternalReferenceType.DOCUMENTATION,
+ url=XsUri('https://cyclonedx-bom-tool.readthedocs.io/')
+ ),
+ ExternalReference(
+ type=ExternalReferenceType.VCS,
+ url=XsUri('https://github.com/CycloneDX/cyclonedx-python/')
+ ),
+ ExternalReference(
+ type=ExternalReferenceType.BUILD_SYSTEM,
+ url=XsUri('https://github.com/CycloneDX/cyclonedx-python/actions')
+ ),
+ ExternalReference(
+ type=ExternalReferenceType.ISSUE_TRACKER,
+ url=XsUri('https://github.com/CycloneDX/cyclonedx-python/issues')
+ ),
+ ExternalReference(
+ type=ExternalReferenceType.LICENSE,
+ url=XsUri('https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE')
+ ),
+ ExternalReference(
+ type=ExternalReferenceType.RELEASE_NOTES,
+ url=XsUri('https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md')
+ ),
+ # we cannot assert where the lib was fetched from, but we can give a hint
+ ExternalReference(
+ type=ExternalReferenceType.DISTRIBUTION,
+ url=XsUri('https://pypi.org/project/cyclonedx-bom/')
+ ),
),
- ExternalReference(
- type=ExternalReferenceType.DISTRIBUTION,
- url=XsUri('https://pypi.org/project/cyclonedx-bom/')
- ),
- ExternalReference(
- type=ExternalReferenceType.DOCUMENTATION,
- url=XsUri('https://cyclonedx-bom-tool.readthedocs.io/')
- ),
- ExternalReference(
- type=ExternalReferenceType.ISSUE_TRACKER,
- url=XsUri('https://github.com/CycloneDX/cyclonedx-python/issues')
- ),
- ExternalReference(
- type=ExternalReferenceType.LICENSE,
- url=XsUri('https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE')
- ),
- ExternalReference(
- type=ExternalReferenceType.RELEASE_NOTES,
- url=XsUri('https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md')
- ),
- ExternalReference(
- type=ExternalReferenceType.VCS,
- url=XsUri('https://github.com/CycloneDX/cyclonedx-python/')
- ),
- ExternalReference(
- type=ExternalReferenceType.WEBSITE,
- url=XsUri('https://github.com/CycloneDX/cyclonedx-python/#readme')
- )
- ]))
+ # to be extended...
+ ),
+ ))
return bom
diff --git a/pyproject.toml b/pyproject.toml
index 64a63ad35..bd9a9d360 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -5,7 +5,6 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry]
-# keep in sync with `cyclonedx_py/_internal/utils/cdx.py`
name = "cyclonedx-bom"
version = "4.6.1"
description = "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments"
@@ -69,7 +68,7 @@ cyclonedx-py = "cyclonedx_py._internal.cli:run"
[tool.poetry.dependencies]
python = "^3.8"
-cyclonedx-python-lib = { version = "^7.3.0, !=7.3.1", extras = ["validation"] }
+cyclonedx-python-lib = { version = "^8.0", extras = ["validation"] }
packageurl-python = ">=0.11, <2" # keep in sync with same dep in `cyclonedx-python-lib`
pip-requirements-parser = "^32.0"
packaging = "^22 || ^23 || ^24"
@@ -92,6 +91,7 @@ isort = "5.13.2"
autopep8 = "2.3.1"
mypy = "1.11.2"
bandit = "1.7.10"
+tomli = { version = "^2.0.1", python = "<3.11" }
tox = "4.21.2"
# min version required to be able to install some dependencies
# see https://github.com/MichaelKim0407/flake8-use-fstring/issues/33
diff --git a/tests/__init__.py b/tests/__init__.py
index 0205481e3..2451c9929 100644
--- a/tests/__init__.py
+++ b/tests/__init__.py
@@ -15,14 +15,12 @@
# SPDX-License-Identifier: Apache-2.0
# Copyright (c) OWASP Foundation. All Rights Reserved.
-
+import sys
from json import dumps as json_dumps
-from os import getenv
-from os.path import dirname, join
+from os import getenv, path
from pathlib import Path
from re import sub as re_sub
-from sys import stderr
-from typing import Union
+from typing import Any, Dict, Union
from unittest import TestCase
from xml.sax.saxutils import escape as xml_escape, quoteattr as xml_quoteattr # nosec:B406
@@ -32,16 +30,16 @@
RECREATE_SNAPSHOTS = '1' == getenv('CDX_TEST_RECREATE_SNAPSHOTS')
if RECREATE_SNAPSHOTS:
- print('!!! WILL RECREATE ALL SNAPSHOTS !!!', file=stderr)
+ print('!!! WILL RECREATE ALL SNAPSHOTS !!!', file=sys.stderr)
INIT_TESTBEDS = '1' != getenv('CDX_TEST_SKIP_INIT_TESTBEDS')
if INIT_TESTBEDS:
- print('!!! WILL INIT TESTBEDS !!!', file=stderr)
+ print('!!! WILL INIT TESTBEDS !!!', file=sys.stderr)
-_TESTDATA_DIRECTORY = join(dirname(__file__), '_data')
+_TESTDATA_DIRECTORY = path.join(path.dirname(__file__), '_data')
-INFILES_DIRECTORY = join(_TESTDATA_DIRECTORY, 'infiles')
-SNAPSHOTS_DIRECTORY = join(_TESTDATA_DIRECTORY, 'snapshots')
+INFILES_DIRECTORY = path.join(_TESTDATA_DIRECTORY, 'infiles')
+SNAPSHOTS_DIRECTORY = path.join(_TESTDATA_DIRECTORY, 'snapshots')
UNSUPPORTED_OF_SV = (
(OutputFormat.JSON, SchemaVersion.V1_1),
@@ -60,7 +58,7 @@ class SnapshotMixin:
@staticmethod
def getSnapshotFile(snapshot_name: str) -> str: # noqa: N802
- return join(SNAPSHOTS_DIRECTORY, f'{snapshot_name}.bin')
+ return path.join(SNAPSHOTS_DIRECTORY, f'{snapshot_name}.bin')
@classmethod
def writeSnapshot(cls, snapshot_name: str, data: str) -> None: # noqa: N802
@@ -92,18 +90,46 @@ def assertEqualSnapshot(self: Union[TestCase, 'SnapshotMixin'], # noqa: N802
_root_file_uri_xml_attr = xml_quoteattr(_root_file_uri)[1:-1]
_root_file_uri_json = json_dumps(_root_file_uri)[1:-1]
+# package is called 'cyclonedx-bom', but the tool is called 'cyclonedx-py'
+EXPECTED_TOOL_NAME = 'cyclonedx-py'
+
def make_xml_comparable(bom: str) -> str:
bom = bom.replace(_root_file_uri_xml, 'file://.../')
bom = bom.replace(_root_file_uri_xml_attr, 'file://.../')
- bom = bom.replace( # replace metadata.tools.version
+ bom = bom.replace( # replace this version in metadata.tools.components
+ ' CycloneDX\n'
+ f' {EXPECTED_TOOL_NAME}\n'
+ f' {__this_version}',
+ ' CycloneDX\n'
+ f' {EXPECTED_TOOL_NAME}\n'
+ ' thisVersion-testing')
+ bom = bom.replace( # replace this version in metadata.tools
' CycloneDX\n'
- ' cyclonedx-bom\n'
+ f' {EXPECTED_TOOL_NAME}\n'
f' {__this_version}',
' CycloneDX\n'
- ' cyclonedx-bom\n'
+ f' {EXPECTED_TOOL_NAME}\n'
' thisVersion-testing')
- bom = re_sub( # replace metadata.tools.version
+ bom = re_sub( # replace lib-dynamics in metadata.tools.components
+ ' CycloneDX\n'
+ ' cyclonedx-python-lib\n'
+ ' .*?\n'
+ ' .*?\n'
+ ' \n'
+ '(?: .*?\n)*'
+ ' \n'
+ ' \n'
+ '(?: .*?\n)*'
+ ' ',
+ ' CycloneDX\n'
+ ' cyclonedx-python-lib\n'
+ ' libVersion-testing\n'
+ ' \n'
+ ' \n'
+ ' ',
+ bom)
+ bom = re_sub( # replace lib-dynamics version in metadata.tools[]
' CycloneDX\n'
' cyclonedx-python-lib\n'
' .*?',
@@ -111,14 +137,16 @@ def make_xml_comparable(bom: str) -> str:
' cyclonedx-python-lib\n'
' libVersion-testing',
bom)
- bom = re_sub( # replace metadata.tools.externalReferences
+ bom = re_sub( # replace lib-dynamics externalReferences in metadata.tools[]
' CycloneDX\n'
' cyclonedx-python-lib\n'
- r' (.*?)\n'
- r' [\s\S]*?',
+ ' (.*?)\n'
+ ' \n'
+ '(?: .*?\n)*'
+ ' ',
' CycloneDX\n'
' cyclonedx-python-lib\n'
- r' \1''\n'
+ ' \\1\n'
' ',
bom)
return bom
@@ -126,14 +154,41 @@ def make_xml_comparable(bom: str) -> str:
def make_json_comparable(bom: str) -> str:
bom = bom.replace(_root_file_uri_json, 'file://.../')
- bom = bom.replace( # replace metadata.tools.version
- ' "name": "cyclonedx-bom",\n'
+ bom = bom.replace( # replace this version in metadata.tools.components[]
+ f' "name": {json_dumps(EXPECTED_TOOL_NAME)},\n'
+ ' "type": "application",\n'
+ f' "version": {json_dumps(__this_version)}',
+ f' "name": {json_dumps(EXPECTED_TOOL_NAME)},\n'
+ ' "type": "application",\n'
+ ' "version": "thisVersion-testing"')
+ bom = bom.replace( # replace this version in metadata.tools[]
+ f' "name": {json_dumps(EXPECTED_TOOL_NAME)},\n'
' "vendor": "CycloneDX",\n'
f' "version": {json_dumps(__this_version)}',
- ' "name": "cyclonedx-bom",\n'
+ f' "name": {json_dumps(EXPECTED_TOOL_NAME)},\n'
' "vendor": "CycloneDX",\n'
' "version": "thisVersion-testing"')
- bom = re_sub( # replace metadata.tools.version
+ bom = re_sub( # replace lib-dynamics in metadata.tools.components[]
+ ' "description": ".*?",\n'
+ ' "externalReferences": \\[\n'
+ '(?: .*?\n)*'
+ ' \\],\n'
+ ' "group": "CycloneDX",\n'
+ ' "licenses": \\[\n'
+ '(?: .*?\n)*'
+ ' \\],\n'
+ ' "name": "cyclonedx-python-lib",\n'
+ ' "type": "library",\n'
+ ' "version": ".*?"',
+ ' "description": "stripped",\n'
+ ' "externalReferences": [ ],\n'
+ ' "group": "CycloneDX",\n'
+ ' "licenses": [ ],\n'
+ ' "name": "cyclonedx-python-lib",\n'
+ ' "type": "library",\n'
+ ' "version": "libVersion-testing"',
+ bom)
+ bom = re_sub( # replace lib-dynamics version in metadata.tools[]
' "name": "cyclonedx-python-lib",\n'
' "vendor": "CycloneDX",\n'
' "version": ".*?"',
@@ -141,13 +196,15 @@ def make_json_comparable(bom: str) -> str:
' "vendor": "CycloneDX",\n'
' "version": "libVersion-testing"',
bom)
- bom = re_sub( # replace metadata.tools.externalReferences
- r' "externalReferences": \[[\s\S]*?\],\n'
+ bom = re_sub( # replace lib-dynamics externalReferences in metadata.tools[]
+ ' "externalReferences": \\[\n'
+ '(?: .*?\n)*'
+ ' \\],\n'
' "name": "cyclonedx-python-lib",\n'
- ' "vendor": "CycloneDX"',
+ ' "vendor": "CycloneDX",\n',
' "externalReferences": [ ],\n'
' "name": "cyclonedx-python-lib",\n'
- ' "vendor": "CycloneDX"',
+ ' "vendor": "CycloneDX",\n',
bom)
return bom
@@ -160,3 +217,12 @@ def make_comparable(bom: str, of: OutputFormat) -> str:
raise NotImplementedError(f'unknown OutputFormat: {of!r}')
# endregion reproducible test results
+
+
+def load_pyproject() -> Dict[str, Any]:
+ if sys.version_info >= (3, 11):
+ from tomllib import load as toml_load
+ else:
+ from tomli import load as toml_load
+ with open(path.join(path.dirname(__file__), '..', 'pyproject.toml'), 'rb') as f:
+ return toml_load(f)
diff --git a/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.2.json.bin b/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.2.json.bin
index acc127483..94975105c 100644
--- a/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.2.json.bin
+++ b/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.2.json.bin
@@ -307,7 +307,7 @@
},
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.2.xml.bin b/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.2.xml.bin
index f531e83bf..1d5886ddb 100644
--- a/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.2.xml.bin
+++ b/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.2.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.3.json.bin b/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.3.json.bin
index 0ee6f49e9..fc0328e7c 100644
--- a/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.3.json.bin
+++ b/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.3.json.bin
@@ -313,7 +313,7 @@
],
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.3.xml.bin b/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.3.xml.bin
index 12a6ec537..fb78a50f1 100644
--- a/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.3.xml.bin
+++ b/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.3.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.4.json.bin b/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.4.json.bin
index b098a46a3..2ad474f7b 100644
--- a/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.4.json.bin
+++ b/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.4.json.bin
@@ -312,6 +312,45 @@
}
],
"tools": [
+ {
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "name": "cyclonedx-py",
+ "vendor": "CycloneDX",
+ "version": "thisVersion-testing"
+ },
{
"externalReferences": [ ],
"name": "cyclonedx-python-lib",
diff --git a/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.4.xml.bin b/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.4.xml.bin
index f3a66a4f1..621aa1078 100644
--- a/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.4.xml.bin
+++ b/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.4.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.5.json.bin b/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.5.json.bin
index 5dbbf535f..26d54ed5c 100644
--- a/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.5.json.bin
+++ b/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.5.json.bin
@@ -311,14 +311,67 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
diff --git a/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.5.xml.bin b/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.5.xml.bin
index 49c9f3e2d..a1d6b48f7 100644
--- a/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.5.xml.bin
+++ b/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.5.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
with-extras
diff --git a/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.6.json.bin b/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.6.json.bin
index b4e0c7be3..194ebe9db 100644
--- a/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.6.json.bin
+++ b/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.6.json.bin
@@ -331,14 +331,68 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "acknowledgement": "declared",
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.6.schema.json",
diff --git a/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.6.xml.bin b/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.6.xml.bin
index d57d04f88..cf8c9f06f 100644
--- a/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.6.xml.bin
+++ b/tests/_data/snapshots/environment/pep639-texts_with-license-pep639_1.6.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
with-extras
diff --git a/tests/_data/snapshots/environment/pep639_with-license-pep639_1.2.json.bin b/tests/_data/snapshots/environment/pep639_with-license-pep639_1.2.json.bin
index 2f2f678df..07ab2198e 100644
--- a/tests/_data/snapshots/environment/pep639_with-license-pep639_1.2.json.bin
+++ b/tests/_data/snapshots/environment/pep639_with-license-pep639_1.2.json.bin
@@ -190,7 +190,7 @@
},
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/pep639_with-license-pep639_1.2.xml.bin b/tests/_data/snapshots/environment/pep639_with-license-pep639_1.2.xml.bin
index 7fe5601e6..f66944050 100644
--- a/tests/_data/snapshots/environment/pep639_with-license-pep639_1.2.xml.bin
+++ b/tests/_data/snapshots/environment/pep639_with-license-pep639_1.2.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/pep639_with-license-pep639_1.3.json.bin b/tests/_data/snapshots/environment/pep639_with-license-pep639_1.3.json.bin
index 946efb407..b5fc2710e 100644
--- a/tests/_data/snapshots/environment/pep639_with-license-pep639_1.3.json.bin
+++ b/tests/_data/snapshots/environment/pep639_with-license-pep639_1.3.json.bin
@@ -196,7 +196,7 @@
],
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/pep639_with-license-pep639_1.3.xml.bin b/tests/_data/snapshots/environment/pep639_with-license-pep639_1.3.xml.bin
index a9a7f53eb..7332598ca 100644
--- a/tests/_data/snapshots/environment/pep639_with-license-pep639_1.3.xml.bin
+++ b/tests/_data/snapshots/environment/pep639_with-license-pep639_1.3.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/pep639_with-license-pep639_1.4.json.bin b/tests/_data/snapshots/environment/pep639_with-license-pep639_1.4.json.bin
index 8460caaeb..565f0e8c2 100644
--- a/tests/_data/snapshots/environment/pep639_with-license-pep639_1.4.json.bin
+++ b/tests/_data/snapshots/environment/pep639_with-license-pep639_1.4.json.bin
@@ -195,6 +195,45 @@
}
],
"tools": [
+ {
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "name": "cyclonedx-py",
+ "vendor": "CycloneDX",
+ "version": "thisVersion-testing"
+ },
{
"externalReferences": [ ],
"name": "cyclonedx-python-lib",
diff --git a/tests/_data/snapshots/environment/pep639_with-license-pep639_1.4.xml.bin b/tests/_data/snapshots/environment/pep639_with-license-pep639_1.4.xml.bin
index 152012402..61db29c5d 100644
--- a/tests/_data/snapshots/environment/pep639_with-license-pep639_1.4.xml.bin
+++ b/tests/_data/snapshots/environment/pep639_with-license-pep639_1.4.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/pep639_with-license-pep639_1.5.json.bin b/tests/_data/snapshots/environment/pep639_with-license-pep639_1.5.json.bin
index 1b8833e1a..db5b81a85 100644
--- a/tests/_data/snapshots/environment/pep639_with-license-pep639_1.5.json.bin
+++ b/tests/_data/snapshots/environment/pep639_with-license-pep639_1.5.json.bin
@@ -194,14 +194,67 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
diff --git a/tests/_data/snapshots/environment/pep639_with-license-pep639_1.5.xml.bin b/tests/_data/snapshots/environment/pep639_with-license-pep639_1.5.xml.bin
index bf911fb1f..1e93e3eb1 100644
--- a/tests/_data/snapshots/environment/pep639_with-license-pep639_1.5.xml.bin
+++ b/tests/_data/snapshots/environment/pep639_with-license-pep639_1.5.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
with-extras
diff --git a/tests/_data/snapshots/environment/pep639_with-license-pep639_1.6.json.bin b/tests/_data/snapshots/environment/pep639_with-license-pep639_1.6.json.bin
index 516b4621e..4d3832ff5 100644
--- a/tests/_data/snapshots/environment/pep639_with-license-pep639_1.6.json.bin
+++ b/tests/_data/snapshots/environment/pep639_with-license-pep639_1.6.json.bin
@@ -201,14 +201,68 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "acknowledgement": "declared",
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.6.schema.json",
diff --git a/tests/_data/snapshots/environment/pep639_with-license-pep639_1.6.xml.bin b/tests/_data/snapshots/environment/pep639_with-license-pep639_1.6.xml.bin
index 6089decdb..5c97bd7c8 100644
--- a/tests/_data/snapshots/environment/pep639_with-license-pep639_1.6.xml.bin
+++ b/tests/_data/snapshots/environment/pep639_with-license-pep639_1.6.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
with-extras
diff --git a/tests/_data/snapshots/environment/plain_editable-self_1.2.json.bin b/tests/_data/snapshots/environment/plain_editable-self_1.2.json.bin
index d1c2f6227..cc39ad902 100644
--- a/tests/_data/snapshots/environment/plain_editable-self_1.2.json.bin
+++ b/tests/_data/snapshots/environment/plain_editable-self_1.2.json.bin
@@ -44,7 +44,7 @@
},
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/plain_editable-self_1.2.xml.bin b/tests/_data/snapshots/environment/plain_editable-self_1.2.xml.bin
index 7a3ad29ad..47c3717e9 100644
--- a/tests/_data/snapshots/environment/plain_editable-self_1.2.xml.bin
+++ b/tests/_data/snapshots/environment/plain_editable-self_1.2.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_editable-self_1.3.json.bin b/tests/_data/snapshots/environment/plain_editable-self_1.3.json.bin
index c9e9b4e6b..0e06fe0f0 100644
--- a/tests/_data/snapshots/environment/plain_editable-self_1.3.json.bin
+++ b/tests/_data/snapshots/environment/plain_editable-self_1.3.json.bin
@@ -50,7 +50,7 @@
],
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/plain_editable-self_1.3.xml.bin b/tests/_data/snapshots/environment/plain_editable-self_1.3.xml.bin
index 581ab83a0..810d605fa 100644
--- a/tests/_data/snapshots/environment/plain_editable-self_1.3.xml.bin
+++ b/tests/_data/snapshots/environment/plain_editable-self_1.3.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_editable-self_1.4.json.bin b/tests/_data/snapshots/environment/plain_editable-self_1.4.json.bin
index 1515817b0..601748151 100644
--- a/tests/_data/snapshots/environment/plain_editable-self_1.4.json.bin
+++ b/tests/_data/snapshots/environment/plain_editable-self_1.4.json.bin
@@ -49,6 +49,45 @@
}
],
"tools": [
+ {
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "name": "cyclonedx-py",
+ "vendor": "CycloneDX",
+ "version": "thisVersion-testing"
+ },
{
"externalReferences": [ ],
"name": "cyclonedx-python-lib",
diff --git a/tests/_data/snapshots/environment/plain_editable-self_1.4.xml.bin b/tests/_data/snapshots/environment/plain_editable-self_1.4.xml.bin
index cda2f5bf9..6a3abd68c 100644
--- a/tests/_data/snapshots/environment/plain_editable-self_1.4.xml.bin
+++ b/tests/_data/snapshots/environment/plain_editable-self_1.4.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_editable-self_1.5.json.bin b/tests/_data/snapshots/environment/plain_editable-self_1.5.json.bin
index 01f7a3412..2ed6f4860 100644
--- a/tests/_data/snapshots/environment/plain_editable-self_1.5.json.bin
+++ b/tests/_data/snapshots/environment/plain_editable-self_1.5.json.bin
@@ -48,14 +48,67 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
diff --git a/tests/_data/snapshots/environment/plain_editable-self_1.5.xml.bin b/tests/_data/snapshots/environment/plain_editable-self_1.5.xml.bin
index b2a372b85..97b92c3b9 100644
--- a/tests/_data/snapshots/environment/plain_editable-self_1.5.xml.bin
+++ b/tests/_data/snapshots/environment/plain_editable-self_1.5.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
editable-self
diff --git a/tests/_data/snapshots/environment/plain_editable-self_1.6.json.bin b/tests/_data/snapshots/environment/plain_editable-self_1.6.json.bin
index 670df120c..6eae686a1 100644
--- a/tests/_data/snapshots/environment/plain_editable-self_1.6.json.bin
+++ b/tests/_data/snapshots/environment/plain_editable-self_1.6.json.bin
@@ -49,14 +49,68 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "acknowledgement": "declared",
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.6.schema.json",
diff --git a/tests/_data/snapshots/environment/plain_editable-self_1.6.xml.bin b/tests/_data/snapshots/environment/plain_editable-self_1.6.xml.bin
index 9189d4b04..d8d21b5f4 100644
--- a/tests/_data/snapshots/environment/plain_editable-self_1.6.xml.bin
+++ b/tests/_data/snapshots/environment/plain_editable-self_1.6.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
editable-self
diff --git a/tests/_data/snapshots/environment/plain_local_1.2.json.bin b/tests/_data/snapshots/environment/plain_local_1.2.json.bin
index 74aea42fb..0a7dbfd06 100644
--- a/tests/_data/snapshots/environment/plain_local_1.2.json.bin
+++ b/tests/_data/snapshots/environment/plain_local_1.2.json.bin
@@ -95,7 +95,7 @@
},
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/plain_local_1.2.xml.bin b/tests/_data/snapshots/environment/plain_local_1.2.xml.bin
index 61150894e..277351d18 100644
--- a/tests/_data/snapshots/environment/plain_local_1.2.xml.bin
+++ b/tests/_data/snapshots/environment/plain_local_1.2.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_local_1.3.json.bin b/tests/_data/snapshots/environment/plain_local_1.3.json.bin
index b74fc7a3d..52504fb4f 100644
--- a/tests/_data/snapshots/environment/plain_local_1.3.json.bin
+++ b/tests/_data/snapshots/environment/plain_local_1.3.json.bin
@@ -113,7 +113,7 @@
],
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/plain_local_1.3.xml.bin b/tests/_data/snapshots/environment/plain_local_1.3.xml.bin
index 1eaa9e316..87fa1a2f3 100644
--- a/tests/_data/snapshots/environment/plain_local_1.3.xml.bin
+++ b/tests/_data/snapshots/environment/plain_local_1.3.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_local_1.4.json.bin b/tests/_data/snapshots/environment/plain_local_1.4.json.bin
index 622555a9d..9eecb3b55 100644
--- a/tests/_data/snapshots/environment/plain_local_1.4.json.bin
+++ b/tests/_data/snapshots/environment/plain_local_1.4.json.bin
@@ -112,6 +112,45 @@
}
],
"tools": [
+ {
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "name": "cyclonedx-py",
+ "vendor": "CycloneDX",
+ "version": "thisVersion-testing"
+ },
{
"externalReferences": [ ],
"name": "cyclonedx-python-lib",
diff --git a/tests/_data/snapshots/environment/plain_local_1.4.xml.bin b/tests/_data/snapshots/environment/plain_local_1.4.xml.bin
index a2a1e9088..12cc36f1c 100644
--- a/tests/_data/snapshots/environment/plain_local_1.4.xml.bin
+++ b/tests/_data/snapshots/environment/plain_local_1.4.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_local_1.5.json.bin b/tests/_data/snapshots/environment/plain_local_1.5.json.bin
index 4e2b448ac..861579e0f 100644
--- a/tests/_data/snapshots/environment/plain_local_1.5.json.bin
+++ b/tests/_data/snapshots/environment/plain_local_1.5.json.bin
@@ -111,14 +111,67 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
diff --git a/tests/_data/snapshots/environment/plain_local_1.5.xml.bin b/tests/_data/snapshots/environment/plain_local_1.5.xml.bin
index 62522a1d1..a800704b6 100644
--- a/tests/_data/snapshots/environment/plain_local_1.5.xml.bin
+++ b/tests/_data/snapshots/environment/plain_local_1.5.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
local
diff --git a/tests/_data/snapshots/environment/plain_local_1.6.json.bin b/tests/_data/snapshots/environment/plain_local_1.6.json.bin
index 602fbe269..9cf26e796 100644
--- a/tests/_data/snapshots/environment/plain_local_1.6.json.bin
+++ b/tests/_data/snapshots/environment/plain_local_1.6.json.bin
@@ -115,14 +115,68 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "acknowledgement": "declared",
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.6.schema.json",
diff --git a/tests/_data/snapshots/environment/plain_local_1.6.xml.bin b/tests/_data/snapshots/environment/plain_local_1.6.xml.bin
index 21001a096..d1e6d73e8 100644
--- a/tests/_data/snapshots/environment/plain_local_1.6.xml.bin
+++ b/tests/_data/snapshots/environment/plain_local_1.6.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
local
diff --git a/tests/_data/snapshots/environment/plain_no-deps_1.2.json.bin b/tests/_data/snapshots/environment/plain_no-deps_1.2.json.bin
index 6de193b16..f7ab17f16 100644
--- a/tests/_data/snapshots/environment/plain_no-deps_1.2.json.bin
+++ b/tests/_data/snapshots/environment/plain_no-deps_1.2.json.bin
@@ -51,7 +51,7 @@
},
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/plain_no-deps_1.2.xml.bin b/tests/_data/snapshots/environment/plain_no-deps_1.2.xml.bin
index a982f421b..5c6c1fc09 100644
--- a/tests/_data/snapshots/environment/plain_no-deps_1.2.xml.bin
+++ b/tests/_data/snapshots/environment/plain_no-deps_1.2.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_no-deps_1.3.json.bin b/tests/_data/snapshots/environment/plain_no-deps_1.3.json.bin
index 4922946d3..3cfa3a05c 100644
--- a/tests/_data/snapshots/environment/plain_no-deps_1.3.json.bin
+++ b/tests/_data/snapshots/environment/plain_no-deps_1.3.json.bin
@@ -57,7 +57,7 @@
],
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/plain_no-deps_1.3.xml.bin b/tests/_data/snapshots/environment/plain_no-deps_1.3.xml.bin
index f70c1e341..c326a1fb8 100644
--- a/tests/_data/snapshots/environment/plain_no-deps_1.3.xml.bin
+++ b/tests/_data/snapshots/environment/plain_no-deps_1.3.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_no-deps_1.4.json.bin b/tests/_data/snapshots/environment/plain_no-deps_1.4.json.bin
index 354ca1e5d..9c91dd7a0 100644
--- a/tests/_data/snapshots/environment/plain_no-deps_1.4.json.bin
+++ b/tests/_data/snapshots/environment/plain_no-deps_1.4.json.bin
@@ -56,6 +56,45 @@
}
],
"tools": [
+ {
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "name": "cyclonedx-py",
+ "vendor": "CycloneDX",
+ "version": "thisVersion-testing"
+ },
{
"externalReferences": [ ],
"name": "cyclonedx-python-lib",
diff --git a/tests/_data/snapshots/environment/plain_no-deps_1.4.xml.bin b/tests/_data/snapshots/environment/plain_no-deps_1.4.xml.bin
index e0d55c556..374af51db 100644
--- a/tests/_data/snapshots/environment/plain_no-deps_1.4.xml.bin
+++ b/tests/_data/snapshots/environment/plain_no-deps_1.4.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_no-deps_1.5.json.bin b/tests/_data/snapshots/environment/plain_no-deps_1.5.json.bin
index e246c19da..5445beadf 100644
--- a/tests/_data/snapshots/environment/plain_no-deps_1.5.json.bin
+++ b/tests/_data/snapshots/environment/plain_no-deps_1.5.json.bin
@@ -55,14 +55,67 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
diff --git a/tests/_data/snapshots/environment/plain_no-deps_1.5.xml.bin b/tests/_data/snapshots/environment/plain_no-deps_1.5.xml.bin
index d4d391542..c08c97e18 100644
--- a/tests/_data/snapshots/environment/plain_no-deps_1.5.xml.bin
+++ b/tests/_data/snapshots/environment/plain_no-deps_1.5.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
no-deps
diff --git a/tests/_data/snapshots/environment/plain_no-deps_1.6.json.bin b/tests/_data/snapshots/environment/plain_no-deps_1.6.json.bin
index 606316897..4dba1ef28 100644
--- a/tests/_data/snapshots/environment/plain_no-deps_1.6.json.bin
+++ b/tests/_data/snapshots/environment/plain_no-deps_1.6.json.bin
@@ -56,14 +56,68 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "acknowledgement": "declared",
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.6.schema.json",
diff --git a/tests/_data/snapshots/environment/plain_no-deps_1.6.xml.bin b/tests/_data/snapshots/environment/plain_no-deps_1.6.xml.bin
index 8081bd9df..aa980c042 100644
--- a/tests/_data/snapshots/environment/plain_no-deps_1.6.xml.bin
+++ b/tests/_data/snapshots/environment/plain_no-deps_1.6.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
no-deps
diff --git a/tests/_data/snapshots/environment/plain_normalize-packagename_1.2.json.bin b/tests/_data/snapshots/environment/plain_normalize-packagename_1.2.json.bin
index bf95cfa41..9657d83be 100644
--- a/tests/_data/snapshots/environment/plain_normalize-packagename_1.2.json.bin
+++ b/tests/_data/snapshots/environment/plain_normalize-packagename_1.2.json.bin
@@ -125,7 +125,7 @@
},
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/plain_normalize-packagename_1.2.xml.bin b/tests/_data/snapshots/environment/plain_normalize-packagename_1.2.xml.bin
index ce3a500b2..ce11abd19 100644
--- a/tests/_data/snapshots/environment/plain_normalize-packagename_1.2.xml.bin
+++ b/tests/_data/snapshots/environment/plain_normalize-packagename_1.2.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_normalize-packagename_1.3.json.bin b/tests/_data/snapshots/environment/plain_normalize-packagename_1.3.json.bin
index 4d73455cd..9ec32cf57 100644
--- a/tests/_data/snapshots/environment/plain_normalize-packagename_1.3.json.bin
+++ b/tests/_data/snapshots/environment/plain_normalize-packagename_1.3.json.bin
@@ -137,7 +137,7 @@
],
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/plain_normalize-packagename_1.3.xml.bin b/tests/_data/snapshots/environment/plain_normalize-packagename_1.3.xml.bin
index 75be771b7..dddb81435 100644
--- a/tests/_data/snapshots/environment/plain_normalize-packagename_1.3.xml.bin
+++ b/tests/_data/snapshots/environment/plain_normalize-packagename_1.3.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_normalize-packagename_1.4.json.bin b/tests/_data/snapshots/environment/plain_normalize-packagename_1.4.json.bin
index ba9ed46ae..40bc62dcf 100644
--- a/tests/_data/snapshots/environment/plain_normalize-packagename_1.4.json.bin
+++ b/tests/_data/snapshots/environment/plain_normalize-packagename_1.4.json.bin
@@ -136,6 +136,45 @@
}
],
"tools": [
+ {
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "name": "cyclonedx-py",
+ "vendor": "CycloneDX",
+ "version": "thisVersion-testing"
+ },
{
"externalReferences": [ ],
"name": "cyclonedx-python-lib",
diff --git a/tests/_data/snapshots/environment/plain_normalize-packagename_1.4.xml.bin b/tests/_data/snapshots/environment/plain_normalize-packagename_1.4.xml.bin
index deded9be1..854dc5c4a 100644
--- a/tests/_data/snapshots/environment/plain_normalize-packagename_1.4.xml.bin
+++ b/tests/_data/snapshots/environment/plain_normalize-packagename_1.4.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_normalize-packagename_1.5.json.bin b/tests/_data/snapshots/environment/plain_normalize-packagename_1.5.json.bin
index 050115197..e547eb15d 100644
--- a/tests/_data/snapshots/environment/plain_normalize-packagename_1.5.json.bin
+++ b/tests/_data/snapshots/environment/plain_normalize-packagename_1.5.json.bin
@@ -135,14 +135,67 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
diff --git a/tests/_data/snapshots/environment/plain_normalize-packagename_1.5.xml.bin b/tests/_data/snapshots/environment/plain_normalize-packagename_1.5.xml.bin
index efdf8ff96..99d0154da 100644
--- a/tests/_data/snapshots/environment/plain_normalize-packagename_1.5.xml.bin
+++ b/tests/_data/snapshots/environment/plain_normalize-packagename_1.5.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
normalize-packagename
diff --git a/tests/_data/snapshots/environment/plain_normalize-packagename_1.6.json.bin b/tests/_data/snapshots/environment/plain_normalize-packagename_1.6.json.bin
index 721a7a362..c36faba62 100644
--- a/tests/_data/snapshots/environment/plain_normalize-packagename_1.6.json.bin
+++ b/tests/_data/snapshots/environment/plain_normalize-packagename_1.6.json.bin
@@ -139,14 +139,68 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "acknowledgement": "declared",
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.6.schema.json",
diff --git a/tests/_data/snapshots/environment/plain_normalize-packagename_1.6.xml.bin b/tests/_data/snapshots/environment/plain_normalize-packagename_1.6.xml.bin
index 0f4ee7216..67f230716 100644
--- a/tests/_data/snapshots/environment/plain_normalize-packagename_1.6.xml.bin
+++ b/tests/_data/snapshots/environment/plain_normalize-packagename_1.6.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
normalize-packagename
diff --git a/tests/_data/snapshots/environment/plain_private-packages_1.2.json.bin b/tests/_data/snapshots/environment/plain_private-packages_1.2.json.bin
index e6be519fd..7034e743c 100644
--- a/tests/_data/snapshots/environment/plain_private-packages_1.2.json.bin
+++ b/tests/_data/snapshots/environment/plain_private-packages_1.2.json.bin
@@ -74,7 +74,7 @@
},
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/plain_private-packages_1.2.xml.bin b/tests/_data/snapshots/environment/plain_private-packages_1.2.xml.bin
index 894163047..7498dda1f 100644
--- a/tests/_data/snapshots/environment/plain_private-packages_1.2.xml.bin
+++ b/tests/_data/snapshots/environment/plain_private-packages_1.2.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_private-packages_1.3.json.bin b/tests/_data/snapshots/environment/plain_private-packages_1.3.json.bin
index 4d2c51c26..f58bf3e54 100644
--- a/tests/_data/snapshots/environment/plain_private-packages_1.3.json.bin
+++ b/tests/_data/snapshots/environment/plain_private-packages_1.3.json.bin
@@ -86,7 +86,7 @@
],
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/plain_private-packages_1.3.xml.bin b/tests/_data/snapshots/environment/plain_private-packages_1.3.xml.bin
index dd4cd5461..b9df9aade 100644
--- a/tests/_data/snapshots/environment/plain_private-packages_1.3.xml.bin
+++ b/tests/_data/snapshots/environment/plain_private-packages_1.3.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_private-packages_1.4.json.bin b/tests/_data/snapshots/environment/plain_private-packages_1.4.json.bin
index 0bf61e13c..2f0753183 100644
--- a/tests/_data/snapshots/environment/plain_private-packages_1.4.json.bin
+++ b/tests/_data/snapshots/environment/plain_private-packages_1.4.json.bin
@@ -85,6 +85,45 @@
}
],
"tools": [
+ {
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "name": "cyclonedx-py",
+ "vendor": "CycloneDX",
+ "version": "thisVersion-testing"
+ },
{
"externalReferences": [ ],
"name": "cyclonedx-python-lib",
diff --git a/tests/_data/snapshots/environment/plain_private-packages_1.4.xml.bin b/tests/_data/snapshots/environment/plain_private-packages_1.4.xml.bin
index 362e2921c..2597a674b 100644
--- a/tests/_data/snapshots/environment/plain_private-packages_1.4.xml.bin
+++ b/tests/_data/snapshots/environment/plain_private-packages_1.4.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_private-packages_1.5.json.bin b/tests/_data/snapshots/environment/plain_private-packages_1.5.json.bin
index 45e85ae87..e95da34ca 100644
--- a/tests/_data/snapshots/environment/plain_private-packages_1.5.json.bin
+++ b/tests/_data/snapshots/environment/plain_private-packages_1.5.json.bin
@@ -84,14 +84,67 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
diff --git a/tests/_data/snapshots/environment/plain_private-packages_1.5.xml.bin b/tests/_data/snapshots/environment/plain_private-packages_1.5.xml.bin
index a0f93b5a6..17cdfb631 100644
--- a/tests/_data/snapshots/environment/plain_private-packages_1.5.xml.bin
+++ b/tests/_data/snapshots/environment/plain_private-packages_1.5.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
with-urls
diff --git a/tests/_data/snapshots/environment/plain_private-packages_1.6.json.bin b/tests/_data/snapshots/environment/plain_private-packages_1.6.json.bin
index 783d2d5e2..141868309 100644
--- a/tests/_data/snapshots/environment/plain_private-packages_1.6.json.bin
+++ b/tests/_data/snapshots/environment/plain_private-packages_1.6.json.bin
@@ -86,14 +86,68 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "acknowledgement": "declared",
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.6.schema.json",
diff --git a/tests/_data/snapshots/environment/plain_private-packages_1.6.xml.bin b/tests/_data/snapshots/environment/plain_private-packages_1.6.xml.bin
index 586af2fda..300f95479 100644
--- a/tests/_data/snapshots/environment/plain_private-packages_1.6.xml.bin
+++ b/tests/_data/snapshots/environment/plain_private-packages_1.6.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
with-urls
diff --git a/tests/_data/snapshots/environment/plain_via-pdm_1.2.json.bin b/tests/_data/snapshots/environment/plain_via-pdm_1.2.json.bin
index b49f2597d..7e4ed029f 100644
--- a/tests/_data/snapshots/environment/plain_via-pdm_1.2.json.bin
+++ b/tests/_data/snapshots/environment/plain_via-pdm_1.2.json.bin
@@ -49,7 +49,7 @@
},
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/plain_via-pdm_1.2.xml.bin b/tests/_data/snapshots/environment/plain_via-pdm_1.2.xml.bin
index cf306faee..4641e71b9 100644
--- a/tests/_data/snapshots/environment/plain_via-pdm_1.2.xml.bin
+++ b/tests/_data/snapshots/environment/plain_via-pdm_1.2.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_via-pdm_1.3.json.bin b/tests/_data/snapshots/environment/plain_via-pdm_1.3.json.bin
index 6c3d6f013..2d8465d05 100644
--- a/tests/_data/snapshots/environment/plain_via-pdm_1.3.json.bin
+++ b/tests/_data/snapshots/environment/plain_via-pdm_1.3.json.bin
@@ -55,7 +55,7 @@
],
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/plain_via-pdm_1.3.xml.bin b/tests/_data/snapshots/environment/plain_via-pdm_1.3.xml.bin
index 191aa85d0..8b6cd0f1c 100644
--- a/tests/_data/snapshots/environment/plain_via-pdm_1.3.xml.bin
+++ b/tests/_data/snapshots/environment/plain_via-pdm_1.3.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_via-pdm_1.4.json.bin b/tests/_data/snapshots/environment/plain_via-pdm_1.4.json.bin
index 2ff0947fe..7de548843 100644
--- a/tests/_data/snapshots/environment/plain_via-pdm_1.4.json.bin
+++ b/tests/_data/snapshots/environment/plain_via-pdm_1.4.json.bin
@@ -54,6 +54,45 @@
}
],
"tools": [
+ {
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "name": "cyclonedx-py",
+ "vendor": "CycloneDX",
+ "version": "thisVersion-testing"
+ },
{
"externalReferences": [ ],
"name": "cyclonedx-python-lib",
diff --git a/tests/_data/snapshots/environment/plain_via-pdm_1.4.xml.bin b/tests/_data/snapshots/environment/plain_via-pdm_1.4.xml.bin
index 52967690c..766915a0e 100644
--- a/tests/_data/snapshots/environment/plain_via-pdm_1.4.xml.bin
+++ b/tests/_data/snapshots/environment/plain_via-pdm_1.4.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_via-pdm_1.5.json.bin b/tests/_data/snapshots/environment/plain_via-pdm_1.5.json.bin
index 46562689c..2128bdbac 100644
--- a/tests/_data/snapshots/environment/plain_via-pdm_1.5.json.bin
+++ b/tests/_data/snapshots/environment/plain_via-pdm_1.5.json.bin
@@ -53,14 +53,67 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
diff --git a/tests/_data/snapshots/environment/plain_via-pdm_1.5.xml.bin b/tests/_data/snapshots/environment/plain_via-pdm_1.5.xml.bin
index f337ab366..0b2f2ca4d 100644
--- a/tests/_data/snapshots/environment/plain_via-pdm_1.5.xml.bin
+++ b/tests/_data/snapshots/environment/plain_via-pdm_1.5.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
via-pdm
diff --git a/tests/_data/snapshots/environment/plain_via-pdm_1.6.json.bin b/tests/_data/snapshots/environment/plain_via-pdm_1.6.json.bin
index 6e4020e74..cf56a3c88 100644
--- a/tests/_data/snapshots/environment/plain_via-pdm_1.6.json.bin
+++ b/tests/_data/snapshots/environment/plain_via-pdm_1.6.json.bin
@@ -55,14 +55,68 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "acknowledgement": "declared",
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.6.schema.json",
diff --git a/tests/_data/snapshots/environment/plain_via-pdm_1.6.xml.bin b/tests/_data/snapshots/environment/plain_via-pdm_1.6.xml.bin
index e63e9873b..0f8ffee96 100644
--- a/tests/_data/snapshots/environment/plain_via-pdm_1.6.xml.bin
+++ b/tests/_data/snapshots/environment/plain_via-pdm_1.6.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
via-pdm
diff --git a/tests/_data/snapshots/environment/plain_via-pipenv_1.2.json.bin b/tests/_data/snapshots/environment/plain_via-pipenv_1.2.json.bin
index 42e34cb24..7544046d4 100644
--- a/tests/_data/snapshots/environment/plain_via-pipenv_1.2.json.bin
+++ b/tests/_data/snapshots/environment/plain_via-pipenv_1.2.json.bin
@@ -81,7 +81,7 @@
},
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/plain_via-pipenv_1.2.xml.bin b/tests/_data/snapshots/environment/plain_via-pipenv_1.2.xml.bin
index 0efa51b3b..c6b1be3ab 100644
--- a/tests/_data/snapshots/environment/plain_via-pipenv_1.2.xml.bin
+++ b/tests/_data/snapshots/environment/plain_via-pipenv_1.2.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_via-pipenv_1.3.json.bin b/tests/_data/snapshots/environment/plain_via-pipenv_1.3.json.bin
index 6a2549898..52fe11eef 100644
--- a/tests/_data/snapshots/environment/plain_via-pipenv_1.3.json.bin
+++ b/tests/_data/snapshots/environment/plain_via-pipenv_1.3.json.bin
@@ -87,7 +87,7 @@
],
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/plain_via-pipenv_1.3.xml.bin b/tests/_data/snapshots/environment/plain_via-pipenv_1.3.xml.bin
index a30a4395b..b317f5d85 100644
--- a/tests/_data/snapshots/environment/plain_via-pipenv_1.3.xml.bin
+++ b/tests/_data/snapshots/environment/plain_via-pipenv_1.3.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_via-pipenv_1.4.json.bin b/tests/_data/snapshots/environment/plain_via-pipenv_1.4.json.bin
index a4de06469..ebddcb7d3 100644
--- a/tests/_data/snapshots/environment/plain_via-pipenv_1.4.json.bin
+++ b/tests/_data/snapshots/environment/plain_via-pipenv_1.4.json.bin
@@ -86,6 +86,45 @@
}
],
"tools": [
+ {
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "name": "cyclonedx-py",
+ "vendor": "CycloneDX",
+ "version": "thisVersion-testing"
+ },
{
"externalReferences": [ ],
"name": "cyclonedx-python-lib",
diff --git a/tests/_data/snapshots/environment/plain_via-pipenv_1.4.xml.bin b/tests/_data/snapshots/environment/plain_via-pipenv_1.4.xml.bin
index 6d286bf91..e56884315 100644
--- a/tests/_data/snapshots/environment/plain_via-pipenv_1.4.xml.bin
+++ b/tests/_data/snapshots/environment/plain_via-pipenv_1.4.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_via-pipenv_1.5.json.bin b/tests/_data/snapshots/environment/plain_via-pipenv_1.5.json.bin
index 96416a11a..21836742d 100644
--- a/tests/_data/snapshots/environment/plain_via-pipenv_1.5.json.bin
+++ b/tests/_data/snapshots/environment/plain_via-pipenv_1.5.json.bin
@@ -85,14 +85,67 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
diff --git a/tests/_data/snapshots/environment/plain_via-pipenv_1.5.xml.bin b/tests/_data/snapshots/environment/plain_via-pipenv_1.5.xml.bin
index 41aa42415..208a2e530 100644
--- a/tests/_data/snapshots/environment/plain_via-pipenv_1.5.xml.bin
+++ b/tests/_data/snapshots/environment/plain_via-pipenv_1.5.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
via-pipenv
diff --git a/tests/_data/snapshots/environment/plain_via-pipenv_1.6.json.bin b/tests/_data/snapshots/environment/plain_via-pipenv_1.6.json.bin
index 441e42932..0c8973f9e 100644
--- a/tests/_data/snapshots/environment/plain_via-pipenv_1.6.json.bin
+++ b/tests/_data/snapshots/environment/plain_via-pipenv_1.6.json.bin
@@ -87,14 +87,68 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "acknowledgement": "declared",
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.6.schema.json",
diff --git a/tests/_data/snapshots/environment/plain_via-pipenv_1.6.xml.bin b/tests/_data/snapshots/environment/plain_via-pipenv_1.6.xml.bin
index 2a3679b4d..741acb5fe 100644
--- a/tests/_data/snapshots/environment/plain_via-pipenv_1.6.xml.bin
+++ b/tests/_data/snapshots/environment/plain_via-pipenv_1.6.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
via-pipenv
diff --git a/tests/_data/snapshots/environment/plain_via-poetry_1.2.json.bin b/tests/_data/snapshots/environment/plain_via-poetry_1.2.json.bin
index b3175a0db..1882a9b06 100644
--- a/tests/_data/snapshots/environment/plain_via-poetry_1.2.json.bin
+++ b/tests/_data/snapshots/environment/plain_via-poetry_1.2.json.bin
@@ -81,7 +81,7 @@
},
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/plain_via-poetry_1.2.xml.bin b/tests/_data/snapshots/environment/plain_via-poetry_1.2.xml.bin
index d52ebd1eb..aaf2c0d4e 100644
--- a/tests/_data/snapshots/environment/plain_via-poetry_1.2.xml.bin
+++ b/tests/_data/snapshots/environment/plain_via-poetry_1.2.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_via-poetry_1.3.json.bin b/tests/_data/snapshots/environment/plain_via-poetry_1.3.json.bin
index 1706c1911..4b29daa2c 100644
--- a/tests/_data/snapshots/environment/plain_via-poetry_1.3.json.bin
+++ b/tests/_data/snapshots/environment/plain_via-poetry_1.3.json.bin
@@ -87,7 +87,7 @@
],
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/plain_via-poetry_1.3.xml.bin b/tests/_data/snapshots/environment/plain_via-poetry_1.3.xml.bin
index d7dab0de6..cc721dde5 100644
--- a/tests/_data/snapshots/environment/plain_via-poetry_1.3.xml.bin
+++ b/tests/_data/snapshots/environment/plain_via-poetry_1.3.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_via-poetry_1.4.json.bin b/tests/_data/snapshots/environment/plain_via-poetry_1.4.json.bin
index 8b77717bb..18f33bb32 100644
--- a/tests/_data/snapshots/environment/plain_via-poetry_1.4.json.bin
+++ b/tests/_data/snapshots/environment/plain_via-poetry_1.4.json.bin
@@ -86,6 +86,45 @@
}
],
"tools": [
+ {
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "name": "cyclonedx-py",
+ "vendor": "CycloneDX",
+ "version": "thisVersion-testing"
+ },
{
"externalReferences": [ ],
"name": "cyclonedx-python-lib",
diff --git a/tests/_data/snapshots/environment/plain_via-poetry_1.4.xml.bin b/tests/_data/snapshots/environment/plain_via-poetry_1.4.xml.bin
index 001ff5b49..f56a2e3d5 100644
--- a/tests/_data/snapshots/environment/plain_via-poetry_1.4.xml.bin
+++ b/tests/_data/snapshots/environment/plain_via-poetry_1.4.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_via-poetry_1.5.json.bin b/tests/_data/snapshots/environment/plain_via-poetry_1.5.json.bin
index 405169b68..8d4d2fee0 100644
--- a/tests/_data/snapshots/environment/plain_via-poetry_1.5.json.bin
+++ b/tests/_data/snapshots/environment/plain_via-poetry_1.5.json.bin
@@ -85,14 +85,67 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
diff --git a/tests/_data/snapshots/environment/plain_via-poetry_1.5.xml.bin b/tests/_data/snapshots/environment/plain_via-poetry_1.5.xml.bin
index cd3051962..56587e1c0 100644
--- a/tests/_data/snapshots/environment/plain_via-poetry_1.5.xml.bin
+++ b/tests/_data/snapshots/environment/plain_via-poetry_1.5.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
via-poetry
diff --git a/tests/_data/snapshots/environment/plain_via-poetry_1.6.json.bin b/tests/_data/snapshots/environment/plain_via-poetry_1.6.json.bin
index 20eefc85e..bd203fecf 100644
--- a/tests/_data/snapshots/environment/plain_via-poetry_1.6.json.bin
+++ b/tests/_data/snapshots/environment/plain_via-poetry_1.6.json.bin
@@ -87,14 +87,68 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "acknowledgement": "declared",
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.6.schema.json",
diff --git a/tests/_data/snapshots/environment/plain_via-poetry_1.6.xml.bin b/tests/_data/snapshots/environment/plain_via-poetry_1.6.xml.bin
index fd8eed5ba..e68e76c04 100644
--- a/tests/_data/snapshots/environment/plain_via-poetry_1.6.xml.bin
+++ b/tests/_data/snapshots/environment/plain_via-poetry_1.6.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
via-poetry
diff --git a/tests/_data/snapshots/environment/plain_with-extras_1.2.json.bin b/tests/_data/snapshots/environment/plain_with-extras_1.2.json.bin
index 0a52e833c..bb23087ea 100644
--- a/tests/_data/snapshots/environment/plain_with-extras_1.2.json.bin
+++ b/tests/_data/snapshots/environment/plain_with-extras_1.2.json.bin
@@ -1138,7 +1138,7 @@
},
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/plain_with-extras_1.2.xml.bin b/tests/_data/snapshots/environment/plain_with-extras_1.2.xml.bin
index 59c1d0973..6ce4e6c9e 100644
--- a/tests/_data/snapshots/environment/plain_with-extras_1.2.xml.bin
+++ b/tests/_data/snapshots/environment/plain_with-extras_1.2.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_with-extras_1.3.json.bin b/tests/_data/snapshots/environment/plain_with-extras_1.3.json.bin
index fc3e8582b..325645dad 100644
--- a/tests/_data/snapshots/environment/plain_with-extras_1.3.json.bin
+++ b/tests/_data/snapshots/environment/plain_with-extras_1.3.json.bin
@@ -1156,7 +1156,7 @@
],
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/plain_with-extras_1.3.xml.bin b/tests/_data/snapshots/environment/plain_with-extras_1.3.xml.bin
index 79d4f9e37..c925acca9 100644
--- a/tests/_data/snapshots/environment/plain_with-extras_1.3.xml.bin
+++ b/tests/_data/snapshots/environment/plain_with-extras_1.3.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_with-extras_1.4.json.bin b/tests/_data/snapshots/environment/plain_with-extras_1.4.json.bin
index 4106026fe..8d705f398 100644
--- a/tests/_data/snapshots/environment/plain_with-extras_1.4.json.bin
+++ b/tests/_data/snapshots/environment/plain_with-extras_1.4.json.bin
@@ -1155,6 +1155,45 @@
}
],
"tools": [
+ {
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "name": "cyclonedx-py",
+ "vendor": "CycloneDX",
+ "version": "thisVersion-testing"
+ },
{
"externalReferences": [ ],
"name": "cyclonedx-python-lib",
diff --git a/tests/_data/snapshots/environment/plain_with-extras_1.4.xml.bin b/tests/_data/snapshots/environment/plain_with-extras_1.4.xml.bin
index 98d29529e..2a510cf5b 100644
--- a/tests/_data/snapshots/environment/plain_with-extras_1.4.xml.bin
+++ b/tests/_data/snapshots/environment/plain_with-extras_1.4.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_with-extras_1.5.json.bin b/tests/_data/snapshots/environment/plain_with-extras_1.5.json.bin
index 884049b93..99d61b307 100644
--- a/tests/_data/snapshots/environment/plain_with-extras_1.5.json.bin
+++ b/tests/_data/snapshots/environment/plain_with-extras_1.5.json.bin
@@ -1154,14 +1154,67 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
diff --git a/tests/_data/snapshots/environment/plain_with-extras_1.5.xml.bin b/tests/_data/snapshots/environment/plain_with-extras_1.5.xml.bin
index 11375eb71..fb9525813 100644
--- a/tests/_data/snapshots/environment/plain_with-extras_1.5.xml.bin
+++ b/tests/_data/snapshots/environment/plain_with-extras_1.5.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
with-extras
diff --git a/tests/_data/snapshots/environment/plain_with-extras_1.6.json.bin b/tests/_data/snapshots/environment/plain_with-extras_1.6.json.bin
index 1966ac047..af786cda9 100644
--- a/tests/_data/snapshots/environment/plain_with-extras_1.6.json.bin
+++ b/tests/_data/snapshots/environment/plain_with-extras_1.6.json.bin
@@ -1197,14 +1197,68 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "acknowledgement": "declared",
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.6.schema.json",
diff --git a/tests/_data/snapshots/environment/plain_with-extras_1.6.xml.bin b/tests/_data/snapshots/environment/plain_with-extras_1.6.xml.bin
index 921e62438..90da156fe 100644
--- a/tests/_data/snapshots/environment/plain_with-extras_1.6.xml.bin
+++ b/tests/_data/snapshots/environment/plain_with-extras_1.6.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
with-extras
diff --git a/tests/_data/snapshots/environment/plain_with-license-file_1.2.json.bin b/tests/_data/snapshots/environment/plain_with-license-file_1.2.json.bin
index 1ee914a91..7c99638f5 100644
--- a/tests/_data/snapshots/environment/plain_with-license-file_1.2.json.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-file_1.2.json.bin
@@ -26,7 +26,7 @@
},
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/plain_with-license-file_1.2.xml.bin b/tests/_data/snapshots/environment/plain_with-license-file_1.2.xml.bin
index 8b335021f..710c26d9f 100644
--- a/tests/_data/snapshots/environment/plain_with-license-file_1.2.xml.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-file_1.2.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_with-license-file_1.3.json.bin b/tests/_data/snapshots/environment/plain_with-license-file_1.3.json.bin
index 0c62fac89..2e92b0936 100644
--- a/tests/_data/snapshots/environment/plain_with-license-file_1.3.json.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-file_1.3.json.bin
@@ -32,7 +32,7 @@
],
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/plain_with-license-file_1.3.xml.bin b/tests/_data/snapshots/environment/plain_with-license-file_1.3.xml.bin
index ca266c8c3..29a9c22a6 100644
--- a/tests/_data/snapshots/environment/plain_with-license-file_1.3.xml.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-file_1.3.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_with-license-file_1.4.json.bin b/tests/_data/snapshots/environment/plain_with-license-file_1.4.json.bin
index c913eef16..8d424333d 100644
--- a/tests/_data/snapshots/environment/plain_with-license-file_1.4.json.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-file_1.4.json.bin
@@ -31,6 +31,45 @@
}
],
"tools": [
+ {
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "name": "cyclonedx-py",
+ "vendor": "CycloneDX",
+ "version": "thisVersion-testing"
+ },
{
"externalReferences": [ ],
"name": "cyclonedx-python-lib",
diff --git a/tests/_data/snapshots/environment/plain_with-license-file_1.4.xml.bin b/tests/_data/snapshots/environment/plain_with-license-file_1.4.xml.bin
index 51e9cbe43..08fd7e21f 100644
--- a/tests/_data/snapshots/environment/plain_with-license-file_1.4.xml.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-file_1.4.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_with-license-file_1.5.json.bin b/tests/_data/snapshots/environment/plain_with-license-file_1.5.json.bin
index 01298deb7..ab180b3f9 100644
--- a/tests/_data/snapshots/environment/plain_with-license-file_1.5.json.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-file_1.5.json.bin
@@ -30,14 +30,67 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
diff --git a/tests/_data/snapshots/environment/plain_with-license-file_1.5.xml.bin b/tests/_data/snapshots/environment/plain_with-license-file_1.5.xml.bin
index 0dc1b63d5..5c5345a5e 100644
--- a/tests/_data/snapshots/environment/plain_with-license-file_1.5.xml.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-file_1.5.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
with-license-file
diff --git a/tests/_data/snapshots/environment/plain_with-license-file_1.6.json.bin b/tests/_data/snapshots/environment/plain_with-license-file_1.6.json.bin
index 9eb7de347..8da5bfc29 100644
--- a/tests/_data/snapshots/environment/plain_with-license-file_1.6.json.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-file_1.6.json.bin
@@ -31,14 +31,68 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "acknowledgement": "declared",
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.6.schema.json",
diff --git a/tests/_data/snapshots/environment/plain_with-license-file_1.6.xml.bin b/tests/_data/snapshots/environment/plain_with-license-file_1.6.xml.bin
index 89460f5bb..0af5025b0 100644
--- a/tests/_data/snapshots/environment/plain_with-license-file_1.6.xml.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-file_1.6.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
with-license-file
diff --git a/tests/_data/snapshots/environment/plain_with-license-pep639_1.2.json.bin b/tests/_data/snapshots/environment/plain_with-license-pep639_1.2.json.bin
index 2f2f678df..07ab2198e 100644
--- a/tests/_data/snapshots/environment/plain_with-license-pep639_1.2.json.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-pep639_1.2.json.bin
@@ -190,7 +190,7 @@
},
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/plain_with-license-pep639_1.2.xml.bin b/tests/_data/snapshots/environment/plain_with-license-pep639_1.2.xml.bin
index 7fe5601e6..f66944050 100644
--- a/tests/_data/snapshots/environment/plain_with-license-pep639_1.2.xml.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-pep639_1.2.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_with-license-pep639_1.3.json.bin b/tests/_data/snapshots/environment/plain_with-license-pep639_1.3.json.bin
index 946efb407..b5fc2710e 100644
--- a/tests/_data/snapshots/environment/plain_with-license-pep639_1.3.json.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-pep639_1.3.json.bin
@@ -196,7 +196,7 @@
],
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/plain_with-license-pep639_1.3.xml.bin b/tests/_data/snapshots/environment/plain_with-license-pep639_1.3.xml.bin
index a9a7f53eb..7332598ca 100644
--- a/tests/_data/snapshots/environment/plain_with-license-pep639_1.3.xml.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-pep639_1.3.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_with-license-pep639_1.4.json.bin b/tests/_data/snapshots/environment/plain_with-license-pep639_1.4.json.bin
index 8460caaeb..565f0e8c2 100644
--- a/tests/_data/snapshots/environment/plain_with-license-pep639_1.4.json.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-pep639_1.4.json.bin
@@ -195,6 +195,45 @@
}
],
"tools": [
+ {
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "name": "cyclonedx-py",
+ "vendor": "CycloneDX",
+ "version": "thisVersion-testing"
+ },
{
"externalReferences": [ ],
"name": "cyclonedx-python-lib",
diff --git a/tests/_data/snapshots/environment/plain_with-license-pep639_1.4.xml.bin b/tests/_data/snapshots/environment/plain_with-license-pep639_1.4.xml.bin
index 152012402..61db29c5d 100644
--- a/tests/_data/snapshots/environment/plain_with-license-pep639_1.4.xml.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-pep639_1.4.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_with-license-pep639_1.5.json.bin b/tests/_data/snapshots/environment/plain_with-license-pep639_1.5.json.bin
index 1b8833e1a..db5b81a85 100644
--- a/tests/_data/snapshots/environment/plain_with-license-pep639_1.5.json.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-pep639_1.5.json.bin
@@ -194,14 +194,67 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
diff --git a/tests/_data/snapshots/environment/plain_with-license-pep639_1.5.xml.bin b/tests/_data/snapshots/environment/plain_with-license-pep639_1.5.xml.bin
index bf911fb1f..1e93e3eb1 100644
--- a/tests/_data/snapshots/environment/plain_with-license-pep639_1.5.xml.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-pep639_1.5.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
with-extras
diff --git a/tests/_data/snapshots/environment/plain_with-license-pep639_1.6.json.bin b/tests/_data/snapshots/environment/plain_with-license-pep639_1.6.json.bin
index 516b4621e..4d3832ff5 100644
--- a/tests/_data/snapshots/environment/plain_with-license-pep639_1.6.json.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-pep639_1.6.json.bin
@@ -201,14 +201,68 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "acknowledgement": "declared",
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.6.schema.json",
diff --git a/tests/_data/snapshots/environment/plain_with-license-pep639_1.6.xml.bin b/tests/_data/snapshots/environment/plain_with-license-pep639_1.6.xml.bin
index 6089decdb..5c97bd7c8 100644
--- a/tests/_data/snapshots/environment/plain_with-license-pep639_1.6.xml.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-pep639_1.6.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
with-extras
diff --git a/tests/_data/snapshots/environment/plain_with-license-text_1.2.json.bin b/tests/_data/snapshots/environment/plain_with-license-text_1.2.json.bin
index 56683c7f0..14ac614bb 100644
--- a/tests/_data/snapshots/environment/plain_with-license-text_1.2.json.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-text_1.2.json.bin
@@ -106,7 +106,7 @@
},
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/plain_with-license-text_1.2.xml.bin b/tests/_data/snapshots/environment/plain_with-license-text_1.2.xml.bin
index bb207cb63..a8cff13d5 100644
--- a/tests/_data/snapshots/environment/plain_with-license-text_1.2.xml.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-text_1.2.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_with-license-text_1.3.json.bin b/tests/_data/snapshots/environment/plain_with-license-text_1.3.json.bin
index fb9a12f9f..ff26e8763 100644
--- a/tests/_data/snapshots/environment/plain_with-license-text_1.3.json.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-text_1.3.json.bin
@@ -130,7 +130,7 @@
],
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/plain_with-license-text_1.3.xml.bin b/tests/_data/snapshots/environment/plain_with-license-text_1.3.xml.bin
index bab726953..feface8ad 100644
--- a/tests/_data/snapshots/environment/plain_with-license-text_1.3.xml.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-text_1.3.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_with-license-text_1.4.json.bin b/tests/_data/snapshots/environment/plain_with-license-text_1.4.json.bin
index 969721e3b..01f585318 100644
--- a/tests/_data/snapshots/environment/plain_with-license-text_1.4.json.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-text_1.4.json.bin
@@ -129,6 +129,45 @@
}
],
"tools": [
+ {
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "name": "cyclonedx-py",
+ "vendor": "CycloneDX",
+ "version": "thisVersion-testing"
+ },
{
"externalReferences": [ ],
"name": "cyclonedx-python-lib",
diff --git a/tests/_data/snapshots/environment/plain_with-license-text_1.4.xml.bin b/tests/_data/snapshots/environment/plain_with-license-text_1.4.xml.bin
index c4ca4f863..96c298089 100644
--- a/tests/_data/snapshots/environment/plain_with-license-text_1.4.xml.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-text_1.4.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_with-license-text_1.5.json.bin b/tests/_data/snapshots/environment/plain_with-license-text_1.5.json.bin
index ab8480666..3ddaa8d0f 100644
--- a/tests/_data/snapshots/environment/plain_with-license-text_1.5.json.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-text_1.5.json.bin
@@ -128,14 +128,67 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
diff --git a/tests/_data/snapshots/environment/plain_with-license-text_1.5.xml.bin b/tests/_data/snapshots/environment/plain_with-license-text_1.5.xml.bin
index d56840b9c..96f4f29fc 100644
--- a/tests/_data/snapshots/environment/plain_with-license-text_1.5.xml.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-text_1.5.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
with-license-text
diff --git a/tests/_data/snapshots/environment/plain_with-license-text_1.6.json.bin b/tests/_data/snapshots/environment/plain_with-license-text_1.6.json.bin
index 743032680..01f249ed9 100644
--- a/tests/_data/snapshots/environment/plain_with-license-text_1.6.json.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-text_1.6.json.bin
@@ -133,14 +133,68 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "acknowledgement": "declared",
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.6.schema.json",
diff --git a/tests/_data/snapshots/environment/plain_with-license-text_1.6.xml.bin b/tests/_data/snapshots/environment/plain_with-license-text_1.6.xml.bin
index 61dd69d27..a0d73953a 100644
--- a/tests/_data/snapshots/environment/plain_with-license-text_1.6.xml.bin
+++ b/tests/_data/snapshots/environment/plain_with-license-text_1.6.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
with-license-text
diff --git a/tests/_data/snapshots/environment/plain_with-urls_1.2.json.bin b/tests/_data/snapshots/environment/plain_with-urls_1.2.json.bin
index 1464717f0..106c7a150 100644
--- a/tests/_data/snapshots/environment/plain_with-urls_1.2.json.bin
+++ b/tests/_data/snapshots/environment/plain_with-urls_1.2.json.bin
@@ -169,7 +169,7 @@
},
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/plain_with-urls_1.2.xml.bin b/tests/_data/snapshots/environment/plain_with-urls_1.2.xml.bin
index 489e45f67..271209664 100644
--- a/tests/_data/snapshots/environment/plain_with-urls_1.2.xml.bin
+++ b/tests/_data/snapshots/environment/plain_with-urls_1.2.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/plain_with-urls_1.3.json.bin b/tests/_data/snapshots/environment/plain_with-urls_1.3.json.bin
index 9429c24cd..a41f22dc2 100644
--- a/tests/_data/snapshots/environment/plain_with-urls_1.3.json.bin
+++ b/tests/_data/snapshots/environment/plain_with-urls_1.3.json.bin
@@ -34,14 +34,6 @@
],
"name": "packaging",
"properties": [
- {
- "name": "cdx:poetry:package:source:vcs:commit_id",
- "value": "b3a5d7d68991c040615d5345bb55f61de53ba176"
- },
- {
- "name": "cdx:poetry:package:source:vcs:requested_revision",
- "value": "23.2"
- },
{
"name": "cdx:python:package:source:vcs:commit_id",
"value": "b3a5d7d68991c040615d5345bb55f61de53ba176"
@@ -211,7 +203,7 @@
],
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/plain_with-urls_1.3.xml.bin b/tests/_data/snapshots/environment/plain_with-urls_1.3.xml.bin
index aed0badc4..cdd639093 100644
--- a/tests/_data/snapshots/environment/plain_with-urls_1.3.xml.bin
+++ b/tests/_data/snapshots/environment/plain_with-urls_1.3.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
@@ -51,8 +51,6 @@
- b3a5d7d68991c040615d5345bb55f61de53ba176
- 23.2
b3a5d7d68991c040615d5345bb55f61de53ba176
23.2
diff --git a/tests/_data/snapshots/environment/plain_with-urls_1.4.json.bin b/tests/_data/snapshots/environment/plain_with-urls_1.4.json.bin
index e345e655c..384957f7e 100644
--- a/tests/_data/snapshots/environment/plain_with-urls_1.4.json.bin
+++ b/tests/_data/snapshots/environment/plain_with-urls_1.4.json.bin
@@ -34,14 +34,6 @@
],
"name": "packaging",
"properties": [
- {
- "name": "cdx:poetry:package:source:vcs:commit_id",
- "value": "b3a5d7d68991c040615d5345bb55f61de53ba176"
- },
- {
- "name": "cdx:poetry:package:source:vcs:requested_revision",
- "value": "23.2"
- },
{
"name": "cdx:python:package:source:vcs:commit_id",
"value": "b3a5d7d68991c040615d5345bb55f61de53ba176"
@@ -210,6 +202,45 @@
}
],
"tools": [
+ {
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "name": "cyclonedx-py",
+ "vendor": "CycloneDX",
+ "version": "thisVersion-testing"
+ },
{
"externalReferences": [ ],
"name": "cyclonedx-python-lib",
diff --git a/tests/_data/snapshots/environment/plain_with-urls_1.4.xml.bin b/tests/_data/snapshots/environment/plain_with-urls_1.4.xml.bin
index 28b522840..e9e5ecfcc 100644
--- a/tests/_data/snapshots/environment/plain_with-urls_1.4.xml.bin
+++ b/tests/_data/snapshots/environment/plain_with-urls_1.4.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
@@ -78,8 +78,6 @@
- b3a5d7d68991c040615d5345bb55f61de53ba176
- 23.2
b3a5d7d68991c040615d5345bb55f61de53ba176
23.2
diff --git a/tests/_data/snapshots/environment/plain_with-urls_1.5.json.bin b/tests/_data/snapshots/environment/plain_with-urls_1.5.json.bin
index e9057aaf9..08772f30a 100644
--- a/tests/_data/snapshots/environment/plain_with-urls_1.5.json.bin
+++ b/tests/_data/snapshots/environment/plain_with-urls_1.5.json.bin
@@ -34,14 +34,6 @@
],
"name": "packaging",
"properties": [
- {
- "name": "cdx:poetry:package:source:vcs:commit_id",
- "value": "b3a5d7d68991c040615d5345bb55f61de53ba176"
- },
- {
- "name": "cdx:poetry:package:source:vcs:requested_revision",
- "value": "23.2"
- },
{
"name": "cdx:python:package:source:vcs:commit_id",
"value": "b3a5d7d68991c040615d5345bb55f61de53ba176"
@@ -209,14 +201,67 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
diff --git a/tests/_data/snapshots/environment/plain_with-urls_1.5.xml.bin b/tests/_data/snapshots/environment/plain_with-urls_1.5.xml.bin
index dda892d63..4b12543ad 100644
--- a/tests/_data/snapshots/environment/plain_with-urls_1.5.xml.bin
+++ b/tests/_data/snapshots/environment/plain_with-urls_1.5.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
with-urls
@@ -78,8 +88,6 @@
- b3a5d7d68991c040615d5345bb55f61de53ba176
- 23.2
b3a5d7d68991c040615d5345bb55f61de53ba176
23.2
diff --git a/tests/_data/snapshots/environment/plain_with-urls_1.6.json.bin b/tests/_data/snapshots/environment/plain_with-urls_1.6.json.bin
index 266603546..5affcb704 100644
--- a/tests/_data/snapshots/environment/plain_with-urls_1.6.json.bin
+++ b/tests/_data/snapshots/environment/plain_with-urls_1.6.json.bin
@@ -36,14 +36,6 @@
],
"name": "packaging",
"properties": [
- {
- "name": "cdx:poetry:package:source:vcs:commit_id",
- "value": "b3a5d7d68991c040615d5345bb55f61de53ba176"
- },
- {
- "name": "cdx:poetry:package:source:vcs:requested_revision",
- "value": "23.2"
- },
{
"name": "cdx:python:package:source:vcs:commit_id",
"value": "b3a5d7d68991c040615d5345bb55f61de53ba176"
@@ -214,14 +206,68 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "acknowledgement": "declared",
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.6.schema.json",
diff --git a/tests/_data/snapshots/environment/plain_with-urls_1.6.xml.bin b/tests/_data/snapshots/environment/plain_with-urls_1.6.xml.bin
index 1b7efbd22..60600031d 100644
--- a/tests/_data/snapshots/environment/plain_with-urls_1.6.xml.bin
+++ b/tests/_data/snapshots/environment/plain_with-urls_1.6.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
with-urls
@@ -78,8 +88,6 @@
- b3a5d7d68991c040615d5345bb55f61de53ba176
- 23.2
b3a5d7d68991c040615d5345bb55f61de53ba176
23.2
diff --git a/tests/_data/snapshots/environment/texts_with-license-pep639_1.2.json.bin b/tests/_data/snapshots/environment/texts_with-license-pep639_1.2.json.bin
index 2f2f678df..07ab2198e 100644
--- a/tests/_data/snapshots/environment/texts_with-license-pep639_1.2.json.bin
+++ b/tests/_data/snapshots/environment/texts_with-license-pep639_1.2.json.bin
@@ -190,7 +190,7 @@
},
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/texts_with-license-pep639_1.2.xml.bin b/tests/_data/snapshots/environment/texts_with-license-pep639_1.2.xml.bin
index 7fe5601e6..f66944050 100644
--- a/tests/_data/snapshots/environment/texts_with-license-pep639_1.2.xml.bin
+++ b/tests/_data/snapshots/environment/texts_with-license-pep639_1.2.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/texts_with-license-pep639_1.3.json.bin b/tests/_data/snapshots/environment/texts_with-license-pep639_1.3.json.bin
index 946efb407..b5fc2710e 100644
--- a/tests/_data/snapshots/environment/texts_with-license-pep639_1.3.json.bin
+++ b/tests/_data/snapshots/environment/texts_with-license-pep639_1.3.json.bin
@@ -196,7 +196,7 @@
],
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/environment/texts_with-license-pep639_1.3.xml.bin b/tests/_data/snapshots/environment/texts_with-license-pep639_1.3.xml.bin
index a9a7f53eb..7332598ca 100644
--- a/tests/_data/snapshots/environment/texts_with-license-pep639_1.3.xml.bin
+++ b/tests/_data/snapshots/environment/texts_with-license-pep639_1.3.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/texts_with-license-pep639_1.4.json.bin b/tests/_data/snapshots/environment/texts_with-license-pep639_1.4.json.bin
index 8460caaeb..565f0e8c2 100644
--- a/tests/_data/snapshots/environment/texts_with-license-pep639_1.4.json.bin
+++ b/tests/_data/snapshots/environment/texts_with-license-pep639_1.4.json.bin
@@ -195,6 +195,45 @@
}
],
"tools": [
+ {
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "name": "cyclonedx-py",
+ "vendor": "CycloneDX",
+ "version": "thisVersion-testing"
+ },
{
"externalReferences": [ ],
"name": "cyclonedx-python-lib",
diff --git a/tests/_data/snapshots/environment/texts_with-license-pep639_1.4.xml.bin b/tests/_data/snapshots/environment/texts_with-license-pep639_1.4.xml.bin
index 152012402..61db29c5d 100644
--- a/tests/_data/snapshots/environment/texts_with-license-pep639_1.4.xml.bin
+++ b/tests/_data/snapshots/environment/texts_with-license-pep639_1.4.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/environment/texts_with-license-pep639_1.5.json.bin b/tests/_data/snapshots/environment/texts_with-license-pep639_1.5.json.bin
index 1b8833e1a..db5b81a85 100644
--- a/tests/_data/snapshots/environment/texts_with-license-pep639_1.5.json.bin
+++ b/tests/_data/snapshots/environment/texts_with-license-pep639_1.5.json.bin
@@ -194,14 +194,67 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
diff --git a/tests/_data/snapshots/environment/texts_with-license-pep639_1.5.xml.bin b/tests/_data/snapshots/environment/texts_with-license-pep639_1.5.xml.bin
index bf911fb1f..1e93e3eb1 100644
--- a/tests/_data/snapshots/environment/texts_with-license-pep639_1.5.xml.bin
+++ b/tests/_data/snapshots/environment/texts_with-license-pep639_1.5.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
with-extras
diff --git a/tests/_data/snapshots/environment/texts_with-license-pep639_1.6.json.bin b/tests/_data/snapshots/environment/texts_with-license-pep639_1.6.json.bin
index 516b4621e..4d3832ff5 100644
--- a/tests/_data/snapshots/environment/texts_with-license-pep639_1.6.json.bin
+++ b/tests/_data/snapshots/environment/texts_with-license-pep639_1.6.json.bin
@@ -201,14 +201,68 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "acknowledgement": "declared",
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.6.schema.json",
diff --git a/tests/_data/snapshots/environment/texts_with-license-pep639_1.6.xml.bin b/tests/_data/snapshots/environment/texts_with-license-pep639_1.6.xml.bin
index 6089decdb..5c97bd7c8 100644
--- a/tests/_data/snapshots/environment/texts_with-license-pep639_1.6.xml.bin
+++ b/tests/_data/snapshots/environment/texts_with-license-pep639_1.6.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
with-extras
diff --git a/tests/_data/snapshots/pipenv/plain_category-deps_1.2.json.bin b/tests/_data/snapshots/pipenv/plain_category-deps_1.2.json.bin
index 29db2b692..53045085c 100644
--- a/tests/_data/snapshots/pipenv/plain_category-deps_1.2.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_category-deps_1.2.json.bin
@@ -33,7 +33,7 @@
},
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/pipenv/plain_category-deps_1.2.xml.bin b/tests/_data/snapshots/pipenv/plain_category-deps_1.2.xml.bin
index 8bb75f318..6c6f23687 100644
--- a/tests/_data/snapshots/pipenv/plain_category-deps_1.2.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_category-deps_1.2.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/pipenv/plain_category-deps_1.3.json.bin b/tests/_data/snapshots/pipenv/plain_category-deps_1.3.json.bin
index bf5f14003..7e7590571 100644
--- a/tests/_data/snapshots/pipenv/plain_category-deps_1.3.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_category-deps_1.3.json.bin
@@ -55,7 +55,7 @@
],
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/pipenv/plain_category-deps_1.3.xml.bin b/tests/_data/snapshots/pipenv/plain_category-deps_1.3.xml.bin
index 66ddf3f36..00cdaff15 100644
--- a/tests/_data/snapshots/pipenv/plain_category-deps_1.3.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_category-deps_1.3.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/pipenv/plain_category-deps_1.4.json.bin b/tests/_data/snapshots/pipenv/plain_category-deps_1.4.json.bin
index 4ab1f8f5d..218633bba 100644
--- a/tests/_data/snapshots/pipenv/plain_category-deps_1.4.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_category-deps_1.4.json.bin
@@ -54,6 +54,45 @@
}
],
"tools": [
+ {
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "name": "cyclonedx-py",
+ "vendor": "CycloneDX",
+ "version": "thisVersion-testing"
+ },
{
"externalReferences": [ ],
"name": "cyclonedx-python-lib",
diff --git a/tests/_data/snapshots/pipenv/plain_category-deps_1.4.xml.bin b/tests/_data/snapshots/pipenv/plain_category-deps_1.4.xml.bin
index f84397a33..63092183e 100644
--- a/tests/_data/snapshots/pipenv/plain_category-deps_1.4.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_category-deps_1.4.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/pipenv/plain_category-deps_1.5.json.bin b/tests/_data/snapshots/pipenv/plain_category-deps_1.5.json.bin
index 7697d6848..530d535c4 100644
--- a/tests/_data/snapshots/pipenv/plain_category-deps_1.5.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_category-deps_1.5.json.bin
@@ -53,14 +53,67 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
diff --git a/tests/_data/snapshots/pipenv/plain_category-deps_1.5.xml.bin b/tests/_data/snapshots/pipenv/plain_category-deps_1.5.xml.bin
index 5fc396b61..30b52e21d 100644
--- a/tests/_data/snapshots/pipenv/plain_category-deps_1.5.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_category-deps_1.5.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
category-deps
diff --git a/tests/_data/snapshots/pipenv/plain_category-deps_1.6.json.bin b/tests/_data/snapshots/pipenv/plain_category-deps_1.6.json.bin
index 2f925cc40..5fa5a89fa 100644
--- a/tests/_data/snapshots/pipenv/plain_category-deps_1.6.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_category-deps_1.6.json.bin
@@ -53,14 +53,68 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "acknowledgement": "declared",
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.6.schema.json",
diff --git a/tests/_data/snapshots/pipenv/plain_category-deps_1.6.xml.bin b/tests/_data/snapshots/pipenv/plain_category-deps_1.6.xml.bin
index c913d8617..0de77f293 100644
--- a/tests/_data/snapshots/pipenv/plain_category-deps_1.6.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_category-deps_1.6.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
category-deps
diff --git a/tests/_data/snapshots/pipenv/plain_default-and-dev_1.2.json.bin b/tests/_data/snapshots/pipenv/plain_default-and-dev_1.2.json.bin
index 0e111c17e..234443b0c 100644
--- a/tests/_data/snapshots/pipenv/plain_default-and-dev_1.2.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_default-and-dev_1.2.json.bin
@@ -50,7 +50,7 @@
},
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/pipenv/plain_default-and-dev_1.2.xml.bin b/tests/_data/snapshots/pipenv/plain_default-and-dev_1.2.xml.bin
index 63499151a..ac20e8a7d 100644
--- a/tests/_data/snapshots/pipenv/plain_default-and-dev_1.2.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_default-and-dev_1.2.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/pipenv/plain_default-and-dev_1.3.json.bin b/tests/_data/snapshots/pipenv/plain_default-and-dev_1.3.json.bin
index af4a6d9c4..19d633c7e 100644
--- a/tests/_data/snapshots/pipenv/plain_default-and-dev_1.3.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_default-and-dev_1.3.json.bin
@@ -88,7 +88,7 @@
],
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/pipenv/plain_default-and-dev_1.3.xml.bin b/tests/_data/snapshots/pipenv/plain_default-and-dev_1.3.xml.bin
index 166d4c3e7..d48978087 100644
--- a/tests/_data/snapshots/pipenv/plain_default-and-dev_1.3.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_default-and-dev_1.3.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/pipenv/plain_default-and-dev_1.4.json.bin b/tests/_data/snapshots/pipenv/plain_default-and-dev_1.4.json.bin
index 3b30cd662..af946e36e 100644
--- a/tests/_data/snapshots/pipenv/plain_default-and-dev_1.4.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_default-and-dev_1.4.json.bin
@@ -87,6 +87,45 @@
}
],
"tools": [
+ {
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "name": "cyclonedx-py",
+ "vendor": "CycloneDX",
+ "version": "thisVersion-testing"
+ },
{
"externalReferences": [ ],
"name": "cyclonedx-python-lib",
diff --git a/tests/_data/snapshots/pipenv/plain_default-and-dev_1.4.xml.bin b/tests/_data/snapshots/pipenv/plain_default-and-dev_1.4.xml.bin
index bbc5eaff6..f92d1e7d6 100644
--- a/tests/_data/snapshots/pipenv/plain_default-and-dev_1.4.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_default-and-dev_1.4.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/pipenv/plain_default-and-dev_1.5.json.bin b/tests/_data/snapshots/pipenv/plain_default-and-dev_1.5.json.bin
index 3cfb9c325..b1e5a7033 100644
--- a/tests/_data/snapshots/pipenv/plain_default-and-dev_1.5.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_default-and-dev_1.5.json.bin
@@ -86,14 +86,67 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
diff --git a/tests/_data/snapshots/pipenv/plain_default-and-dev_1.5.xml.bin b/tests/_data/snapshots/pipenv/plain_default-and-dev_1.5.xml.bin
index b263c7c2e..5be0aa94b 100644
--- a/tests/_data/snapshots/pipenv/plain_default-and-dev_1.5.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_default-and-dev_1.5.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
default-and-dev
diff --git a/tests/_data/snapshots/pipenv/plain_default-and-dev_1.6.json.bin b/tests/_data/snapshots/pipenv/plain_default-and-dev_1.6.json.bin
index 0cb9c6709..48c90fbb8 100644
--- a/tests/_data/snapshots/pipenv/plain_default-and-dev_1.6.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_default-and-dev_1.6.json.bin
@@ -86,14 +86,68 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "acknowledgement": "declared",
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.6.schema.json",
diff --git a/tests/_data/snapshots/pipenv/plain_default-and-dev_1.6.xml.bin b/tests/_data/snapshots/pipenv/plain_default-and-dev_1.6.xml.bin
index b9ed026fd..43b54086b 100644
--- a/tests/_data/snapshots/pipenv/plain_default-and-dev_1.6.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_default-and-dev_1.6.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
default-and-dev
diff --git a/tests/_data/snapshots/pipenv/plain_editable-self_1.2.json.bin b/tests/_data/snapshots/pipenv/plain_editable-self_1.2.json.bin
index acc0bc188..fbfc1445e 100644
--- a/tests/_data/snapshots/pipenv/plain_editable-self_1.2.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_editable-self_1.2.json.bin
@@ -14,7 +14,7 @@
},
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/pipenv/plain_editable-self_1.2.xml.bin b/tests/_data/snapshots/pipenv/plain_editable-self_1.2.xml.bin
index 914a56f61..c48d9e831 100644
--- a/tests/_data/snapshots/pipenv/plain_editable-self_1.2.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_editable-self_1.2.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/pipenv/plain_editable-self_1.3.json.bin b/tests/_data/snapshots/pipenv/plain_editable-self_1.3.json.bin
index ff13d7967..cba63306d 100644
--- a/tests/_data/snapshots/pipenv/plain_editable-self_1.3.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_editable-self_1.3.json.bin
@@ -26,7 +26,7 @@
],
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/pipenv/plain_editable-self_1.3.xml.bin b/tests/_data/snapshots/pipenv/plain_editable-self_1.3.xml.bin
index f549a582c..67d75d4ab 100644
--- a/tests/_data/snapshots/pipenv/plain_editable-self_1.3.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_editable-self_1.3.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/pipenv/plain_editable-self_1.4.json.bin b/tests/_data/snapshots/pipenv/plain_editable-self_1.4.json.bin
index 1bd3f8a44..cbf1f78f4 100644
--- a/tests/_data/snapshots/pipenv/plain_editable-self_1.4.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_editable-self_1.4.json.bin
@@ -25,6 +25,45 @@
}
],
"tools": [
+ {
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "name": "cyclonedx-py",
+ "vendor": "CycloneDX",
+ "version": "thisVersion-testing"
+ },
{
"externalReferences": [ ],
"name": "cyclonedx-python-lib",
diff --git a/tests/_data/snapshots/pipenv/plain_editable-self_1.4.xml.bin b/tests/_data/snapshots/pipenv/plain_editable-self_1.4.xml.bin
index 695555b52..5e465b096 100644
--- a/tests/_data/snapshots/pipenv/plain_editable-self_1.4.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_editable-self_1.4.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/pipenv/plain_editable-self_1.5.json.bin b/tests/_data/snapshots/pipenv/plain_editable-self_1.5.json.bin
index b587a6450..c9e433e63 100644
--- a/tests/_data/snapshots/pipenv/plain_editable-self_1.5.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_editable-self_1.5.json.bin
@@ -24,14 +24,67 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
diff --git a/tests/_data/snapshots/pipenv/plain_editable-self_1.5.xml.bin b/tests/_data/snapshots/pipenv/plain_editable-self_1.5.xml.bin
index 2324e7632..06b8c6a2d 100644
--- a/tests/_data/snapshots/pipenv/plain_editable-self_1.5.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_editable-self_1.5.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
editable-self
diff --git a/tests/_data/snapshots/pipenv/plain_editable-self_1.6.json.bin b/tests/_data/snapshots/pipenv/plain_editable-self_1.6.json.bin
index 5e076cbde..fc1983cfd 100644
--- a/tests/_data/snapshots/pipenv/plain_editable-self_1.6.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_editable-self_1.6.json.bin
@@ -24,14 +24,68 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "acknowledgement": "declared",
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.6.schema.json",
diff --git a/tests/_data/snapshots/pipenv/plain_editable-self_1.6.xml.bin b/tests/_data/snapshots/pipenv/plain_editable-self_1.6.xml.bin
index 4fde0c398..b97ea0015 100644
--- a/tests/_data/snapshots/pipenv/plain_editable-self_1.6.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_editable-self_1.6.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
editable-self
diff --git a/tests/_data/snapshots/pipenv/plain_local_1.2.json.bin b/tests/_data/snapshots/pipenv/plain_local_1.2.json.bin
index b2a62adda..f46d43a5b 100644
--- a/tests/_data/snapshots/pipenv/plain_local_1.2.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_local_1.2.json.bin
@@ -64,7 +64,7 @@
},
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/pipenv/plain_local_1.2.xml.bin b/tests/_data/snapshots/pipenv/plain_local_1.2.xml.bin
index f520d6c97..cd29abc02 100644
--- a/tests/_data/snapshots/pipenv/plain_local_1.2.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_local_1.2.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/pipenv/plain_local_1.3.json.bin b/tests/_data/snapshots/pipenv/plain_local_1.3.json.bin
index 2b17976e3..9edeb9bbb 100644
--- a/tests/_data/snapshots/pipenv/plain_local_1.3.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_local_1.3.json.bin
@@ -100,7 +100,7 @@
],
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/pipenv/plain_local_1.3.xml.bin b/tests/_data/snapshots/pipenv/plain_local_1.3.xml.bin
index 990af7273..9115ff8bf 100644
--- a/tests/_data/snapshots/pipenv/plain_local_1.3.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_local_1.3.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/pipenv/plain_local_1.4.json.bin b/tests/_data/snapshots/pipenv/plain_local_1.4.json.bin
index ef1252634..69ce89e1c 100644
--- a/tests/_data/snapshots/pipenv/plain_local_1.4.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_local_1.4.json.bin
@@ -96,6 +96,45 @@
}
],
"tools": [
+ {
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "name": "cyclonedx-py",
+ "vendor": "CycloneDX",
+ "version": "thisVersion-testing"
+ },
{
"externalReferences": [ ],
"name": "cyclonedx-python-lib",
diff --git a/tests/_data/snapshots/pipenv/plain_local_1.4.xml.bin b/tests/_data/snapshots/pipenv/plain_local_1.4.xml.bin
index 8a9e27a0b..c91b655ce 100644
--- a/tests/_data/snapshots/pipenv/plain_local_1.4.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_local_1.4.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/pipenv/plain_local_1.5.json.bin b/tests/_data/snapshots/pipenv/plain_local_1.5.json.bin
index 43c61ebd5..3feb1a0c7 100644
--- a/tests/_data/snapshots/pipenv/plain_local_1.5.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_local_1.5.json.bin
@@ -95,14 +95,67 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
diff --git a/tests/_data/snapshots/pipenv/plain_local_1.5.xml.bin b/tests/_data/snapshots/pipenv/plain_local_1.5.xml.bin
index fcf732d9e..4a4f290ff 100644
--- a/tests/_data/snapshots/pipenv/plain_local_1.5.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_local_1.5.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
local
diff --git a/tests/_data/snapshots/pipenv/plain_local_1.6.json.bin b/tests/_data/snapshots/pipenv/plain_local_1.6.json.bin
index 8d4d7bac4..1a73a078d 100644
--- a/tests/_data/snapshots/pipenv/plain_local_1.6.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_local_1.6.json.bin
@@ -95,14 +95,68 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "acknowledgement": "declared",
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.6.schema.json",
diff --git a/tests/_data/snapshots/pipenv/plain_local_1.6.xml.bin b/tests/_data/snapshots/pipenv/plain_local_1.6.xml.bin
index c1d0cc245..5e23a0eed 100644
--- a/tests/_data/snapshots/pipenv/plain_local_1.6.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_local_1.6.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
local
diff --git a/tests/_data/snapshots/pipenv/plain_no-deps_1.2.json.bin b/tests/_data/snapshots/pipenv/plain_no-deps_1.2.json.bin
index 6de193b16..f7ab17f16 100644
--- a/tests/_data/snapshots/pipenv/plain_no-deps_1.2.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_no-deps_1.2.json.bin
@@ -51,7 +51,7 @@
},
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/pipenv/plain_no-deps_1.2.xml.bin b/tests/_data/snapshots/pipenv/plain_no-deps_1.2.xml.bin
index a982f421b..5c6c1fc09 100644
--- a/tests/_data/snapshots/pipenv/plain_no-deps_1.2.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_no-deps_1.2.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/pipenv/plain_no-deps_1.3.json.bin b/tests/_data/snapshots/pipenv/plain_no-deps_1.3.json.bin
index 4922946d3..3cfa3a05c 100644
--- a/tests/_data/snapshots/pipenv/plain_no-deps_1.3.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_no-deps_1.3.json.bin
@@ -57,7 +57,7 @@
],
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/pipenv/plain_no-deps_1.3.xml.bin b/tests/_data/snapshots/pipenv/plain_no-deps_1.3.xml.bin
index f70c1e341..c326a1fb8 100644
--- a/tests/_data/snapshots/pipenv/plain_no-deps_1.3.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_no-deps_1.3.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/pipenv/plain_no-deps_1.4.json.bin b/tests/_data/snapshots/pipenv/plain_no-deps_1.4.json.bin
index 354ca1e5d..9c91dd7a0 100644
--- a/tests/_data/snapshots/pipenv/plain_no-deps_1.4.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_no-deps_1.4.json.bin
@@ -56,6 +56,45 @@
}
],
"tools": [
+ {
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "name": "cyclonedx-py",
+ "vendor": "CycloneDX",
+ "version": "thisVersion-testing"
+ },
{
"externalReferences": [ ],
"name": "cyclonedx-python-lib",
diff --git a/tests/_data/snapshots/pipenv/plain_no-deps_1.4.xml.bin b/tests/_data/snapshots/pipenv/plain_no-deps_1.4.xml.bin
index e0d55c556..374af51db 100644
--- a/tests/_data/snapshots/pipenv/plain_no-deps_1.4.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_no-deps_1.4.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/pipenv/plain_no-deps_1.5.json.bin b/tests/_data/snapshots/pipenv/plain_no-deps_1.5.json.bin
index e246c19da..5445beadf 100644
--- a/tests/_data/snapshots/pipenv/plain_no-deps_1.5.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_no-deps_1.5.json.bin
@@ -55,14 +55,67 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
diff --git a/tests/_data/snapshots/pipenv/plain_no-deps_1.5.xml.bin b/tests/_data/snapshots/pipenv/plain_no-deps_1.5.xml.bin
index d4d391542..c08c97e18 100644
--- a/tests/_data/snapshots/pipenv/plain_no-deps_1.5.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_no-deps_1.5.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
no-deps
diff --git a/tests/_data/snapshots/pipenv/plain_no-deps_1.6.json.bin b/tests/_data/snapshots/pipenv/plain_no-deps_1.6.json.bin
index 606316897..4dba1ef28 100644
--- a/tests/_data/snapshots/pipenv/plain_no-deps_1.6.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_no-deps_1.6.json.bin
@@ -56,14 +56,68 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "acknowledgement": "declared",
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.6.schema.json",
diff --git a/tests/_data/snapshots/pipenv/plain_no-deps_1.6.xml.bin b/tests/_data/snapshots/pipenv/plain_no-deps_1.6.xml.bin
index 8081bd9df..aa980c042 100644
--- a/tests/_data/snapshots/pipenv/plain_no-deps_1.6.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_no-deps_1.6.xml.bin
@@ -2,43 +2,53 @@
-
- CycloneDX
- cyclonedx-bom
- thisVersion-testing
-
-
- https://github.com/CycloneDX/cyclonedx-python/actions
-
-
- https://pypi.org/project/cyclonedx-bom/
-
-
- https://cyclonedx-bom-tool.readthedocs.io/
-
-
- https://github.com/CycloneDX/cyclonedx-python/issues
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
-
-
- https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
-
-
- https://github.com/CycloneDX/cyclonedx-python/
-
-
- https://github.com/CycloneDX/cyclonedx-python/#readme
-
-
-
-
- CycloneDX
- cyclonedx-python-lib
- libVersion-testing
-
-
+
+
+ CycloneDX
+ cyclonedx-py
+ thisVersion-testing
+ CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments
+
+
+ Apache-2.0
+
+
+
+
+ https://github.com/CycloneDX/cyclonedx-python/actions
+
+
+ https://pypi.org/project/cyclonedx-bom/
+
+
+ https://cyclonedx-bom-tool.readthedocs.io/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/issues
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE
+
+
+ https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md
+
+
+ https://github.com/CycloneDX/cyclonedx-python/
+
+
+ https://github.com/CycloneDX/cyclonedx-python/#readme
+
+
+
+
+ CycloneDX
+ cyclonedx-python-lib
+ libVersion-testing
+
+
+
+
+
no-deps
diff --git a/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.2.json.bin b/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.2.json.bin
index c4c0b9ad1..f2933a799 100644
--- a/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.2.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.2.json.bin
@@ -67,7 +67,7 @@
},
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.2.xml.bin b/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.2.xml.bin
index c3eb34cbf..2ad4df621 100644
--- a/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.2.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.2.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.3.json.bin b/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.3.json.bin
index 268e36691..57fa18127 100644
--- a/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.3.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.3.json.bin
@@ -317,7 +317,7 @@
],
"tools": [
{
- "name": "cyclonedx-bom",
+ "name": "cyclonedx-py",
"vendor": "CycloneDX",
"version": "thisVersion-testing"
},
diff --git a/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.3.xml.bin b/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.3.xml.bin
index b7e88b807..7981bf022 100644
--- a/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.3.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.3.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.4.json.bin b/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.4.json.bin
index 25c9cced5..895a5dfed 100644
--- a/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.4.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.4.json.bin
@@ -316,6 +316,45 @@
}
],
"tools": [
+ {
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "name": "cyclonedx-py",
+ "vendor": "CycloneDX",
+ "version": "thisVersion-testing"
+ },
{
"externalReferences": [ ],
"name": "cyclonedx-python-lib",
diff --git a/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.4.xml.bin b/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.4.xml.bin
index b75111000..4f427b2ec 100644
--- a/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.4.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.4.xml.bin
@@ -4,7 +4,7 @@
CycloneDX
- cyclonedx-bom
+ cyclonedx-py
thisVersion-testing
diff --git a/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.5.json.bin b/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.5.json.bin
index 2b6a9f4a8..b33bdff35 100644
--- a/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.5.json.bin
+++ b/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.5.json.bin
@@ -315,14 +315,67 @@
"value": "true"
}
],
- "tools": [
- {
- "externalReferences": [ ],
- "name": "cyclonedx-python-lib",
- "vendor": "CycloneDX",
- "version": "libVersion-testing"
- }
- ]
+ "tools": {
+ "components": [
+ {
+ "description": "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments",
+ "externalReferences": [
+ {
+ "type": "build-system",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/actions"
+ },
+ {
+ "type": "distribution",
+ "url": "https://pypi.org/project/cyclonedx-bom/"
+ },
+ {
+ "type": "documentation",
+ "url": "https://cyclonedx-bom-tool.readthedocs.io/"
+ },
+ {
+ "type": "issue-tracker",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/issues"
+ },
+ {
+ "type": "license",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/LICENSE"
+ },
+ {
+ "type": "release-notes",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/blob/main/CHANGELOG.md"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/CycloneDX/cyclonedx-python/#readme"
+ }
+ ],
+ "group": "CycloneDX",
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "name": "cyclonedx-py",
+ "type": "application",
+ "version": "thisVersion-testing"
+ },
+ {
+ "description": "stripped",
+ "externalReferences": [ ],
+ "group": "CycloneDX",
+ "licenses": [ ],
+ "name": "cyclonedx-python-lib",
+ "type": "library",
+ "version": "libVersion-testing"
+ }
+ ]
+ }
},
"version": 1,
"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
diff --git a/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.5.xml.bin b/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.5.xml.bin
index eea28adf6..d9b233ea8 100644
--- a/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.5.xml.bin
+++ b/tests/_data/snapshots/pipenv/plain_normalize-packagename_1.5.xml.bin
@@ -2,43 +2,53 @@