Skip to content

Commit 6ea7f51

Browse files
author
semantic-release
committed
chore(release): 6.1.0-alpha.1
Automatically generated by python-semantic-release Signed-off-by: semantic-release <[email protected]>
1 parent 6a0a9ab commit 6ea7f51

File tree

4 files changed

+31
-3
lines changed

4 files changed

+31
-3
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,34 @@
11
# CHANGELOG
22

33

4+
## v6.1.0-alpha.1 (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 <[email protected]>
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 <[email protected]>
30+
31+
432
## v6.0.0 (2025-04-24)
533
634
### Features

cyclonedx_py/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
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-alpha.1" # noqa:Q000
2121

2222
# There is no stable/public API.
2323
# However, you might call the stable CLI instead, like so:

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
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-alpha.1"
2828

2929
# -- General configuration ---------------------------------------------------
3030

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "poetry.core.masonry.api"
66

77
[tool.poetry]
88
name = "cyclonedx-bom"
9-
version = "6.0.0"
9+
version = "6.1.0-alpha.1"
1010
description = "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments"
1111
authors = [
1212
"Jan Kowalleck <[email protected]>",

0 commit comments

Comments
 (0)