From 7143d505accf3dd51b60f8cc12066e7630b5fb76 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 Apr 2026 00:01:51 +0000 Subject: [PATCH] chore: version packages --- .changeset/cool-parents-rush.md | 5 ----- .changeset/fluffy-sides-lose.md | 6 ------ .changeset/nice-cougars-share.md | 5 ----- .changeset/quiet-lions-jog.md | 5 ----- .changeset/sqlite-state-migration.md | 17 ----------------- apps/tui/CHANGELOG.md | 28 ++++++++++++++++++++++++++++ apps/tui/package.json | 2 +- packages/daemon/CHANGELOG.md | 22 ++++++++++++++++++++++ packages/daemon/package.json | 2 +- 9 files changed, 52 insertions(+), 40 deletions(-) delete mode 100644 .changeset/cool-parents-rush.md delete mode 100644 .changeset/fluffy-sides-lose.md delete mode 100644 .changeset/nice-cougars-share.md delete mode 100644 .changeset/quiet-lions-jog.md delete mode 100644 .changeset/sqlite-state-migration.md create mode 100644 packages/daemon/CHANGELOG.md diff --git a/.changeset/cool-parents-rush.md b/.changeset/cool-parents-rush.md deleted file mode 100644 index b2ccf05..0000000 --- a/.changeset/cool-parents-rush.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@techatnyu/ralph": patch ---- - -Add onboarding checks for OpenCode installation and authentication. diff --git a/.changeset/fluffy-sides-lose.md b/.changeset/fluffy-sides-lose.md deleted file mode 100644 index 771f978..0000000 --- a/.changeset/fluffy-sides-lose.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@techatnyu/ralphd": minor -"@techatnyu/ralph": minor ---- - -Stream messages from daemon to the TUI chat diff --git a/.changeset/nice-cougars-share.md b/.changeset/nice-cougars-share.md deleted file mode 100644 index 4475eb0..0000000 --- a/.changeset/nice-cougars-share.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@techatnyu/ralph": patch ---- - -Add worktree wrapper helpers and tests for the TUI. diff --git a/.changeset/quiet-lions-jog.md b/.changeset/quiet-lions-jog.md deleted file mode 100644 index 0e65209..0000000 --- a/.changeset/quiet-lions-jog.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@techatnyu/ralph": patch ---- - -Add the daemon-backed TUI, docs site, and release tooling. diff --git a/.changeset/sqlite-state-migration.md b/.changeset/sqlite-state-migration.md deleted file mode 100644 index 9df0924..0000000 --- a/.changeset/sqlite-state-migration.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -"@techatnyu/ralphd": patch -"@techatnyu/ralph": patch ---- - -Migrate daemon persisted state from `~/.ralph/state.json` to a SQLite -database at `~/.ralph/state.sqlite`. - -The move enables transactional mutations, WAL-mode crash durability, and -indexed queries as the daemon scales. Schema is versioned via SQLite's -`PRAGMA user_version` so future migrations can be additive. - -**Upgrade note:** existing `state.json` files are not migrated automatically. -On first run after upgrade, the daemon starts with an empty database — you -will need to re-register any instances and resubmit in-flight jobs. Old -terminal job history is lost. If preserving state matters to you, hold off -upgrading until an explicit migration path ships. diff --git a/apps/tui/CHANGELOG.md b/apps/tui/CHANGELOG.md index f1f1712..70defc9 100644 --- a/apps/tui/CHANGELOG.md +++ b/apps/tui/CHANGELOG.md @@ -1,5 +1,33 @@ # @techatnyu/ralph +## 0.1.0 + +### Minor Changes + +- a7b9b2b: Stream messages from daemon to the TUI chat + +### Patch Changes + +- 1f71d19: Add onboarding checks for OpenCode installation and authentication. +- 966ee6c: Add worktree wrapper helpers and tests for the TUI. +- c66c954: Add the daemon-backed TUI, docs site, and release tooling. +- 6181ce2: Migrate daemon persisted state from `~/.ralph/state.json` to a SQLite + database at `~/.ralph/state.sqlite`. + + The move enables transactional mutations, WAL-mode crash durability, and + indexed queries as the daemon scales. Schema is versioned via SQLite's + `PRAGMA user_version` so future migrations can be additive. + + **Upgrade note:** existing `state.json` files are not migrated automatically. + On first run after upgrade, the daemon starts with an empty database — you + will need to re-register any instances and resubmit in-flight jobs. Old + terminal job history is lost. If preserving state matters to you, hold off + upgrading until an explicit migration path ships. + +- Updated dependencies [a7b9b2b] +- Updated dependencies [6181ce2] + - @techatnyu/ralphd@0.1.0 + ## 0.0.1 ### Patch Changes diff --git a/apps/tui/package.json b/apps/tui/package.json index 7fca44c..5737a7d 100644 --- a/apps/tui/package.json +++ b/apps/tui/package.json @@ -1,6 +1,6 @@ { "name": "@techatnyu/ralph", - "version": "0.0.1", + "version": "0.1.0", "module": "src/index.tsx", "type": "module", "private": false, diff --git a/packages/daemon/CHANGELOG.md b/packages/daemon/CHANGELOG.md new file mode 100644 index 0000000..ea9ed5c --- /dev/null +++ b/packages/daemon/CHANGELOG.md @@ -0,0 +1,22 @@ +# @techatnyu/ralphd + +## 0.1.0 + +### Minor Changes + +- a7b9b2b: Stream messages from daemon to the TUI chat + +### Patch Changes + +- 6181ce2: Migrate daemon persisted state from `~/.ralph/state.json` to a SQLite + database at `~/.ralph/state.sqlite`. + + The move enables transactional mutations, WAL-mode crash durability, and + indexed queries as the daemon scales. Schema is versioned via SQLite's + `PRAGMA user_version` so future migrations can be additive. + + **Upgrade note:** existing `state.json` files are not migrated automatically. + On first run after upgrade, the daemon starts with an empty database — you + will need to re-register any instances and resubmit in-flight jobs. Old + terminal job history is lost. If preserving state matters to you, hold off + upgrading until an explicit migration path ships. diff --git a/packages/daemon/package.json b/packages/daemon/package.json index d9cec2f..63d6ebb 100644 --- a/packages/daemon/package.json +++ b/packages/daemon/package.json @@ -1,6 +1,6 @@ { "name": "@techatnyu/ralphd", - "version": "0.0.0", + "version": "0.1.0", "type": "module", "private": true, "exports": {