From ce20087370f9d11a31a70e0f538003bd6f9aeafb Mon Sep 17 00:00:00 2001 From: admin-raintree <277948009+admin-raintree@users.noreply.github.com> Date: Wed, 22 Jul 2026 17:55:40 -0700 Subject: [PATCH] Release PolicyStrata npm packages --- CHANGELOG.md | 3 +++ docs/gateway-deployment-examples.md | 2 +- docs/js-distribution-decision.md | 4 ++-- packages/gateway/package.json | 4 ++-- packages/gateway/src/index.ts | 2 +- packages/node/package.json | 2 +- packages/node/src/node.ts | 2 +- 7 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 31bc786..7a4e11b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## [Unreleased] +- Publish the reviewed Node runtime changes as `policystrata@0.1.4` and the + Agent Trust Gateway changes as `@policystrata/agent-trust-gateway@0.1.2`. + ## [1.1.1] - 2026-07-22 - Publish the review-response hardening work from the immutable `v1.1.0` diff --git a/docs/gateway-deployment-examples.md b/docs/gateway-deployment-examples.md index e5d0dc3..0047a78 100644 --- a/docs/gateway-deployment-examples.md +++ b/docs/gateway-deployment-examples.md @@ -10,7 +10,7 @@ Clearance auth, private networking, or a specific cloud account. FROM node:24-bookworm-slim WORKDIR /app -RUN npm install -g @policystrata/agent-trust-gateway@0.1.1 +RUN npm install -g @policystrata/agent-trust-gateway@0.1.2 COPY runtime-manifest.json /app/runtime-manifest.json diff --git a/docs/js-distribution-decision.md b/docs/js-distribution-decision.md index e53bfd2..63c39a2 100644 --- a/docs/js-distribution-decision.md +++ b/docs/js-distribution-decision.md @@ -103,8 +103,8 @@ ecosystems. If they are released together from one tag, the release notes should versions explicitly, for example: - PyPI: `policystrata==1.0.5` -- npm runtime: `policystrata@0.1.3` -- npm gateway: `@policystrata/agent-trust-gateway@0.1.1` +- npm runtime: `policystrata@0.1.4` +- npm gateway: `@policystrata/agent-trust-gateway@0.1.2` If the Node runtime becomes a committed stable SDK at the same maturity level as the scanner, revisit whether the npm version should align with the Python package version. diff --git a/packages/gateway/package.json b/packages/gateway/package.json index f813ee5..6b25d11 100644 --- a/packages/gateway/package.json +++ b/packages/gateway/package.json @@ -1,6 +1,6 @@ { "name": "@policystrata/agent-trust-gateway", - "version": "0.1.1", + "version": "0.1.2", "description": "Customer-hosted runtime gateway for PolicyStrata governed-data agents", "type": "module", "main": "./dist/src/index.js", @@ -46,7 +46,7 @@ "node": "24.x" }, "dependencies": { - "policystrata": "^0.1.3" + "policystrata": "^0.1.4" }, "devDependencies": { "@types/node": "^22.0.0", diff --git a/packages/gateway/src/index.ts b/packages/gateway/src/index.ts index 1342b53..fc4686b 100644 --- a/packages/gateway/src/index.ts +++ b/packages/gateway/src/index.ts @@ -11,7 +11,7 @@ import { type PolicyStrataRuntimeManifest, } from "policystrata/runtime"; -export const POLICYSTRATA_GATEWAY_VERSION = "0.1.1"; +export const POLICYSTRATA_GATEWAY_VERSION = "0.1.2"; export type AgentTrustGatewayMode = "shadow" | "enforce"; diff --git a/packages/node/package.json b/packages/node/package.json index 40a8c30..6364a8e 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -1,6 +1,6 @@ { "name": "policystrata", - "version": "0.1.3", + "version": "0.1.4", "description": "TypeScript/Node trace recorder and runtime authorizer for PolicyStrata", "type": "module", "main": "./dist/src/index.js", diff --git a/packages/node/src/node.ts b/packages/node/src/node.ts index 3a0f608..8fb9435 100644 --- a/packages/node/src/node.ts +++ b/packages/node/src/node.ts @@ -4,7 +4,7 @@ import { appendFileSync, mkdirSync } from "node:fs"; import { dirname } from "node:path"; export type PolicyStrataToolKind = "read" | "write" | "memory" | "external"; -export const POLICYSTRATA_NODE_SDK_VERSION = "0.1.3"; +export const POLICYSTRATA_NODE_SDK_VERSION = "0.1.4"; export interface PolicyStrataRedactionConfig { hashIds?: boolean;