Skip to content

Commit 64b8a8d

Browse files
committed
publish
1 parent c04c4e4 commit 64b8a8d

7 files changed

Lines changed: 455 additions & 31 deletions

File tree

packages/cli/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# @flowcraft/cli
2+
3+
## 1.0.0-alpha.0
4+
5+
### Major Changes
6+
7+
- Add history adapters and CLI for time-travel debugging.
8+
9+
- Add SQLite and PostgreSQL history adapters for production event storage
10+
- Add CLI package with `inspect` command for workflow execution analysis
11+
- Add comprehensive time-travel debugging guide and API documentation
12+
13+
### Patch Changes
14+
15+
- Updated dependencies
16+
- @flowcraft/postgres-history@1.0.0-alpha.0
17+
- @flowcraft/sqlite-history@1.0.0-alpha.0

packages/cli/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@flowcraft/cli",
33
"type": "module",
4-
"version": "0.0.0",
4+
"version": "1.0.0-alpha.0",
55
"description": "Command-line interface for Flowcraft workflow observability and debugging",
66
"bin": {
77
"flowcraft": "./dist/index.js"
@@ -27,11 +27,11 @@
2727
"test": "vitest run"
2828
},
2929
"dependencies": {
30-
"@flowcraft/postgres-history": "workspace:*",
31-
"@flowcraft/sqlite-history": "workspace:*",
30+
"@flowcraft/postgres-history": "1.0.0-alpha.0",
31+
"@flowcraft/sqlite-history": "1.0.0-alpha.0",
3232
"chalk": "^5.6.2",
3333
"commander": "^14.0.2",
34-
"flowcraft": "workspace:*",
34+
"flowcraft": "^2.7.0",
3535
"ora": "^9.0.0",
3636
"table": "^6.9.0"
3737
},
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# @flowcraft/postgres-history
2+
3+
## 1.0.0-alpha.0
4+
5+
### Major Changes
6+
7+
- Add history adapters and CLI for time-travel debugging.
8+
9+
- Add SQLite and PostgreSQL history adapters for production event storage
10+
- Add CLI package with `inspect` command for workflow execution analysis
11+
- Add comprehensive time-travel debugging guide and API documentation

packages/history-postgres/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@flowcraft/postgres-history",
33
"type": "module",
4-
"version": "0.0.0",
4+
"version": "1.0.0-alpha.0",
55
"description": "PostgreSQL-based event store for Flowcraft workflow observability",
66
"main": "dist/index.js",
77
"module": "dist/index.mjs",
@@ -23,7 +23,7 @@
2323
"test": "./testcontainers.sh && vitest run"
2424
},
2525
"dependencies": {
26-
"flowcraft": "workspace:*",
26+
"flowcraft": "^2.7.0",
2727
"pg": "^8.16.3"
2828
},
2929
"devDependencies": {
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# @flowcraft/sqlite-history
2+
3+
## 1.0.0-alpha.0
4+
5+
### Major Changes
6+
7+
- Add history adapters and CLI for time-travel debugging.
8+
9+
- Add SQLite and PostgreSQL history adapters for production event storage
10+
- Add CLI package with `inspect` command for workflow execution analysis
11+
- Add comprehensive time-travel debugging guide and API documentation

packages/history-sqlite/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@flowcraft/sqlite-history",
33
"type": "module",
4-
"version": "0.0.0",
4+
"version": "1.0.0-alpha.0",
55
"description": "SQLite-based event store for Flowcraft workflow observability",
66
"main": "dist/index.js",
77
"module": "dist/index.mjs",
@@ -24,7 +24,7 @@
2424
},
2525
"dependencies": {
2626
"better-sqlite3": "^12.4.1",
27-
"flowcraft": "workspace:*"
27+
"flowcraft": "^2.7.0"
2828
},
2929
"devDependencies": {
3030
"@types/better-sqlite3": "^7.6.13",

0 commit comments

Comments
 (0)