umans-gate 0.1.6 → 0.1.7-pr.31.d3a2acf

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 +23 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -7,6 +7,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ### Added
11
+
12
+ - **PR canary npm publish workflow**: pull requests to `master` now automatically
13
+ publish a canary npm package tagged `canary` (not `latest`) with version
14
+ `{base}-pr.{number}.{short_sha}`. The published package matches the release
15
+ structure: a main shim with optional platform-specific binary packages so it
16
+ runs without Bun. A PR comment with the install command is posted and
17
+ auto-updated on each push. Fork PRs are skipped for security.
18
+
19
+ ## [0.1.7] - 2026-07-15
20
+
21
+ ### Fixed
22
+
23
+ - **Vision reservation forced to 0 when `vision_strategy="never"`**: when vision
24
+ interception is disabled, `concurrency_vision_reservation` is now normalized
25
+ to 0 in both `validateConfig()` and `loadConfig()` so no concurrency slots are
26
+ wasted on an unused intention. The field validation rule allows 0 in this case
27
+ and the dashboard field description and minimum value are updated accordingly.
28
+ - **Always send `anthropic-beta` + `anthropic-version` headers on `/v1/messages`**:
29
+ these headers are now sent on every `/v1/messages` request regardless of the
30
+ `stampClaudeCode` setting. The `?beta=true` URL parameter remains gated by
31
+ `stampClaudeCode`.
32
+
10
33
  ## [0.1.6] - 2026-07-14
11
34
 
12
35
  ### 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-pr.31.d3a2acf",
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-pr.31.d3a2acf",
15
+ "@codegiveness/umans-gate-darwin-x64": "0.1.7-pr.31.d3a2acf",
16
+ "@codegiveness/umans-gate-linux-x64": "0.1.7-pr.31.d3a2acf",
17
+ "@codegiveness/umans-gate-linux-arm64": "0.1.7-pr.31.d3a2acf",
18
+ "@codegiveness/umans-gate-win32-x64": "0.1.7-pr.31.d3a2acf",
19
+ "@codegiveness/umans-gate-win32-arm64": "0.1.7-pr.31.d3a2acf"
20
20
  }
21
21
  }