Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.0.1] - 2026-03-14

### Fixed

- SBOM attestation in release workflow: use platform-specific SBOM path (`index .SBOM "linux/amd64"`) instead of `.SBOM.SPDX` which returns `null` for multi-platform images.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "initium"
version = "2.0.0"
version = "2.0.1"
authors = ["Kitstream <opensource@kitstream.io>"]
categories = ["command-line-utilities", "development-tools"]
documentation = "https://docs.rs/initium"
Expand Down
14 changes: 7 additions & 7 deletions docs/security.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@ Release images are signed with [cosign](https://github.com/sigstore/cosign) usin
# Verify signature (requires cosign)
cosign verify \
--certificate-oidc-issuer https://token.actions.githubusercontent.com \
--certificate-identity 'https://github.com/KitStream/initium/.github/workflows/release.yml@refs/tags/v2.0.0' \
ghcr.io/kitstream/initium:2.0.0
--certificate-identity 'https://github.com/KitStream/initium/.github/workflows/release.yml@refs/tags/v2.0.1' \
ghcr.io/kitstream/initium:2.0.1

# Or use the Makefile target (also supports IMAGE=ghcr.io/kitstream/initium-jyq)
make verify-image VERSION=2.0.0
make verify-image VERSION=2.0.1
```

### Verify SBOM attestation
Expand All @@ -99,8 +99,8 @@ make verify-image VERSION=2.0.0
cosign verify-attestation \
--type spdx \
--certificate-oidc-issuer https://token.actions.githubusercontent.com \
--certificate-identity 'https://github.com/KitStream/initium/.github/workflows/release.yml@refs/tags/v2.0.0' \
ghcr.io/kitstream/initium:2.0.0
--certificate-identity 'https://github.com/KitStream/initium/.github/workflows/release.yml@refs/tags/v2.0.1' \
ghcr.io/kitstream/initium:2.0.1
```

### View provenance and SBOM
Expand All @@ -109,8 +109,8 @@ Provenance and SBOM attestations are generated by Docker BuildKit during the ima

```bash
# View provenance
docker buildx imagetools inspect ghcr.io/kitstream/initium:2.0.0 --format '{{json .Provenance}}'
docker buildx imagetools inspect ghcr.io/kitstream/initium:2.0.1 --format '{{json .Provenance}}'

# View SBOM
docker buildx imagetools inspect ghcr.io/kitstream/initium:2.0.0 --format '{{json .SBOM}}'
docker buildx imagetools inspect ghcr.io/kitstream/initium:2.0.1 --format '{{json .SBOM}}'
```
Loading