diff --git a/CHANGELOG.md b/CHANGELOG.md index e76a54e..8df13b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.4.25 + +Publishes the two commits currently on `main` after the 0.4.24 npm gitHead: +`9fe30cc` (#74) and `f3784d3` (#76). + +`f3784d3` bounds managed source admission before render planning reads a source +or lets a caller-constructed source list enter `session plan` / `session apply`. +That keeps the managed-input capacity guard on the real source list rather than +only on later rendered outputs. + +`9fe30cc` updates the seeded Conversations send workflow contract so the +workflow record matches the current Conversations CLI surface. + ## 0.4.24 Publishes `0fcb0542` (#72): the renderer now REFUSES to write a managed output diff --git a/package.json b/package.json index d867d0b..73703e3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@hasna/instructions", - "version": "0.4.24", + "version": "0.4.25", "description": "AI coding agent instruction & configuration manager \u2014 store, version, apply, and share all your AI coding configs. CLI + MCP + HTTP API (instructions-serve) + generated SDK + Dashboard.", "type": "module", "main": "dist/index.js", diff --git a/sdk/src/v1.generated.ts b/sdk/src/v1.generated.ts index 923e73c..bfa590d 100644 --- a/sdk/src/v1.generated.ts +++ b/sdk/src/v1.generated.ts @@ -2,7 +2,7 @@ // Regenerate: bun run scripts/generate-sdk.ts // @generated from OpenAPI by @hasna/contracts SDK generator — DO NOT EDIT. -// Source: Instructions V1 API 0.4.19 +// Source: Instructions V1 API 0.4.25 export interface Config { "id"?: string; "name"?: string; "slug"?: string; "kind"?: string; "category"?: string; "agent"?: string; "target_path"?: string | null; "outputs"?: Array>; "format"?: string; "content"?: string; "description"?: string | null; "tags"?: Array; "is_template"?: boolean; "version"?: number; "created_at"?: string; "updated_at"?: string; "synced_at"?: string | null }