umans-gate 0.1.6 → 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.7] - 2026-07-15
11
+
12
+ ### Fixed
13
+
14
+ - **Vision reservation forced to 0 when `vision_strategy="never"`**: when vision
15
+ interception is disabled, `concurrency_vision_reservation` is now normalized
16
+ to 0 in both `validateConfig()` and `loadConfig()` so no concurrency slots are
17
+ wasted on an unused intention. The field validation rule allows 0 in this case
18
+ and the dashboard field description and minimum value are updated accordingly.
19
+ - **Always send `anthropic-beta` + `anthropic-version` headers on `/v1/messages`**:
20
+ these headers are now sent on every `/v1/messages` request regardless of the
21
+ `stampClaudeCode` setting. The `?beta=true` URL parameter remains gated by
22
+ `stampClaudeCode`.
23
+
10
24
  ## [0.1.6] - 2026-07-14
11
25
 
12
26
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "umans-gate",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "LLM capture proxy with Anthropic cache_control TTL stamping, vision handoff, concurrency gating, rate limiting, and a live inspection dashboard",
5
5
  "repository": { "type": "git", "url": "git+https://github.com/codegiveness/umans-gate.git" },
6
6
  "homepage": "https://github.com/codegiveness/umans-gate#readme",
@@ -11,11 +11,11 @@
11
11
  "engines": { "node": ">=18.0.0" },
12
12
  "keywords": ["llm", "proxy", "capture", "anthropic", "openai", "cache-control", "ttl", "inspector", "debugger", "websocket", "claude", "prompt-engineering", "observability", "sqlite", "bun", "developer-tools", "api-proxy", "prompt-caching"],
13
13
  "optionalDependencies": {
14
- "@codegiveness/umans-gate-darwin-arm64": "0.1.6",
15
- "@codegiveness/umans-gate-darwin-x64": "0.1.6",
16
- "@codegiveness/umans-gate-linux-x64": "0.1.6",
17
- "@codegiveness/umans-gate-linux-arm64": "0.1.6",
18
- "@codegiveness/umans-gate-win32-x64": "0.1.6",
19
- "@codegiveness/umans-gate-win32-arm64": "0.1.6"
14
+ "@codegiveness/umans-gate-darwin-arm64": "0.1.7",
15
+ "@codegiveness/umans-gate-darwin-x64": "0.1.7",
16
+ "@codegiveness/umans-gate-linux-x64": "0.1.7",
17
+ "@codegiveness/umans-gate-linux-arm64": "0.1.7",
18
+ "@codegiveness/umans-gate-win32-x64": "0.1.7",
19
+ "@codegiveness/umans-gate-win32-arm64": "0.1.7"
20
20
  }
21
21
  }