diff --git a/CHANGELOG.md b/CHANGELOG.md index 8df13b7..1b0a108 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 0.4.26 + +Publishes `ff7ac72` (#78), the project-context compatibility bridge. + +It accepts external v1 bundles only when their schema and supplied hash are +valid, normalizes accepted legacy bundles to the canonical hash, fails closed +on malformed managed END markers unless forced, preserves adjacent same-line +user bytes, and creates a restorable before-image snapshot for target +mutations. + ## 0.4.25 Publishes the two commits currently on `main` after the 0.4.24 npm gitHead: diff --git a/package.json b/package.json index 73703e3..00f0d2a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@hasna/instructions", - "version": "0.4.25", + "version": "0.4.26", "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 bfa590d..ec7ec94 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.25 +// Source: Instructions V1 API 0.4.26 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 }