Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion docs/gateway-deployment-examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions docs/js-distribution-decision.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions packages/gateway/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -46,7 +46,7 @@
"node": "24.x"
},
"dependencies": {
"policystrata": "^0.1.3"
"policystrata": "^0.1.4"
},
"devDependencies": {
"@types/node": "^22.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/gateway/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down
2 changes: 1 addition & 1 deletion packages/node/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/node/src/node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Loading