Skip to content

Commit 8800b68

Browse files
author
semantic-release
committed
chore(release): 6.0.0
Automatically generated by python-semantic-release Signed-off-by: semantic-release <semantic-release>
1 parent 74865f8 commit 8800b68

File tree

4 files changed

+229
-3
lines changed

4 files changed

+229
-3
lines changed

CHANGELOG.md

+226
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,232 @@
22

33

44

5+
## v6.0.0 (2023-12-10)
6+
7+
### Breaking
8+
9+
* feat!: v6.0.0 (#492)
10+
11+
### Breaking Changes
12+
13+
* Removed symbols that were already marked as deprecated (via [#493])
14+
* Removed symbols in `parser.*` ([#489] via [#495])
15+
* Removed `output.LATEST_SUPPORTED_SCHEMA_VERSION` ([#491] via [#494])
16+
* Serialization of unsupported enum values might downgrade/migrate/omit them ([#490] via [#496])
17+
Handling might raise warnings if a data loss occurred due to omitting.
18+
The result is a guaranteed valid XML/JSON, since no (enum-)invalid values are rendered.
19+
* Serialization of any `model.component.Component` with unsupported `type` raises `exception.serialization.SerializationOfUnsupportedComponentTypeException` ([#490] via [#496])
20+
* Object `model.bom_ref.BomRef`&#39;s property `value` defaults to `Null`, was arbitrary `UUID` ([#504] via [#505])
21+
This change does not affect serialization. All `bom-ref`s are guaranteed to have unique values on rendering.
22+
* Removed helpers from public API ([#503] via [#506])
23+
24+
### Added
25+
26+
* Basic support for CycloneDX 1.5 ([#404] via [#488])
27+
* No data models were enhanced nor added, yet.
28+
Pull requests to add functionality are welcome.
29+
* Existing enumerable got new cases, to reflect features of CycloneDX 1.5 ([#404] via [#488])
30+
* Outputters were enabled to render CycloneDX 1.5 ([#404] via [#488])
31+
32+
### Tests
33+
34+
* Created (regression/unit/integration/functional) tests for CycloneDX 1.5 ([#404] via [#488])
35+
* Created (regression/functional) tests for Enums&#39; handling and completeness ([#490] via [#496])
36+
37+
### Misc
38+
39+
* Bumped dependency `py-serializable@^0.16`, was `@^0.15` (via [#496])
40+
41+
42+
----
43+
44+
### API Changes — the details for migration
45+
46+
* Added new sub-package `exception.serialization` (via [#496])
47+
* Removed class `models.ComparableTuple` ([#503] via [#506])
48+
* Enum `model.ExternalReferenceType` got new cases, to reflect features for CycloneDX 1.5 ([#404] via [#488])
49+
* Removed function `models.get_now_utc` ([#503] via [#506])
50+
* Removed function `models.sha1sum` ([#503] via [#506])
51+
* Enum `model.component.ComponentType` got new cases, to reflect features for CycloneDX 1.5 ([#404] via [#488])
52+
* Removed `model.component.Component.__init__()`&#39;s deprecated optional kwarg `namespace` (via [#493])
53+
Use kwarg `group` instead.
54+
* Removed `model.component.Component.__init__()`&#39;s deprecated optional kwarg `license_str` (via [#493])
55+
Use kwarg `licenses` instead.
56+
* Removed deprecated method `model.component.Component.get_namespace()` (via [#493])
57+
* Removed class `models.dependency.DependencyDependencies` ([#503] via [#506])
58+
* Removed `model.vulnerability.Vulnerability.__init__()`&#39;s deprecated optional kwarg `source_name` (via [#493])
59+
Use kwarg `source` instead.
60+
* Removed `model.vulnerability.Vulnerability.__init__()`&#39;s deprecated optional kwarg `source_url` (via [#493])
61+
Use kwarg `source` instead.
62+
* Removed `model.vulnerability.Vulnerability.__init__()`&#39;s deprecated optional kwarg `recommendations` (via [#493])
63+
Use kwarg `recommendation` instead.
64+
* Removed `model.vulnerability.VulnerabilityRating.__init__()`&#39;s deprecated optional kwarg `score_base` (via [#493])
65+
Use kwarg `score` instead.
66+
* Enum `model.vulnerability.VulnerabilityScoreSource` got new cases, to reflect features for CycloneDX 1.5 ([#404] via [#488])
67+
* Removed `output.LATEST_SUPPORTED_SCHEMA_VERSION` ([#491] via [#494])
68+
* Removed deprecated function `output.get_instance()` (via [#493])
69+
Use function `output.make_outputter()` instead.
70+
* Added new class `output.json.JsonV1Dot5`, to reflect CycloneDX 1.5 ([#404] via [#488])
71+
* Added new item to dict `output.json.BY_SCHEMA_VERSION`, to reflect CycloneDX 1.5 ([#404] via [#488])
72+
* Added new class `output.xml.XmlV1Dot5`, to reflect CycloneDX 1.5 ([#404] via [#488])
73+
* Added new item to dict `output.xml.BY_SCHEMA_VERSION`, to reflect CycloneDX 1.5 ([#404] via [#488])
74+
* Removed class `parser.ParserWarning` ([#489] via [#495])
75+
* Removed class `parser.BaseParser` ([#489] via [#495])
76+
* Enum `schema.SchemaVersion` got new case `V1_5`, to reflect CycloneDX 1.5 ([#404] via [#488])
77+
78+
79+
[#404]: https://github.com/CycloneDX/cyclonedx-python-lib/issues/404
80+
[#488]: https://github.com/CycloneDX/cyclonedx-python-lib/pull/488
81+
[#489]: https://github.com/CycloneDX/cyclonedx-python-lib/issues/489
82+
[#490]: https://github.com/CycloneDX/cyclonedx-python-lib/issues/490
83+
[#491]: https://github.com/CycloneDX/cyclonedx-python-lib/issues/491
84+
[#493]: https://github.com/CycloneDX/cyclonedx-python-lib/pull/493
85+
[#494]: https://github.com/CycloneDX/cyclonedx-python-lib/pull/494
86+
[#495]: https://github.com/CycloneDX/cyclonedx-python-lib/pull/495
87+
[#496]: https://github.com/CycloneDX/cyclonedx-python-lib/pull/496
88+
[#503]: https://github.com/CycloneDX/cyclonedx-python-lib/issues/503
89+
[#504]: https://github.com/CycloneDX/cyclonedx-python-lib/issues/504
90+
[#505]: https://github.com/CycloneDX/cyclonedx-python-lib/pull/505
91+
[#506]: https://github.com/CycloneDX/cyclonedx-python-lib/pull/506
92+
93+
---------
94+
95+
Signed-off-by: Johannes Feichtner &lt;[email protected]&gt;
96+
Signed-off-by: Jan Kowalleck &lt;[email protected]&gt;
97+
Signed-off-by: semantic-release &lt;semantic-release&gt;
98+
Co-authored-by: Johannes Feichtner &lt;[email protected]&gt;
99+
Co-authored-by: semantic-release &lt;semantic-release&gt; ([`74865f8`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/74865f8e498c9723c2ce3556ceecb6a3cfc4c490))
100+
101+
### Chore
102+
103+
* chore(deps): bump python-semantic-release/python-semantic-release (#509)
104+
105+
Bumps [python-semantic-release/python-semantic-release](https://github.com/python-semantic-release/python-semantic-release) from 8.0.8 to 8.5.0.
106+
- [Release notes](https://github.com/python-semantic-release/python-semantic-release/releases)
107+
- [Changelog](https://github.com/python-semantic-release/python-semantic-release/blob/master/CHANGELOG.md)
108+
- [Commits](https://github.com/python-semantic-release/python-semantic-release/compare/v8.0.8...v8.5.0)
109+
110+
---
111+
updated-dependencies:
112+
- dependency-name: python-semantic-release/python-semantic-release
113+
dependency-type: direct:production
114+
update-type: version-update:semver-minor
115+
...
116+
117+
Signed-off-by: dependabot[bot] &lt;[email protected]&gt;
118+
Co-authored-by: dependabot[bot] &lt;49699333+dependabot[bot]@users.noreply.github.com&gt; ([`9ed9ab1`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/9ed9ab129e5123b061a9cd358d418f026d2e8b7a))
119+
120+
* chore(deps-dev): update isort requirement from 5.12.0 to 5.13.0 (#512)
121+
122+
Updates the requirements on [isort](https://github.com/pycqa/isort) to permit the latest version.
123+
- [Release notes](https://github.com/pycqa/isort/releases)
124+
- [Changelog](https://github.com/PyCQA/isort/blob/main/CHANGELOG.md)
125+
- [Commits](https://github.com/pycqa/isort/compare/5.12.0...5.13.0)
126+
127+
---
128+
updated-dependencies:
129+
- dependency-name: isort
130+
dependency-type: direct:development
131+
...
132+
133+
Signed-off-by: dependabot[bot] &lt;[email protected]&gt;
134+
Co-authored-by: dependabot[bot] &lt;49699333+dependabot[bot]@users.noreply.github.com&gt; ([`0eba631`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/0eba631c628faab454eabba66755d311606c536a))
135+
136+
* chore(deps-dev): update bandit requirement from 1.7.5 to 1.7.6 (#510)
137+
138+
Updates the requirements on [bandit](https://github.com/PyCQA/bandit) to permit the latest version.
139+
- [Release notes](https://github.com/PyCQA/bandit/releases)
140+
- [Commits](https://github.com/PyCQA/bandit/compare/1.7.5...1.7.6)
141+
142+
---
143+
updated-dependencies:
144+
- dependency-name: bandit
145+
dependency-type: direct:development
146+
...
147+
148+
Signed-off-by: dependabot[bot] &lt;[email protected]&gt;
149+
Co-authored-by: dependabot[bot] &lt;49699333+dependabot[bot]@users.noreply.github.com&gt; ([`153b07a`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/153b07a28047c408e0dc442330aa1505e74c175e))
150+
151+
* chore(deps): bump actions/setup-python from 4 to 5 (#508)
152+
153+
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5.
154+
- [Release notes](https://github.com/actions/setup-python/releases)
155+
- [Commits](https://github.com/actions/setup-python/compare/v4...v5)
156+
157+
---
158+
updated-dependencies:
159+
- dependency-name: actions/setup-python
160+
dependency-type: direct:production
161+
update-type: version-update:semver-major
162+
...
163+
164+
Signed-off-by: dependabot[bot] &lt;[email protected]&gt;
165+
Co-authored-by: dependabot[bot] &lt;49699333+dependabot[bot]@users.noreply.github.com&gt; ([`4e3e0e0`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/4e3e0e0e873ff45a4d6605728cb1160cd912e3cf))
166+
167+
* chore(deps): update sphinx-rtd-theme requirement (#499)
168+
169+
Updates the requirements on [sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme) to permit the latest version.
170+
- [Changelog](https://github.com/readthedocs/sphinx_rtd_theme/blob/master/docs/changelog.rst)
171+
- [Commits](https://github.com/readthedocs/sphinx_rtd_theme/compare/1.3.0...2.0.0)
172+
173+
---
174+
updated-dependencies:
175+
- dependency-name: sphinx-rtd-theme
176+
dependency-type: direct:production
177+
...
178+
179+
Signed-off-by: dependabot[bot] &lt;[email protected]&gt;
180+
Signed-off-by: Jan Kowalleck &lt;[email protected]&gt;
181+
Co-authored-by: dependabot[bot] &lt;49699333+dependabot[bot]@users.noreply.github.com&gt; ([`5d6dd41`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/5d6dd417e0c13e596dab6c76b610788bbbb96093))
182+
183+
* chore(deps-dev): update flake8-bugbear requirement (#500)
184+
185+
Updates the requirements on [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) to permit the latest version.
186+
- [Release notes](https://github.com/PyCQA/flake8-bugbear/releases)
187+
- [Commits](https://github.com/PyCQA/flake8-bugbear/compare/23.9.16...23.11.28)
188+
189+
---
190+
updated-dependencies:
191+
- dependency-name: flake8-bugbear
192+
dependency-type: direct:development
193+
...
194+
195+
Signed-off-by: dependabot[bot] &lt;[email protected]&gt;
196+
Co-authored-by: dependabot[bot] &lt;49699333+dependabot[bot]@users.noreply.github.com&gt; ([`e9a12b9`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/e9a12b93a9866dcb6d9a48396a7c5378d5c5f5e5))
197+
198+
* chore(deps): update py-serializable requirement (#501)
199+
200+
Updates the requirements on [py-serializable](https://github.com/madpah/serializable) to permit the latest version.
201+
- [Release notes](https://github.com/madpah/serializable/releases)
202+
- [Changelog](https://github.com/madpah/serializable/blob/main/CHANGELOG.md)
203+
- [Commits](https://github.com/madpah/serializable/compare/v0.15.0...v0.16.0)
204+
205+
---
206+
updated-dependencies:
207+
- dependency-name: py-serializable
208+
dependency-type: direct:production
209+
...
210+
211+
Signed-off-by: dependabot[bot] &lt;[email protected]&gt;
212+
Co-authored-by: dependabot[bot] &lt;49699333+dependabot[bot]@users.noreply.github.com&gt; ([`04435ab`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/04435abe926b6fa877bd0194733ae87b3bad9610))
213+
214+
* chore(deps-dev): update tox requirement from 4.11.3 to 4.11.4 (#502)
215+
216+
Updates the requirements on [tox](https://github.com/tox-dev/tox) to permit the latest version.
217+
- [Release notes](https://github.com/tox-dev/tox/releases)
218+
- [Changelog](https://github.com/tox-dev/tox/blob/main/docs/changelog.rst)
219+
- [Commits](https://github.com/tox-dev/tox/compare/4.11.3...4.11.4)
220+
221+
---
222+
updated-dependencies:
223+
- dependency-name: tox
224+
dependency-type: direct:development
225+
...
226+
227+
Signed-off-by: dependabot[bot] &lt;[email protected]&gt;
228+
Co-authored-by: dependabot[bot] &lt;49699333+dependabot[bot]@users.noreply.github.com&gt; ([`8bf0e39`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/8bf0e39f62c57c8afb6b7c152156e7af1f02bd5d))
229+
230+
5231
## v5.2.0 (2023-12-02)
6232

7233
### Chore

cyclonedx/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
# !! version is managed by semantic_release
2222
# do not use typing here, or else `semantic_release` might have issues finding the variable
2323
# flake8: noqa
24-
__version__ = "6.0.0-rc.3"
24+
__version__ = "6.0.0"

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
# The full version, including alpha/beta/rc tags
2222
# !! version is managed by semantic_release
23-
release = '6.0.0-rc.3'
23+
release = '6.0.0'
2424

2525
# -- General configuration ---------------------------------------------------
2626

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"
55
[tool.poetry]
66
name = "cyclonedx-python-lib"
77
# !! version is managed by semantic_release
8-
version = "6.0.0-rc.3"
8+
version = "6.0.0"
99
description = "Python library for CycloneDX"
1010
authors = [
1111
"Paul Horton <[email protected]>",

0 commit comments

Comments
 (0)