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: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/action-broke.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ failure is usually obvious if you expand all groups. -->

## Environment

- **bomdrift version pin**: `@v1` / `@v0.6.0` / `@<sha>`
- **bomdrift version pin**: `@v1` / `@v0.6.1` / `@<sha>`
- **Runner**: <ubuntu-latest / self-hosted / etc.>
- **Trigger event**: <pull_request / push / workflow_dispatch / etc.>
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.6.1] - 2026-04-29

### Fixed

- **First PR after `bomdrift init` no longer fails when no baseline
Expand Down Expand Up @@ -621,7 +623,8 @@ changed dependency in a format ready to drop into a PR comment.
- Linux aarch64 binary.
- PyPI / Cargo / Maven typosquat reference lists (only npm in v0.1.0).

[Unreleased]: https://github.com/Metbcy/bomdrift/compare/v0.6.0...HEAD
[Unreleased]: https://github.com/Metbcy/bomdrift/compare/v0.6.1...HEAD
[0.6.1]: https://github.com/Metbcy/bomdrift/compare/v0.6.0...v0.6.1
[0.6.0]: https://github.com/Metbcy/bomdrift/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/Metbcy/bomdrift/compare/v0.4.4...v0.5.0
[0.4.4]: https://github.com/Metbcy/bomdrift/releases/tag/v0.4.4
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 = "bomdrift"
version = "0.6.0"
version = "0.6.1"
edition = "2024"
rust-version = "1.85"
description = "SBOM diff with supply-chain risk signals (CVEs, typosquats, maintainer-age)."
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
# verify-signatures: true (set false on trusted mirrors)
```

Pin to `@v1` for the latest v0.x; pin to `@v0.6.0` for reproducible builds. Run `bomdrift init` if you want a checked-in `.bomdrift.toml` policy and both workflows scaffolded locally. See the [Action reference](https://metbcy.github.io/bomdrift/github-action.html) for every input.
Pin to `@v1` for the latest v0.x; pin to `@v0.6.1` for reproducible builds. Run `bomdrift init` if you want a checked-in `.bomdrift.toml` policy and both workflows scaffolded locally. See the [Action reference](https://metbcy.github.io/bomdrift/github-action.html) for every input.

#### Optional: in-comment suppression (v0.5+)

Expand Down Expand Up @@ -112,7 +112,7 @@ Comment `/bomdrift suppress GHSA-xxxx` on any PR; the sub-action appends to `.bo
Pre-built binaries cover Linux x86_64 + aarch64, macOS aarch64, and Windows x86_64. Each archive is cosign-signed via Sigstore + GitHub OIDC.

```bash
VERSION=v0.6.0
VERSION=v0.6.1
TARGET=x86_64-unknown-linux-gnu
curl -sSL -o bomdrift.tar.gz \
"https://github.com/Metbcy/bomdrift/releases/download/${VERSION}/bomdrift-${VERSION}-${TARGET}.tar.gz"
Expand All @@ -128,7 +128,7 @@ Verify the archive's signature before you trust the binary — see [Release sign
### From source

```bash
cargo install --locked --git https://github.com/Metbcy/bomdrift --tag v0.6.0 bomdrift
cargo install --locked --git https://github.com/Metbcy/bomdrift --tag v0.6.1 bomdrift
```

Requires Rust 1.85+ (the project uses edition 2024).
Expand Down Expand Up @@ -230,7 +230,7 @@ Every release archive is signed with cosign keyless via Sigstore (GitHub OIDC).

```bash
# Replace VERSION + TARGET with your downloaded archive's pair
VERSION=v0.6.0
VERSION=v0.6.1
TARGET=x86_64-unknown-linux-gnu
ARCHIVE=bomdrift-${VERSION}-${TARGET}.tar.gz

Expand Down
6 changes: 3 additions & 3 deletions docs/src/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
```

The `@v1` mutable tag tracks the latest v0.x release. Pin to a specific
version (`@v0.6.0`) if you prefer reproducible builds. See
version (`@v0.6.1`) if you prefer reproducible builds. See
[GitHub Action](./github-action.md) for every input.

If you prefer a checked-in policy file, install the binary and run
Expand All @@ -39,7 +39,7 @@ Pre-built binaries cover Linux x86_64 + aarch64, macOS aarch64, and
Windows x86_64. Each archive is cosign-signed via Sigstore + GitHub OIDC.

```bash
VERSION=v0.6.0
VERSION=v0.6.1
TARGET=x86_64-unknown-linux-gnu
curl -sSL -o bomdrift.tar.gz \
"https://github.com/Metbcy/bomdrift/releases/download/${VERSION}/bomdrift-${VERSION}-${TARGET}.tar.gz"
Expand All @@ -56,7 +56,7 @@ To verify the archive's signature before you trust the binary, see
## From source

```bash
cargo install --locked --git https://github.com/Metbcy/bomdrift --tag v0.6.0 bomdrift
cargo install --locked --git https://github.com/Metbcy/bomdrift --tag v0.6.1 bomdrift
```

Requires Rust 1.85+ (the project uses edition 2024).
Expand Down
Loading