From 78f3e5813a31861e4512068fa699f259b423d4a9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 21 Jan 2026 17:13:25 +0000 Subject: [PATCH] chore: version packages --- .changeset/runtime-version.md | 37 -------------------- apps/base/CHANGELOG.md | 15 ++++++++ apps/base/package.json | 2 +- apps/create-expert/CHANGELOG.md | 12 +++++++ apps/create-expert/package.json | 2 +- apps/perstack/CHANGELOG.md | 17 +++++++++ apps/perstack/package.json | 2 +- apps/runtime/CHANGELOG.md | 16 +++++++++ apps/runtime/package.json | 2 +- packages/core/CHANGELOG.md | 12 +++++++ packages/core/package.json | 2 +- packages/mock/CHANGELOG.md | 15 ++++++++ packages/mock/package.json | 2 +- packages/providers/anthropic/CHANGELOG.md | 16 +++++++++ packages/providers/anthropic/package.json | 2 +- packages/providers/azure-openai/CHANGELOG.md | 16 +++++++++ packages/providers/azure-openai/package.json | 2 +- packages/providers/bedrock/CHANGELOG.md | 16 +++++++++ packages/providers/bedrock/package.json | 2 +- packages/providers/core/CHANGELOG.md | 15 ++++++++ packages/providers/core/package.json | 2 +- packages/providers/deepseek/CHANGELOG.md | 16 +++++++++ packages/providers/deepseek/package.json | 2 +- packages/providers/google/CHANGELOG.md | 16 +++++++++ packages/providers/google/package.json | 2 +- packages/providers/ollama/CHANGELOG.md | 16 +++++++++ packages/providers/ollama/package.json | 2 +- packages/providers/openai/CHANGELOG.md | 16 +++++++++ packages/providers/openai/package.json | 2 +- packages/providers/vertex/CHANGELOG.md | 16 +++++++++ packages/providers/vertex/package.json | 2 +- packages/react/CHANGELOG.md | 15 ++++++++ packages/react/package.json | 2 +- packages/runner/CHANGELOG.md | 21 +++++++++++ packages/runner/package.json | 2 +- packages/runtimes/adapter-base/CHANGELOG.md | 15 ++++++++ packages/runtimes/adapter-base/package.json | 2 +- packages/runtimes/claude-code/CHANGELOG.md | 16 +++++++++ packages/runtimes/claude-code/package.json | 2 +- packages/runtimes/cursor/CHANGELOG.md | 16 +++++++++ packages/runtimes/cursor/package.json | 2 +- packages/runtimes/docker/CHANGELOG.md | 16 +++++++++ packages/runtimes/docker/package.json | 2 +- packages/runtimes/gemini/CHANGELOG.md | 16 +++++++++ packages/runtimes/gemini/package.json | 2 +- packages/storages/aws-s3/CHANGELOG.md | 15 ++++++++ packages/storages/aws-s3/package.json | 2 +- packages/storages/cloudflare-r2/CHANGELOG.md | 15 ++++++++ packages/storages/cloudflare-r2/package.json | 2 +- packages/storages/filesystem/CHANGELOG.md | 15 ++++++++ packages/storages/filesystem/package.json | 2 +- packages/storages/s3-compatible/CHANGELOG.md | 15 ++++++++ packages/storages/s3-compatible/package.json | 2 +- packages/tui-components/CHANGELOG.md | 12 +++++++ packages/tui-components/package.json | 2 +- 55 files changed, 444 insertions(+), 64 deletions(-) delete mode 100644 .changeset/runtime-version.md diff --git a/.changeset/runtime-version.md b/.changeset/runtime-version.md deleted file mode 100644 index c1e807a3..00000000 --- a/.changeset/runtime-version.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -"@perstack/core": patch -"@perstack/runtime": patch -"@perstack/base": patch -"@perstack/filesystem-storage": patch -"@perstack/s3-compatible-storage": patch -"@perstack/s3-storage": patch -"@perstack/r2-storage": patch -"@perstack/runner": patch -"@perstack/mock": patch -"@perstack/react": patch -"@perstack/anthropic-provider": patch -"@perstack/azure-openai-provider": patch -"@perstack/bedrock-provider": patch -"@perstack/deepseek-provider": patch -"@perstack/google-provider": patch -"@perstack/ollama-provider": patch -"@perstack/openai-provider": patch -"@perstack/vertex-provider": patch -"@perstack/provider-core": patch -"@perstack/adapter-base": patch -"@perstack/claude-code": patch -"@perstack/cursor": patch -"@perstack/docker": patch -"@perstack/gemini": patch -"@perstack/tui-components": patch -"create-expert": patch -"perstack": patch ---- - -Add runtime version tracking to Job schema and validation - -- Add `runtimeVersion` field to Job schema to track which runtime version executed the job -- Add `minRuntimeVersion` field to Expert schema for compatibility requirements -- Runtime version 0.x.y is treated as v1.0 for compatibility -- Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) -- Recursive delegate resolution ensures all experts in chain are checked diff --git a/apps/base/CHANGELOG.md b/apps/base/CHANGELOG.md index 789055cb..f16d9925 100644 --- a/apps/base/CHANGELOG.md +++ b/apps/base/CHANGELOG.md @@ -1,5 +1,20 @@ # @perstack/base +## 0.0.49 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + +- Updated dependencies [[`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496)]: + - @perstack/core@0.0.40 + ## 0.0.48 ### Patch Changes diff --git a/apps/base/package.json b/apps/base/package.json index 2b68a964..9502659b 100644 --- a/apps/base/package.json +++ b/apps/base/package.json @@ -1,6 +1,6 @@ { "name": "@perstack/base", - "version": "0.0.48", + "version": "0.0.49", "description": "Perstack base skills for agents.", "author": "Wintermute Technologies, Inc.", "license": "Apache-2.0", diff --git a/apps/create-expert/CHANGELOG.md b/apps/create-expert/CHANGELOG.md index 1fbae4d5..dc10e83b 100644 --- a/apps/create-expert/CHANGELOG.md +++ b/apps/create-expert/CHANGELOG.md @@ -1,5 +1,17 @@ # create-expert +## 0.0.11 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + ## 0.0.10 ### Patch Changes diff --git a/apps/create-expert/package.json b/apps/create-expert/package.json index 33f49a87..df06d68e 100644 --- a/apps/create-expert/package.json +++ b/apps/create-expert/package.json @@ -1,6 +1,6 @@ { "name": "create-expert", - "version": "0.0.10", + "version": "0.0.11", "description": "Create Perstack Experts interactively", "author": "Wintermute Technologies, Inc.", "license": "Apache-2.0", diff --git a/apps/perstack/CHANGELOG.md b/apps/perstack/CHANGELOG.md index 7d54b426..ddd3a4c1 100644 --- a/apps/perstack/CHANGELOG.md +++ b/apps/perstack/CHANGELOG.md @@ -1,5 +1,22 @@ # perstack +## 0.0.70 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + +- Updated dependencies [[`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496)]: + - @perstack/core@0.0.40 + - @perstack/runtime@0.0.88 + - @perstack/react@0.0.42 + ## 0.0.69 ### Patch Changes diff --git a/apps/perstack/package.json b/apps/perstack/package.json index d5f3dc8a..ed9c07e1 100644 --- a/apps/perstack/package.json +++ b/apps/perstack/package.json @@ -1,6 +1,6 @@ { "name": "perstack", - "version": "0.0.69", + "version": "0.0.70", "description": "PerStack CLI", "author": "Wintermute Technologies, Inc.", "license": "Apache-2.0", diff --git a/apps/runtime/CHANGELOG.md b/apps/runtime/CHANGELOG.md index 7a9152e7..b13bb481 100644 --- a/apps/runtime/CHANGELOG.md +++ b/apps/runtime/CHANGELOG.md @@ -1,5 +1,21 @@ # @perstack/runtime +## 0.0.88 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + +- Updated dependencies [[`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496)]: + - @perstack/core@0.0.40 + - @perstack/base@0.0.49 + ## 0.0.87 ### Patch Changes diff --git a/apps/runtime/package.json b/apps/runtime/package.json index ca7f9858..86ca683b 100644 --- a/apps/runtime/package.json +++ b/apps/runtime/package.json @@ -1,6 +1,6 @@ { "name": "@perstack/runtime", - "version": "0.0.87", + "version": "0.0.88", "description": "Perstack Runtime", "author": "Wintermute Technologies, Inc.", "license": "Apache-2.0", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index b6f4c690..6111f902 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,17 @@ # @perstack/core +## 0.0.40 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + ## 0.0.39 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index ecbeee46..50615ea4 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@perstack/core", - "version": "0.0.39", + "version": "0.0.40", "description": "Perstack Core", "author": "Wintermute Technologies, Inc.", "license": "Apache-2.0", diff --git a/packages/mock/CHANGELOG.md b/packages/mock/CHANGELOG.md index cb6c53b7..0c767ae3 100644 --- a/packages/mock/CHANGELOG.md +++ b/packages/mock/CHANGELOG.md @@ -1,5 +1,20 @@ # @perstack/mock +## 0.0.9 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + +- Updated dependencies [[`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496)]: + - @perstack/core@0.0.40 + ## 0.0.8 ### Patch Changes diff --git a/packages/mock/package.json b/packages/mock/package.json index 30820ff6..9cc130d5 100644 --- a/packages/mock/package.json +++ b/packages/mock/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "0.0.8", + "version": "0.0.9", "name": "@perstack/mock", "description": "Mock adapter for testing Perstack multi-runtime", "author": "Wintermute Technologies, Inc.", diff --git a/packages/providers/anthropic/CHANGELOG.md b/packages/providers/anthropic/CHANGELOG.md index 756778d0..a1a4675e 100644 --- a/packages/providers/anthropic/CHANGELOG.md +++ b/packages/providers/anthropic/CHANGELOG.md @@ -1,5 +1,21 @@ # @perstack/anthropic-provider +## 0.0.10 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + +- Updated dependencies [[`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496)]: + - @perstack/core@0.0.40 + - @perstack/provider-core@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/packages/providers/anthropic/package.json b/packages/providers/anthropic/package.json index e64fd25b..945ee714 100644 --- a/packages/providers/anthropic/package.json +++ b/packages/providers/anthropic/package.json @@ -1,7 +1,7 @@ { "name": "@perstack/anthropic-provider", "private": true, - "version": "0.0.9", + "version": "0.0.10", "description": "Anthropic provider adapter for Perstack", "author": "Wintermute Technologies, Inc.", "license": "Apache-2.0", diff --git a/packages/providers/azure-openai/CHANGELOG.md b/packages/providers/azure-openai/CHANGELOG.md index 52fff295..5719111f 100644 --- a/packages/providers/azure-openai/CHANGELOG.md +++ b/packages/providers/azure-openai/CHANGELOG.md @@ -1,5 +1,21 @@ # @perstack/azure-openai-provider +## 0.0.10 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + +- Updated dependencies [[`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496)]: + - @perstack/core@0.0.40 + - @perstack/provider-core@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/packages/providers/azure-openai/package.json b/packages/providers/azure-openai/package.json index c9785fa7..44f66dbe 100644 --- a/packages/providers/azure-openai/package.json +++ b/packages/providers/azure-openai/package.json @@ -1,7 +1,7 @@ { "name": "@perstack/azure-openai-provider", "private": true, - "version": "0.0.9", + "version": "0.0.10", "description": "Azure OpenAI provider adapter for Perstack", "author": "Wintermute Technologies, Inc.", "license": "Apache-2.0", diff --git a/packages/providers/bedrock/CHANGELOG.md b/packages/providers/bedrock/CHANGELOG.md index d83e4cf1..e3555ceb 100644 --- a/packages/providers/bedrock/CHANGELOG.md +++ b/packages/providers/bedrock/CHANGELOG.md @@ -1,5 +1,21 @@ # @perstack/bedrock-provider +## 0.0.10 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + +- Updated dependencies [[`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496)]: + - @perstack/core@0.0.40 + - @perstack/provider-core@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/packages/providers/bedrock/package.json b/packages/providers/bedrock/package.json index d9cfd0b9..8abb5f96 100644 --- a/packages/providers/bedrock/package.json +++ b/packages/providers/bedrock/package.json @@ -1,7 +1,7 @@ { "name": "@perstack/bedrock-provider", "private": true, - "version": "0.0.9", + "version": "0.0.10", "description": "Amazon Bedrock provider adapter for Perstack", "author": "Wintermute Technologies, Inc.", "license": "Apache-2.0", diff --git a/packages/providers/core/CHANGELOG.md b/packages/providers/core/CHANGELOG.md index 2b3bd289..25611812 100644 --- a/packages/providers/core/CHANGELOG.md +++ b/packages/providers/core/CHANGELOG.md @@ -1,5 +1,20 @@ # @perstack/provider-core +## 0.0.10 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + +- Updated dependencies [[`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496)]: + - @perstack/core@0.0.40 + ## 0.0.9 ### Patch Changes diff --git a/packages/providers/core/package.json b/packages/providers/core/package.json index 8cf08544..00222ae2 100644 --- a/packages/providers/core/package.json +++ b/packages/providers/core/package.json @@ -1,7 +1,7 @@ { "name": "@perstack/provider-core", "private": true, - "version": "0.0.9", + "version": "0.0.10", "description": "Core interfaces and base classes for Perstack LLM provider adapters", "author": "Wintermute Technologies, Inc.", "license": "Apache-2.0", diff --git a/packages/providers/deepseek/CHANGELOG.md b/packages/providers/deepseek/CHANGELOG.md index 4ec4d6e9..563db879 100644 --- a/packages/providers/deepseek/CHANGELOG.md +++ b/packages/providers/deepseek/CHANGELOG.md @@ -1,5 +1,21 @@ # @perstack/deepseek-provider +## 0.0.10 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + +- Updated dependencies [[`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496)]: + - @perstack/core@0.0.40 + - @perstack/provider-core@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/packages/providers/deepseek/package.json b/packages/providers/deepseek/package.json index 9a4dc049..ab844a23 100644 --- a/packages/providers/deepseek/package.json +++ b/packages/providers/deepseek/package.json @@ -1,7 +1,7 @@ { "name": "@perstack/deepseek-provider", "private": true, - "version": "0.0.9", + "version": "0.0.10", "description": "DeepSeek provider adapter for Perstack", "author": "Wintermute Technologies, Inc.", "license": "Apache-2.0", diff --git a/packages/providers/google/CHANGELOG.md b/packages/providers/google/CHANGELOG.md index 9a2cceb0..6d4ecdef 100644 --- a/packages/providers/google/CHANGELOG.md +++ b/packages/providers/google/CHANGELOG.md @@ -1,5 +1,21 @@ # @perstack/google-provider +## 0.0.10 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + +- Updated dependencies [[`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496)]: + - @perstack/core@0.0.40 + - @perstack/provider-core@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/packages/providers/google/package.json b/packages/providers/google/package.json index 754d36ff..be20e848 100644 --- a/packages/providers/google/package.json +++ b/packages/providers/google/package.json @@ -1,7 +1,7 @@ { "name": "@perstack/google-provider", "private": true, - "version": "0.0.9", + "version": "0.0.10", "description": "Google Generative AI provider adapter for Perstack", "author": "Wintermute Technologies, Inc.", "license": "Apache-2.0", diff --git a/packages/providers/ollama/CHANGELOG.md b/packages/providers/ollama/CHANGELOG.md index 68242829..3d2f035a 100644 --- a/packages/providers/ollama/CHANGELOG.md +++ b/packages/providers/ollama/CHANGELOG.md @@ -1,5 +1,21 @@ # @perstack/ollama-provider +## 0.0.10 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + +- Updated dependencies [[`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496)]: + - @perstack/core@0.0.40 + - @perstack/provider-core@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/packages/providers/ollama/package.json b/packages/providers/ollama/package.json index ffbea291..02484cfb 100644 --- a/packages/providers/ollama/package.json +++ b/packages/providers/ollama/package.json @@ -1,7 +1,7 @@ { "name": "@perstack/ollama-provider", "private": true, - "version": "0.0.9", + "version": "0.0.10", "description": "Ollama provider adapter for Perstack", "author": "Wintermute Technologies, Inc.", "license": "Apache-2.0", diff --git a/packages/providers/openai/CHANGELOG.md b/packages/providers/openai/CHANGELOG.md index aa748047..063ae5f7 100644 --- a/packages/providers/openai/CHANGELOG.md +++ b/packages/providers/openai/CHANGELOG.md @@ -1,5 +1,21 @@ # @perstack/openai-provider +## 0.0.10 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + +- Updated dependencies [[`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496)]: + - @perstack/core@0.0.40 + - @perstack/provider-core@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/packages/providers/openai/package.json b/packages/providers/openai/package.json index 30fd4e12..1cdd4838 100644 --- a/packages/providers/openai/package.json +++ b/packages/providers/openai/package.json @@ -1,7 +1,7 @@ { "name": "@perstack/openai-provider", "private": true, - "version": "0.0.9", + "version": "0.0.10", "description": "OpenAI provider adapter for Perstack", "author": "Wintermute Technologies, Inc.", "license": "Apache-2.0", diff --git a/packages/providers/vertex/CHANGELOG.md b/packages/providers/vertex/CHANGELOG.md index c7d118fa..0998508d 100644 --- a/packages/providers/vertex/CHANGELOG.md +++ b/packages/providers/vertex/CHANGELOG.md @@ -1,5 +1,21 @@ # @perstack/vertex-provider +## 0.0.10 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + +- Updated dependencies [[`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496)]: + - @perstack/core@0.0.40 + - @perstack/provider-core@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/packages/providers/vertex/package.json b/packages/providers/vertex/package.json index cb98c8f7..31502b9d 100644 --- a/packages/providers/vertex/package.json +++ b/packages/providers/vertex/package.json @@ -1,7 +1,7 @@ { "name": "@perstack/vertex-provider", "private": true, - "version": "0.0.9", + "version": "0.0.10", "description": "Google Vertex AI provider adapter for Perstack", "author": "Wintermute Technologies, Inc.", "license": "Apache-2.0", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 1de34bfc..9348c275 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,20 @@ # @perstack/react +## 0.0.42 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + +- Updated dependencies [[`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496)]: + - @perstack/core@0.0.40 + ## 0.0.41 ### Patch Changes diff --git a/packages/react/package.json b/packages/react/package.json index 589fbd8e..4c5c5660 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@perstack/react", - "version": "0.0.41", + "version": "0.0.42", "description": "React hooks and utilities for Perstack integration", "author": "Wintermute Technologies, Inc.", "license": "Apache-2.0", diff --git a/packages/runner/CHANGELOG.md b/packages/runner/CHANGELOG.md index 00a3f0bd..5e6eea05 100644 --- a/packages/runner/CHANGELOG.md +++ b/packages/runner/CHANGELOG.md @@ -1,5 +1,26 @@ # @perstack/runner +## 0.0.14 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + +- Updated dependencies [[`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496)]: + - @perstack/core@0.0.40 + - @perstack/runtime@0.0.88 + - @perstack/filesystem-storage@0.0.10 + - @perstack/claude-code@0.0.9 + - @perstack/cursor@0.0.9 + - @perstack/docker@0.0.9 + - @perstack/gemini@0.0.9 + ## 0.0.13 ### Patch Changes diff --git a/packages/runner/package.json b/packages/runner/package.json index ef348893..c72d1523 100644 --- a/packages/runner/package.json +++ b/packages/runner/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "0.0.13", + "version": "0.0.14", "name": "@perstack/runner", "description": "Perstack Runner - Multi-runtime adapter orchestration", "author": "Wintermute Technologies, Inc.", diff --git a/packages/runtimes/adapter-base/CHANGELOG.md b/packages/runtimes/adapter-base/CHANGELOG.md index d39cf126..eaed9d05 100644 --- a/packages/runtimes/adapter-base/CHANGELOG.md +++ b/packages/runtimes/adapter-base/CHANGELOG.md @@ -1,5 +1,20 @@ # @perstack/adapter-base +## 0.0.7 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + +- Updated dependencies [[`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496)]: + - @perstack/core@0.0.40 + ## 0.0.6 ### Patch Changes diff --git a/packages/runtimes/adapter-base/package.json b/packages/runtimes/adapter-base/package.json index 2452d206..5cbac59e 100644 --- a/packages/runtimes/adapter-base/package.json +++ b/packages/runtimes/adapter-base/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "0.0.6", + "version": "0.0.7", "name": "@perstack/adapter-base", "description": "Base adapter class for Perstack runtime adapters", "author": "Wintermute Technologies, Inc.", diff --git a/packages/runtimes/claude-code/CHANGELOG.md b/packages/runtimes/claude-code/CHANGELOG.md index 199a9211..e1bac06c 100644 --- a/packages/runtimes/claude-code/CHANGELOG.md +++ b/packages/runtimes/claude-code/CHANGELOG.md @@ -1,5 +1,21 @@ # @perstack/claude-code +## 0.0.9 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + +- Updated dependencies [[`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496)]: + - @perstack/core@0.0.40 + - @perstack/adapter-base@0.0.7 + ## 0.0.8 ### Patch Changes diff --git a/packages/runtimes/claude-code/package.json b/packages/runtimes/claude-code/package.json index 6a7557b4..b3151f4a 100644 --- a/packages/runtimes/claude-code/package.json +++ b/packages/runtimes/claude-code/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "0.0.8", + "version": "0.0.9", "name": "@perstack/claude-code", "description": "Perstack Claude Code Runtime Adapter", "author": "Wintermute Technologies, Inc.", diff --git a/packages/runtimes/cursor/CHANGELOG.md b/packages/runtimes/cursor/CHANGELOG.md index 7c60a56a..2f096efc 100644 --- a/packages/runtimes/cursor/CHANGELOG.md +++ b/packages/runtimes/cursor/CHANGELOG.md @@ -1,5 +1,21 @@ # @perstack/cursor +## 0.0.9 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + +- Updated dependencies [[`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496)]: + - @perstack/core@0.0.40 + - @perstack/adapter-base@0.0.7 + ## 0.0.8 ### Patch Changes diff --git a/packages/runtimes/cursor/package.json b/packages/runtimes/cursor/package.json index 4ed8eb16..1b823c88 100644 --- a/packages/runtimes/cursor/package.json +++ b/packages/runtimes/cursor/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "0.0.8", + "version": "0.0.9", "name": "@perstack/cursor", "description": "Perstack Cursor Runtime Adapter", "author": "Wintermute Technologies, Inc.", diff --git a/packages/runtimes/docker/CHANGELOG.md b/packages/runtimes/docker/CHANGELOG.md index d4afc07f..fce4da90 100644 --- a/packages/runtimes/docker/CHANGELOG.md +++ b/packages/runtimes/docker/CHANGELOG.md @@ -1,5 +1,21 @@ # @perstack/docker +## 0.0.9 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + +- Updated dependencies [[`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496)]: + - @perstack/core@0.0.40 + - @perstack/adapter-base@0.0.7 + ## 0.0.8 ### Patch Changes diff --git a/packages/runtimes/docker/package.json b/packages/runtimes/docker/package.json index f5b379dc..cfc53467 100644 --- a/packages/runtimes/docker/package.json +++ b/packages/runtimes/docker/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "0.0.8", + "version": "0.0.9", "name": "@perstack/docker", "description": "Perstack Docker Runtime Adapter", "author": "Wintermute Technologies, Inc.", diff --git a/packages/runtimes/gemini/CHANGELOG.md b/packages/runtimes/gemini/CHANGELOG.md index e4d1b2c7..06ae1caa 100644 --- a/packages/runtimes/gemini/CHANGELOG.md +++ b/packages/runtimes/gemini/CHANGELOG.md @@ -1,5 +1,21 @@ # @perstack/gemini +## 0.0.9 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + +- Updated dependencies [[`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496)]: + - @perstack/core@0.0.40 + - @perstack/adapter-base@0.0.7 + ## 0.0.8 ### Patch Changes diff --git a/packages/runtimes/gemini/package.json b/packages/runtimes/gemini/package.json index 1b5cee57..f62bf608 100644 --- a/packages/runtimes/gemini/package.json +++ b/packages/runtimes/gemini/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "0.0.8", + "version": "0.0.9", "name": "@perstack/gemini", "description": "Perstack Gemini CLI Runtime Adapter", "author": "Wintermute Technologies, Inc.", diff --git a/packages/storages/aws-s3/CHANGELOG.md b/packages/storages/aws-s3/CHANGELOG.md index e1e798be..d6e6853d 100644 --- a/packages/storages/aws-s3/CHANGELOG.md +++ b/packages/storages/aws-s3/CHANGELOG.md @@ -1,5 +1,20 @@ # @perstack/s3-storage +## 0.0.9 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + +- Updated dependencies [[`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496)]: + - @perstack/s3-compatible-storage@0.0.9 + ## 0.0.8 ### Patch Changes diff --git a/packages/storages/aws-s3/package.json b/packages/storages/aws-s3/package.json index 93a0a4e9..e966e802 100644 --- a/packages/storages/aws-s3/package.json +++ b/packages/storages/aws-s3/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "0.0.8", + "version": "0.0.9", "name": "@perstack/s3-storage", "description": "Perstack S3 Storage - AWS S3 storage backend for Perstack", "author": "Wintermute Technologies, Inc.", diff --git a/packages/storages/cloudflare-r2/CHANGELOG.md b/packages/storages/cloudflare-r2/CHANGELOG.md index f7874537..87db53c6 100644 --- a/packages/storages/cloudflare-r2/CHANGELOG.md +++ b/packages/storages/cloudflare-r2/CHANGELOG.md @@ -1,5 +1,20 @@ # @perstack/r2-storage +## 0.0.9 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + +- Updated dependencies [[`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496)]: + - @perstack/s3-compatible-storage@0.0.9 + ## 0.0.8 ### Patch Changes diff --git a/packages/storages/cloudflare-r2/package.json b/packages/storages/cloudflare-r2/package.json index ab80e857..694b9dd4 100644 --- a/packages/storages/cloudflare-r2/package.json +++ b/packages/storages/cloudflare-r2/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "0.0.8", + "version": "0.0.9", "name": "@perstack/r2-storage", "description": "Perstack R2 Storage - Cloudflare R2 storage backend for Perstack", "author": "Wintermute Technologies, Inc.", diff --git a/packages/storages/filesystem/CHANGELOG.md b/packages/storages/filesystem/CHANGELOG.md index 41448ee8..05cacd42 100644 --- a/packages/storages/filesystem/CHANGELOG.md +++ b/packages/storages/filesystem/CHANGELOG.md @@ -1,5 +1,20 @@ # @perstack/filesystem-storage +## 0.0.10 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + +- Updated dependencies [[`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496)]: + - @perstack/core@0.0.40 + ## 0.0.9 ### Patch Changes diff --git a/packages/storages/filesystem/package.json b/packages/storages/filesystem/package.json index 983ae97e..39f03c03 100644 --- a/packages/storages/filesystem/package.json +++ b/packages/storages/filesystem/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "0.0.9", + "version": "0.0.10", "name": "@perstack/filesystem-storage", "description": "Perstack Storage - Job, Checkpoint, Event persistence", "author": "Wintermute Technologies, Inc.", diff --git a/packages/storages/s3-compatible/CHANGELOG.md b/packages/storages/s3-compatible/CHANGELOG.md index 575fef76..63e1af8d 100644 --- a/packages/storages/s3-compatible/CHANGELOG.md +++ b/packages/storages/s3-compatible/CHANGELOG.md @@ -1,5 +1,20 @@ # @perstack/s3-compatible-storage +## 0.0.9 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + +- Updated dependencies [[`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496)]: + - @perstack/core@0.0.40 + ## 0.0.8 ### Patch Changes diff --git a/packages/storages/s3-compatible/package.json b/packages/storages/s3-compatible/package.json index 22628517..ff427195 100644 --- a/packages/storages/s3-compatible/package.json +++ b/packages/storages/s3-compatible/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "0.0.8", + "version": "0.0.9", "name": "@perstack/s3-compatible-storage", "description": "Perstack S3-Compatible Storage - Base implementation for S3-compatible storage backends", "author": "Wintermute Technologies, Inc.", diff --git a/packages/tui-components/CHANGELOG.md b/packages/tui-components/CHANGELOG.md index 8fd4e405..eaeabe35 100644 --- a/packages/tui-components/CHANGELOG.md +++ b/packages/tui-components/CHANGELOG.md @@ -1,5 +1,17 @@ # @perstack/tui-components +## 0.0.3 + +### Patch Changes + +- [#442](https://github.com/perstack-ai/perstack/pull/442) [`6f8d04a`](https://github.com/perstack-ai/perstack/commit/6f8d04a908e400c61c474f5d075a8e0d60b39496) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Add runtime version tracking to Job schema and validation + + - Add `runtimeVersion` field to Job schema to track which runtime version executed the job + - Add `minRuntimeVersion` field to Expert schema for compatibility requirements + - Runtime version 0.x.y is treated as v1.0 for compatibility + - Validate entire delegation chain before execution (fail fast, no LLM calls if incompatible) + - Recursive delegate resolution ensures all experts in chain are checked + ## 0.0.2 ### Patch Changes diff --git a/packages/tui-components/package.json b/packages/tui-components/package.json index 56e1688c..b007ac96 100644 --- a/packages/tui-components/package.json +++ b/packages/tui-components/package.json @@ -1,7 +1,7 @@ { "name": "@perstack/tui-components", "private": true, - "version": "0.0.2", + "version": "0.0.3", "description": "Shared TUI components and hooks for Perstack applications", "author": "Wintermute Technologies, Inc.", "license": "Apache-2.0",