Skip to content

Commit 4740992

Browse files
committed
chore: release v1.33.0
Added: - --max-proxy-buffer-bytes / --max-proxy-buffer-frames flags to cap proxy buffering (#275) Fixed: - proxy path no longer leaks memory on long-lived upstream streams (#275) - oversized proxied responses no longer crash with Invalid string length (#275) - sanitize X-AIMock-Context to prevent fixture path traversal (#272) - scope one-shot error injection, recorder fixture fidelity, matchesPattern lastIndex (#272)
1 parent a92e4dd commit 4740992

7 files changed

Lines changed: 19 additions & 6 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"source": {
1010
"source": "npm",
1111
"package": "@copilotkit/aimock",
12-
"version": "^1.32.0"
12+
"version": "^1.33.0"
1313
},
1414
"description": "Fixture authoring skill for @copilotkit/aimock — LLM, multimedia (image/TTS/transcription/video), MCP, A2A, AG-UI, vector, embeddings, structured output, sequential responses, streaming physics, record/replay, agent loop patterns, and debugging"
1515
}

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aimock",
3-
"version": "1.32.0",
3+
"version": "1.33.0",
44
"description": "Fixture authoring guidance for @copilotkit/aimock — LLM, multimedia, MCP, A2A, AG-UI, vector, and service mocking",
55
"author": {
66
"name": "CopilotKit"

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
## [Unreleased]
44

5+
## [1.33.0] - 2026-06-23
6+
7+
### Added
8+
9+
- `--max-proxy-buffer-bytes` / `--max-proxy-buffer-frames` flags to cap proxy buffering (#275)
10+
11+
### Fixed
12+
13+
- Proxy path no longer leaks memory on long-lived upstream streams (#275)
14+
- Oversized proxied responses no longer crash with `Invalid string length` (#275)
15+
- Sanitize `X-AIMock-Context` to prevent fixture path traversal (#272)
16+
- Scope one-shot error injection, improve recorder fixture fidelity, fix `matchesPattern` lastIndex (#272)
17+
518
## [1.32.0] - 2026-06-22
619

720
### Added

charts/aimock/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ name: aimock
33
description: Mock infrastructure for AI application testing (OpenAI, Anthropic, Gemini, MCP, A2A, vector)
44
type: application
55
version: 0.1.0
6-
appVersion: "1.32.0"
6+
appVersion: "1.33.0"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@copilotkit/aimock",
3-
"version": "1.32.0",
3+
"version": "1.33.0",
44
"description": "Mock infrastructure for AI application testing — LLM APIs, image generation, image editing, text-to-speech, transcription, audio translation, audio generation, video generation, embeddings, MCP tools, A2A agents, AG-UI event streams, vector databases, search, rerank, and moderation. One package, one port, zero dependencies.",
55
"license": "MIT",
66
"keywords": [

packages/aimock-pytest/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ aimock.reset() # alias for reset_fixtures()
7373

7474
```
7575
--aimock-node PATH Path to node binary
76-
--aimock-version VER aimock npm version (default: 1.32.0)
76+
--aimock-version VER aimock npm version (default: 1.33.0)
7777
```
7878

7979
## Environment Variables

packages/aimock-pytest/src/aimock_pytest/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
control routes ship in the next release). Keep it tracking npm releases.
99
"""
1010

11-
AIMOCK_VERSION = "1.32.0"
11+
AIMOCK_VERSION = "1.33.0"

0 commit comments

Comments
 (0)