File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# CHANGELOG
22
33
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+
432# # v6.0.0 (2025-04-24)
533
634# ## Features
Original file line number Diff line number Diff line change 1717
1818# !! version is managed by `semantic_release`
1919# 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
2121
2222# There is no stable/public API.
2323# However, you might call the stable CLI instead, like so:
Original file line number Diff line number Diff line change 2424
2525# The full version, including alpha/beta/rc tags
2626# !! version is managed by semantic_release
27- release = "6.0 .0"
27+ release = "6.1 .0"
2828
2929# -- General configuration ---------------------------------------------------
3030
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ build-backend = "poetry.core.masonry.api"
66
77[tool .poetry ]
88name = " cyclonedx-bom"
9- version = " 6.0 .0"
9+ version = " 6.1 .0"
1010description = " CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments"
1111authors = [
1212 " Jan Kowalleck <jan.kowalleck@gmail.com>" ,
You can’t perform that action at this time.
0 commit comments