diff --git a/.changeset/fix-event-accumulation.md b/.changeset/fix-event-accumulation.md deleted file mode 100644 index 3180f509..00000000 --- a/.changeset/fix-event-accumulation.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -"perstack": patch -"@perstack/filesystem-storage": patch ---- - -fix(tui): fix event accumulation across multiple runs in start command - -When using `perstack start` with interactive tools, events from all runs in a job -were not being loaded because `getAllEventContentsForJob` relied on `run-setting.json` -files which are not always present. - -Added `getRunIdsByJobId` function that scans the runs directory directly, ensuring -all runs are discovered even when `run-setting.json` is missing. diff --git a/apps/perstack/CHANGELOG.md b/apps/perstack/CHANGELOG.md index ecceb85a..35f9904f 100644 --- a/apps/perstack/CHANGELOG.md +++ b/apps/perstack/CHANGELOG.md @@ -1,5 +1,18 @@ # perstack +## 0.0.66 + +### Patch Changes + +- [#431](https://github.com/perstack-ai/perstack/pull/431) [`7278836`](https://github.com/perstack-ai/perstack/commit/7278836da9613957ade6b926063463fc76f4af48) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - fix(tui): fix event accumulation across multiple runs in start command + + When using `perstack start` with interactive tools, events from all runs in a job + were not being loaded because `getAllEventContentsForJob` relied on `run-setting.json` + files which are not always present. + + Added `getRunIdsByJobId` function that scans the runs directory directly, ensuring + all runs are discovered even when `run-setting.json` is missing. + ## 0.0.65 ### Patch Changes diff --git a/apps/perstack/package.json b/apps/perstack/package.json index 2ac372a1..b6e3a211 100644 --- a/apps/perstack/package.json +++ b/apps/perstack/package.json @@ -1,6 +1,6 @@ { "name": "perstack", - "version": "0.0.65", + "version": "0.0.66", "description": "PerStack CLI", "author": "Wintermute Technologies, Inc.", "license": "Apache-2.0", diff --git a/packages/runner/CHANGELOG.md b/packages/runner/CHANGELOG.md index 4ae899dd..a9dc0ece 100644 --- a/packages/runner/CHANGELOG.md +++ b/packages/runner/CHANGELOG.md @@ -1,5 +1,12 @@ # @perstack/runner +## 0.0.11 + +### Patch Changes + +- Updated dependencies [[`7278836`](https://github.com/perstack-ai/perstack/commit/7278836da9613957ade6b926063463fc76f4af48)]: + - @perstack/filesystem-storage@0.0.8 + ## 0.0.10 ### Patch Changes diff --git a/packages/runner/package.json b/packages/runner/package.json index adacb0b2..57ab2b4c 100644 --- a/packages/runner/package.json +++ b/packages/runner/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "0.0.10", + "version": "0.0.11", "name": "@perstack/runner", "description": "Perstack Runner - Multi-runtime adapter orchestration", "author": "Wintermute Technologies, Inc.", diff --git a/packages/storages/filesystem/CHANGELOG.md b/packages/storages/filesystem/CHANGELOG.md index f979692f..faa654a2 100644 --- a/packages/storages/filesystem/CHANGELOG.md +++ b/packages/storages/filesystem/CHANGELOG.md @@ -1,5 +1,18 @@ # @perstack/filesystem-storage +## 0.0.8 + +### Patch Changes + +- [#431](https://github.com/perstack-ai/perstack/pull/431) [`7278836`](https://github.com/perstack-ai/perstack/commit/7278836da9613957ade6b926063463fc76f4af48) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - fix(tui): fix event accumulation across multiple runs in start command + + When using `perstack start` with interactive tools, events from all runs in a job + were not being loaded because `getAllEventContentsForJob` relied on `run-setting.json` + files which are not always present. + + Added `getRunIdsByJobId` function that scans the runs directory directly, ensuring + all runs are discovered even when `run-setting.json` is missing. + ## 0.0.7 ### Patch Changes diff --git a/packages/storages/filesystem/package.json b/packages/storages/filesystem/package.json index 2ce02dba..240c0159 100644 --- a/packages/storages/filesystem/package.json +++ b/packages/storages/filesystem/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "0.0.7", + "version": "0.0.8", "name": "@perstack/filesystem-storage", "description": "Perstack Storage - Job, Checkpoint, Event persistence", "author": "Wintermute Technologies, Inc.",