Skip to content

Commit be4a7f8

Browse files
Prepare v0.2.4: changelog, update version refs (#115)
1 parent 63ecfa7 commit be4a7f8

6 files changed

Lines changed: 25 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.4] - 2026-02-19
11+
1012
### Added
11-
- MCP Streamable HTTP transport: `pipelock mcp proxy --upstream <url>` bridges stdio clients to remote MCP servers over HTTP
12-
- SSE reader for parsing Server-Sent Events responses from HTTP MCP servers
13-
- GET SSE stream support for server-initiated messages (notifications, requests)
14-
- Session lifecycle management (Mcp-Session-Id tracking, DELETE on exit)
15-
- Full bidirectional scanning on HTTP transport (response injection, input DLP, tool poisoning, tool call policy)
13+
- MCP Streamable HTTP transport: `pipelock mcp proxy --upstream <url>` bridges stdio clients to remote MCP servers over HTTP with SSE stream support and session lifecycle management (PR #112)
14+
- Pre-execution tool call policy: configurable `mcp_tool_policy` blocks dangerous commands (rm -rf, curl to external, chmod 777) before MCP tools execute, with pairwise token matching and whitespace normalization (PR #107)
15+
- Known secret scanning: `dlp.secrets_file` config loads explicit secrets from file, scans URLs and MCP tool arguments for raw + base64/hex/base32 encoded variants including unpadded forms (PR #111)
16+
- `pipelock test` CLI command: validates scanner coverage against loaded config with structured pass/fail output per scanner layer (PR #109)
17+
- Framework integration guides: OpenAI Agents SDK, Google ADK, AutoGen (PR #110)
18+
- GOVERNANCE.md, ROADMAP.md, and security assurance documentation for OpenSSF Silver (PR #108)
19+
- OpenSSF Best Practices Silver badge (PR #114)
20+
21+
### Fixed
22+
- Unicode bypass in injection and DLP scanning: full homoglyph normalization (Cyrillic, Greek, Armenian, Cherokee), combining mark stripping, leetspeak normalization, 6 new injection patterns (PR #105)
23+
- govulncheck CI flake: pinned Go version to 1.24.13 to prevent runner cache inconsistency (PR #113)
24+
- Codecov targets raised to 95% project / 90% patch (PR #113)
25+
26+
### Changed
27+
- README Quick Start reordered: `pipelock check` before `pipelock run` since check doesn't need a running proxy (PR #113)
28+
- CONTRIBUTING.md updated with complete CLI command list and project structure (PR #113)
29+
- Demo script uses `DEMO_TMPDIR` instead of `TMPDIR` to avoid shadowing POSIX env var (PR #113)
30+
- CI matrix tests Go 1.24 + 1.25 (PR #113)
1631

1732
## [0.2.3] - 2026-02-16
1833

docs/compliance/eu-ai-act-mapping.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ How Pipelock's runtime security controls map to the [EU AI Act (Regulation 2024/
66

77
**Disclaimer:** This document maps Pipelock's security features to EU AI Act requirements for informational purposes. It does not constitute legal advice or guarantee regulatory compliance. Organizations should consult qualified legal counsel for compliance obligations specific to their AI systems.
88

9-
**Last updated:** v0.2.3 (February 2026)
9+
**Last updated:** v0.2.4 (February 2026)
1010

1111
---
1212

docs/guides/autogen.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ networks:
251251

252252
services:
253253
pipelock:
254-
# Pin to a specific version for production (e.g., ghcr.io/luckypipewrench/pipelock:v0.2.3)
254+
# Pin to a specific version for production (e.g., ghcr.io/luckypipewrench/pipelock:v0.2.4)
255255
image: ghcr.io/luckypipewrench/pipelock:latest
256256
networks:
257257
- pipelock-internal

docs/guides/google-adk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ networks:
272272

273273
services:
274274
pipelock:
275-
# Pin to a specific version for production (e.g., ghcr.io/luckypipewrench/pipelock:v0.2.3)
275+
# Pin to a specific version for production (e.g., ghcr.io/luckypipewrench/pipelock:v0.2.4)
276276
image: ghcr.io/luckypipewrench/pipelock:latest
277277
networks:
278278
- pipelock-internal

docs/guides/langgraph.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ Use `dockerfile_lines` in `langgraph.json` to install Pipelock into the image:
197197
"env": ".env",
198198
"dockerfile_lines": [
199199
"RUN apt-get update && apt-get install -y curl",
200-
"RUN PIPELOCK_VERSION=0.2.3 && curl -fsSL https://github.com/luckyPipewrench/pipelock/releases/download/v${PIPELOCK_VERSION}/pipelock_${PIPELOCK_VERSION}_linux_amd64.tar.gz | tar xz -C /usr/local/bin/",
200+
"RUN PIPELOCK_VERSION=0.2.4 && curl -fsSL https://github.com/luckyPipewrench/pipelock/releases/download/v${PIPELOCK_VERSION}/pipelock_${PIPELOCK_VERSION}_linux_amd64.tar.gz | tar xz -C /usr/local/bin/",
201201
"COPY pipelock-config.yaml /etc/pipelock/config.yaml"
202202
]
203203
}

docs/guides/openai-agents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ networks:
257257

258258
services:
259259
pipelock:
260-
# Pin to a specific version for production (e.g., ghcr.io/luckypipewrench/pipelock:v0.2.3)
260+
# Pin to a specific version for production (e.g., ghcr.io/luckypipewrench/pipelock:v0.2.4)
261261
image: ghcr.io/luckypipewrench/pipelock:latest
262262
networks:
263263
- pipelock-internal

0 commit comments

Comments
 (0)