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
13 changes: 0 additions & 13 deletions .changeset/fix-event-accumulation.md

This file was deleted.

13 changes: 13 additions & 0 deletions apps/perstack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion apps/perstack/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
7 changes: 7 additions & 0 deletions packages/runner/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/runner/package.json
Original file line number Diff line number Diff line change
@@ -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.",
Expand Down
13 changes: 13 additions & 0 deletions packages/storages/filesystem/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/storages/filesystem/package.json
Original file line number Diff line number Diff line change
@@ -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.",
Expand Down