Skip to content

Commit 2ca409a

Browse files
chore: version packages
1 parent 53d458f commit 2ca409a

9 files changed

Lines changed: 52 additions & 40 deletions

File tree

.changeset/cool-parents-rush.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/fluffy-sides-lose.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/nice-cougars-share.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/quiet-lions-jog.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/sqlite-state-migration.md

Lines changed: 0 additions & 17 deletions
This file was deleted.

apps/tui/CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
11
# @techatnyu/ralph
22

3+
## 0.1.0
4+
5+
### Minor Changes
6+
7+
- a7b9b2b: Stream messages from daemon to the TUI chat
8+
9+
### Patch Changes
10+
11+
- 1f71d19: Add onboarding checks for OpenCode installation and authentication.
12+
- 966ee6c: Add worktree wrapper helpers and tests for the TUI.
13+
- c66c954: Add the daemon-backed TUI, docs site, and release tooling.
14+
- 6181ce2: Migrate daemon persisted state from `~/.ralph/state.json` to a SQLite
15+
database at `~/.ralph/state.sqlite`.
16+
17+
The move enables transactional mutations, WAL-mode crash durability, and
18+
indexed queries as the daemon scales. Schema is versioned via SQLite's
19+
`PRAGMA user_version` so future migrations can be additive.
20+
21+
**Upgrade note:** existing `state.json` files are not migrated automatically.
22+
On first run after upgrade, the daemon starts with an empty database — you
23+
will need to re-register any instances and resubmit in-flight jobs. Old
24+
terminal job history is lost. If preserving state matters to you, hold off
25+
upgrading until an explicit migration path ships.
26+
27+
- Updated dependencies [a7b9b2b]
28+
- Updated dependencies [6181ce2]
29+
- @techatnyu/ralphd@0.1.0
30+
331
## 0.0.1
432

533
### Patch Changes

apps/tui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@techatnyu/ralph",
3-
"version": "0.0.1",
3+
"version": "0.1.0",
44
"module": "src/index.tsx",
55
"type": "module",
66
"private": false,

packages/daemon/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# @techatnyu/ralphd
2+
3+
## 0.1.0
4+
5+
### Minor Changes
6+
7+
- a7b9b2b: Stream messages from daemon to the TUI chat
8+
9+
### Patch Changes
10+
11+
- 6181ce2: Migrate daemon persisted state from `~/.ralph/state.json` to a SQLite
12+
database at `~/.ralph/state.sqlite`.
13+
14+
The move enables transactional mutations, WAL-mode crash durability, and
15+
indexed queries as the daemon scales. Schema is versioned via SQLite's
16+
`PRAGMA user_version` so future migrations can be additive.
17+
18+
**Upgrade note:** existing `state.json` files are not migrated automatically.
19+
On first run after upgrade, the daemon starts with an empty database — you
20+
will need to re-register any instances and resubmit in-flight jobs. Old
21+
terminal job history is lost. If preserving state matters to you, hold off
22+
upgrading until an explicit migration path ships.

packages/daemon/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@techatnyu/ralphd",
3-
"version": "0.0.0",
3+
"version": "0.1.0",
44
"type": "module",
55
"private": true,
66
"exports": {

0 commit comments

Comments
 (0)