Skip to content
Open
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
5 changes: 0 additions & 5 deletions .changeset/cool-parents-rush.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/fluffy-sides-lose.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nice-cougars-share.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quiet-lions-jog.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/sqlite-state-migration.md

This file was deleted.

28 changes: 28 additions & 0 deletions apps/tui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion apps/tui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@techatnyu/ralph",
"version": "0.0.1",
"version": "0.1.0",
"module": "src/index.tsx",
"type": "module",
"private": false,
Expand Down
22 changes: 22 additions & 0 deletions packages/daemon/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion packages/daemon/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@techatnyu/ralphd",
"version": "0.0.0",
"version": "0.1.0",
"type": "module",
"private": true,
"exports": {
Expand Down