File tree 4 files changed +32
-3
lines changed
4 files changed +32
-3
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
3
4
+ ## v10.0.1 (2025-05-10)
5
+
6
+ ### Bug Fixes
7
+
8
+ - Add missing comparator for VulnerabilityAnalysis
9
+ ([ #812 ] ( https://github.com/CycloneDX/cyclonedx-python-lib/pull/812 ) ,
10
+ [ ` 0df2982 ` ] ( https://github.com/CycloneDX/cyclonedx-python-lib/commit/0df2982151a99ce6e21336e6904afc0a8058f9af ) )
11
+
12
+ When trying to generate a CycloneDX BOM that has two vulnerabilities that only differ in their
13
+ analysis, you get ``` TypeError: '<' not supported between instances of 'VulnerabilityAnalysis'
14
+ and 'VulnerabilityAnalysis' ```
15
+
16
+ This PR adds the ` __lt__ ` method for the VulnerabilityAnalysis model to fix sorting and also
17
+ includes a test case to verify the fix.
18
+
19
+ ---------
20
+
21
+ Signed-off-by: Riku Häkli <hakli.riku@gmail.com >
22
+
23
+ Co-authored-by: Riku Häkli <hakli.riku@gmail.com >
24
+
25
+ ### Documentation
26
+
27
+ - ** fix** : Mdformat
28
+ ([ ` acf5c45 ` ] ( https://github.com/CycloneDX/cyclonedx-python-lib/commit/acf5c45874808b831c33344f08ea21df20c727bb ) )
29
+
30
+ Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com >
31
+
32
+
4
33
## v10.0.0 (2025-04-23)
5
34
6
35
### Features
Original file line number Diff line number Diff line change 22
22
23
23
# !! version is managed by semantic_release
24
24
# do not use typing here, or else `semantic_release` might have issues finding the variable
25
- __version__ = "10.0.0 " # noqa:Q000
25
+ __version__ = "10.0.1 " # noqa:Q000
Original file line number Diff line number Diff line change 23
23
24
24
# The full version, including alpha/beta/rc tags
25
25
# !! version is managed by semantic_release
26
- release = '10.0.0 '
26
+ release = '10.0.1 '
27
27
28
28
# -- General configuration ---------------------------------------------------
29
29
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"
5
5
[tool .poetry ]
6
6
name = " cyclonedx-python-lib"
7
7
# !! version is managed by semantic_release
8
- version = " 10.0.0 "
8
+ version = " 10.0.1 "
9
9
description = " Python library for CycloneDX"
10
10
authors = [
11
11
" Paul Horton <phorton@sonatype.com>" ,
You can’t perform that action at this time.
0 commit comments