File tree Expand file tree Collapse file tree 4 files changed +31
-3
lines changed Expand file tree Collapse file tree 4 files changed +31
-3
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
3
4
+ ## v6.1.0 (2025-05-12)
5
+
6
+ ### Documentation
7
+
8
+ - Fix default value for ` --spec-version `
9
+ ([ ` 2f2982b ` ] ( https://github.com/CycloneDX/cyclonedx-python/commit/2f2982b35c5d4a520b75fe51b85796b8163335e0 ) )
10
+
11
+ Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com >
12
+
13
+ ### Features
14
+
15
+ - Rootless docker container ([ #893 ] ( https://github.com/CycloneDX/cyclonedx-python/pull/893 ) ,
16
+ [ ` a0cd44b ` ] ( https://github.com/CycloneDX/cyclonedx-python/commit/a0cd44ba2e9c49f621e10b70f5efde306c9906ac ) )
17
+
18
+ As per [ OWASP's Docker Security Cheat
19
+ Sheet] ( https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html ) , it is
20
+ recommended to set a user instead of running the container as root.
21
+
22
+ ``` bash virgo@lenovo:~$ docker ps -a CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
23
+ ee568549229f cyclonedx-py:latest " /bin/bash" About a minute ago Up About a minute nifty_swirles
24
+ virgo@lenovo:~ $ docker exec -it ee568549229f sh -c " id" uid=1000(cyclonedx) gid=1000(cyclonedx)
25
+ groups=1000(cyclonedx) ` ` `
26
+
27
+ :arrow_up: Now the container is running as a standard user.
28
+
29
+ Signed-off-by: virgo-o < virgoj@protonmail.com>
30
+
31
+
4
32
# # v6.0.0 (2025-04-24)
5
33
6
34
# ## Features
Original file line number Diff line number Diff line change 17
17
18
18
# !! version is managed by `semantic_release`
19
19
# do not use typing here, or else `semantic_release` might have issues finding the variable
20
- __version__ = "6.0 .0" # noqa:Q000
20
+ __version__ = "6.1 .0" # noqa:Q000
21
21
22
22
# There is no stable/public API.
23
23
# However, you might call the stable CLI instead, like so:
Original file line number Diff line number Diff line change 24
24
25
25
# The full version, including alpha/beta/rc tags
26
26
# !! version is managed by semantic_release
27
- release = "6.0 .0"
27
+ release = "6.1 .0"
28
28
29
29
# -- General configuration ---------------------------------------------------
30
30
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ build-backend = "poetry.core.masonry.api"
6
6
7
7
[tool .poetry ]
8
8
name = " cyclonedx-bom"
9
- version = " 6.0 .0"
9
+ version = " 6.1 .0"
10
10
description = " CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments"
11
11
authors = [
12
12
" Jan Kowalleck <jan.kowalleck@gmail.com>" ,
You can’t perform that action at this time.
0 commit comments