Skip to content

Commit 93998dd

Browse files
authored
chore: release 0.75.10 (#1115)
## Summary - bump version to 0.75.10 across managed release surfaces - refresh uv.lock for the new package version - carry the aligned README/docs/demo/OpenClaw/GitHub Action surfaces into the release cut ## Validation - python scripts/check_release_consistency.py - python scripts/bump-version.py 0.75.10 --check - uv lock --check - uv run pytest -q tests/test_local_vuln_db.py tests/test_local_db_scan.py tests/test_cli_scan.py::test_demo_scan_hides_synthetic_project_temp_path tests/test_async_stdin.py tests/test_cli_integrations_post.py tests/test_proxy.py tests/test_proxy_cov.py tests/test_runtime_server_cov.py tests/test_watch.py tests/test_integrations.py tests/test_self_scan.py tests/test_verify.py tests/test_resolver_cov.py - python -m build --sdist --wheel --no-isolation - uv run --with twine python -m twine check dist/*
1 parent d63ff9a commit 93998dd

File tree

37 files changed

+55
-55
lines changed

37 files changed

+55
-55
lines changed

.github/workflows/cve-freshness.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: |
2727
uv run agent-bom sbom tests/fixtures/test-sbom.cdx.json -f sarif -o results.sarif || true
2828
if [ ! -f results.sarif ]; then
29-
echo '{"version":"0.75.9","$schema":"https://raw.githubusercontent.com/oasis-tcs/sarif-spec/master/Schemata/sarif-schema-2.1.0.json","runs":[{"tool":{"driver":{"name":"agent-bom","version":"0.75.9"}},"results":[]}]}' > results.sarif
29+
echo '{"version":"0.75.10","$schema":"https://raw.githubusercontent.com/oasis-tcs/sarif-spec/master/Schemata/sarif-schema-2.1.0.json","runs":[{"tool":{"driver":{"name":"agent-bom","version":"0.75.10"}},"results":[]}]}' > results.sarif
3030
fi
3131
# CVE freshness results are logged in workflow output.
3232
# We skip upload-sarif because this workflow only runs on schedule (not PRs),

.github/workflows/mcp-change-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
python-version: '3.11'
3131

3232
- name: Install agent-bom
33-
run: uv tool install agent-bom==0.75.9 # pinned — bump on each release
33+
run: uv tool install agent-bom==0.75.10 # pinned — bump on each release
3434

3535
- name: Scan changed MCP configs
3636
id: scan

DOCKER_HUB_README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ agent-bom answers:
8888
| Tag | Description |
8989
|-----|-------------|
9090
| `latest` | Most recent stable release |
91-
| `v0.75.9` | Current stable version (pinned) |
91+
| `v0.75.10` | Current stable version (pinned) |
9292

9393
## Links
9494

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RUN pip install --no-cache-dir --prefix=/install ".[api]"
1414
## ── Runtime stage ────────────────────────────────────────────────────────────
1515
FROM python:3.14.3-alpine3.23@sha256:faee120f7885a06fcc9677922331391fa690d911c020abb9e8025ff3d908e510
1616

17-
ARG VERSION=0.75.9
17+
ARG VERSION=0.75.10
1818

1919
LABEL maintainer="W S <34316639+msaad00@users.noreply.github.com>"
2020
LABEL description="Security scanner for AI infrastructure — CVEs, blast radius, credential exposure, runtime enforcement"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ docker run --rm agentbom/agent-bom agents # Docker (linux/amd64 + arm64)
299299
| Mode | Command | Best for |
300300
|------|---------|----------|
301301
| CLI | `agent-bom agents` | Local audit |
302-
| GitHub Action | `uses: msaad00/agent-bom@v0.75.9` | CI/CD + SARIF |
302+
| GitHub Action | `uses: msaad00/agent-bom@v0.75.10` | CI/CD + SARIF |
303303
| Docker | `docker run agentbom/agent-bom agents` | Isolated scans |
304304
| MCP Server | `agent-bom mcp server` | Inside any AI assistant |
305305
| Runtime proxy | `agent-bom proxy` | MCP traffic enforcement |
@@ -310,7 +310,7 @@ docker run --rm agentbom/agent-bom agents # Docker (linux/amd64 + arm64)
310310
<summary><b>GitHub Action</b></summary>
311311

312312
```yaml
313-
- uses: msaad00/agent-bom@v0.75.9
313+
- uses: msaad00/agent-bom@v0.75.10
314314
with:
315315
scan-type: scan
316316
severity-threshold: high

deploy/docker/Dockerfile.mcp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN pip install --no-cache-dir --prefix=/install ".[mcp-server]"
1111
## ── Runtime stage ────────────────────────────────────────────────────────────
1212
FROM python:3.12.13-slim@sha256:7026274c107626d7e940e0e5d6730481a4600ae95d5ca7eb532dd4180313fea9
1313

14-
ARG VERSION=0.75.9
14+
ARG VERSION=0.75.10
1515

1616
LABEL maintainer="W S <34316639+msaad00@users.noreply.github.com>"
1717
LABEL description="Security scanner for AI infrastructure — MCP server mode"

deploy/docker/Dockerfile.runtime

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ FROM python:3.12.13-slim@sha256:7026274c107626d7e940e0e5d6730481a4600ae95d5ca7eb
1616
WORKDIR /app
1717
COPY LICENSE ./
1818

19-
ARG VERSION=0.75.9
19+
ARG VERSION=0.75.10
2020

2121
RUN pip install --no-cache-dir --prefix=/install agent-bom==${VERSION}
2222

2323
## ── Runtime stage ────────────────────────────────────────────────────────────
2424
FROM python:3.12.13-slim@sha256:7026274c107626d7e940e0e5d6730481a4600ae95d5ca7eb532dd4180313fea9
2525

26-
ARG VERSION=0.75.9
26+
ARG VERSION=0.75.10
2727

2828
LABEL org.opencontainers.image.title="agent-bom runtime proxy"
2929
LABEL org.opencontainers.image.description="MCP runtime security proxy — intercepts JSON-RPC for audit logging and policy enforcement"

deploy/docker/Dockerfile.snowpark

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN pip install --no-cache-dir --prefix=/install ".[api,snowflake]"
1111
## ── Runtime stage ────────────────────────────────────────────────────────────
1212
FROM python:3.11.12-slim@sha256:dbf1de478a55d6763afaa39c2f3d7b54b25230614980276de5cacdde79529d0c
1313

14-
ARG VERSION=0.75.9
14+
ARG VERSION=0.75.10
1515

1616
LABEL maintainer="W S <34316639+msaad00@users.noreply.github.com>"
1717
LABEL description="agent-bom API for Snowpark Container Services"

deploy/docker/Dockerfile.sse

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ RUN pip install --no-cache-dir --prefix=/install ".[mcp-server]"
2424
## ── Runtime stage ────────────────────────────────────────────────────────────
2525
FROM python:3.12.13-slim@sha256:7026274c107626d7e940e0e5d6730481a4600ae95d5ca7eb532dd4180313fea9
2626

27-
ARG VERSION=0.75.9
27+
ARG VERSION=0.75.10
2828

2929
LABEL org.opencontainers.image.title="agent-bom MCP Server"
3030
LABEL org.opencontainers.image.description="Security scanner for AI infrastructure — MCP server with streamable HTTP transport"

deploy/helm/agent-bom/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: agent-bom
33
description: Open security platform for agentic infrastructure — broad scanning plus MCP, blast radius, runtime, and trust
44
version: 0.1.0
5-
appVersion: "0.75.9"
5+
appVersion: "0.75.10"
66
type: application
77
keywords:
88
- security

0 commit comments

Comments
 (0)