Skip to content

Commit 72a40a7

Browse files
authored
Merge pull request #344 from badaitech/fix/execution-serialization
Fix/execution serialization
2 parents b915b4c + 78949c3 commit 72a40a7

30 files changed

Lines changed: 335 additions & 49 deletions

File tree

.changeset/early-baboons-lay.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
"@badaitech/chaingraph-nodes": patch
3+
"@badaitech/chaingraph-frontend": patch
4+
"@badaitech/chaingraph-trpc": patch
5+
"@badaitech/chaingraph-backend": patch
6+
"@badaitech/chaingraph-execution-api": patch
7+
"@badaitech/chaingraph-execution-worker": patch
8+
"@badaitech/badai-api": patch
9+
"@badaitech/badai-api-example": patch
10+
"@badaitech/chaingraph-executor": patch
11+
"@badaitech/chaingraph-types": patch
12+
"@badaitech/typescript-config": patch
13+
---
14+
15+
fix: restore @badaitech/typescript-config as a devDependency in package.json

.changeset/fluffy-chairs-yell.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
"@badaitech/chaingraph-execution-worker": patch
3+
"@badaitech/chaingraph-execution-api": patch
4+
"@badaitech/chaingraph-executor": patch
5+
"@badaitech/badai-api-example": patch
6+
"@badaitech/typescript-config": patch
7+
"@badaitech/chaingraph-nodes": patch
8+
"@badaitech/chaingraph-types": patch
9+
"@badaitech/chaingraph-frontend": patch
10+
"@badaitech/chaingraph-trpc": patch
11+
"@badaitech/chaingraph-backend": patch
12+
"@badaitech/badai-api": patch
13+
---
14+
15+
fix: restore @badaitech/typescript-config as a devDependency in package.json and update package versions

.changeset/fuzzy-rockets-drive.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
"@badaitech/chaingraph-execution-worker": patch
3+
"@badaitech/chaingraph-execution-api": patch
4+
"@badaitech/chaingraph-executor": patch
5+
"@badaitech/badai-api-example": patch
6+
"@badaitech/typescript-config": patch
7+
"@badaitech/chaingraph-nodes": patch
8+
"@badaitech/chaingraph-types": patch
9+
"@badaitech/chaingraph-frontend": patch
10+
"@badaitech/chaingraph-trpc": patch
11+
"@badaitech/chaingraph-backend": patch
12+
"@badaitech/badai-api": patch
13+
---
14+
15+
fix: update execution serialization and flow migration logic

.changeset/pre.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
},
1717
"changesets": [
1818
"dry-otters-share",
19+
"early-baboons-lay",
20+
"fluffy-chairs-yell",
21+
"fuzzy-rockets-drive",
1922
"good-trains-enjoy",
2023
"green-beans-poke",
2124
"little-drinks-travel",

apps/chaingraph-backend/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# @badaitech/chaingraph-backend
22

3+
## 0.5.5-dev.40
4+
5+
### Patch Changes
6+
7+
- fix: update execution serialization and flow migration logic
8+
- Updated dependencies
9+
- @badaitech/chaingraph-nodes@0.5.5-dev.40
10+
- @badaitech/chaingraph-types@0.5.5-dev.40
11+
- @badaitech/chaingraph-trpc@0.5.5-dev.40
12+
13+
## 0.5.5-dev.39
14+
15+
### Patch Changes
16+
17+
- fix: restore @badaitech/typescript-config as a devDependency in package.json and update package versions
18+
- Updated dependencies
19+
- @badaitech/chaingraph-nodes@0.5.5-dev.39
20+
- @badaitech/chaingraph-types@0.5.5-dev.39
21+
- @badaitech/chaingraph-trpc@0.5.5-dev.39
22+
23+
## 0.5.5-dev.38
24+
25+
### Patch Changes
26+
27+
- fix: restore @badaitech/typescript-config as a devDependency in package.json
28+
329
## 0.5.5-dev.37
430

531
### Patch Changes

apps/chaingraph-backend/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@badaitech/chaingraph-backend",
33
"type": "module",
4-
"version": "0.5.5-dev.37",
4+
"version": "0.5.5-dev.40",
55
"private": false,
66
"description": "Backend server for the Chaingraph project",
77
"license": "BUSL-1.1",
@@ -31,6 +31,9 @@
3131
"test:coverage": "vitest run --coverage"
3232
},
3333
"dependencies": {
34+
"@badaitech/chaingraph-nodes": "workspace:*",
35+
"@badaitech/chaingraph-trpc": "workspace:*",
36+
"@badaitech/chaingraph-types": "workspace:*",
3437
"@mixmark-io/domino": "^2.2.0",
3538
"@types/ws": "^8.18.1",
3639
"bigint-crypto-utils": "^3.3.0",
@@ -42,9 +45,6 @@
4245
"yaml": "^2.8.1"
4346
},
4447
"devDependencies": {
45-
"@badaitech/chaingraph-nodes": "workspace:*",
46-
"@badaitech/chaingraph-trpc": "workspace:*",
47-
"@badaitech/chaingraph-types": "workspace:*",
4848
"@badaitech/typescript-config": "workspace:*",
4949
"@types/cors": "^2.8.19",
5050
"@types/node": "^22.14.0",

apps/chaingraph-execution-api/CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# @badaitech/chaingraph-execution-api
22

3+
## 0.5.5-dev.40
4+
5+
### Patch Changes
6+
7+
- fix: update execution serialization and flow migration logic
8+
- Updated dependencies
9+
- @badaitech/chaingraph-executor@0.5.5-dev.40
10+
- @badaitech/chaingraph-types@0.5.5-dev.40
11+
- @badaitech/chaingraph-trpc@0.5.5-dev.40
12+
13+
## 0.5.5-dev.39
14+
15+
### Patch Changes
16+
17+
- fix: restore @badaitech/typescript-config as a devDependency in package.json and update package versions
18+
- Updated dependencies
19+
- @badaitech/chaingraph-executor@0.5.5-dev.39
20+
- @badaitech/chaingraph-types@0.5.5-dev.39
21+
- @badaitech/chaingraph-trpc@0.5.5-dev.39
22+
23+
## 0.5.5-dev.38
24+
25+
### Patch Changes
26+
27+
- fix: restore @badaitech/typescript-config as a devDependency in package.json
28+
- Updated dependencies
29+
- @badaitech/chaingraph-trpc@0.5.5-dev.38
30+
- @badaitech/chaingraph-executor@0.5.5-dev.38
31+
- @badaitech/chaingraph-types@0.5.5-dev.38
32+
333
## 0.5.5-dev.37
434

535
### Patch Changes

apps/chaingraph-execution-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@badaitech/chaingraph-execution-api",
33
"type": "module",
4-
"version": "0.5.5-dev.37",
4+
"version": "0.5.5-dev.40",
55
"private": false,
66
"description": "Chaingraph tRPC Server - Scalable API server for Chaingraph execution management",
77
"license": "BUSL-1.1",

apps/chaingraph-execution-worker/CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
11
# @badaitech/chaingraph-execution-worker
22

3+
## 0.5.5-dev.40
4+
5+
### Patch Changes
6+
7+
- fix: update execution serialization and flow migration logic
8+
- Updated dependencies
9+
- @badaitech/chaingraph-executor@0.5.5-dev.40
10+
- @badaitech/chaingraph-nodes@0.5.5-dev.40
11+
- @badaitech/chaingraph-types@0.5.5-dev.40
12+
- @badaitech/chaingraph-trpc@0.5.5-dev.40
13+
14+
## 0.5.5-dev.39
15+
16+
### Patch Changes
17+
18+
- fix: restore @badaitech/typescript-config as a devDependency in package.json and update package versions
19+
- Updated dependencies
20+
- @badaitech/chaingraph-executor@0.5.5-dev.39
21+
- @badaitech/chaingraph-nodes@0.5.5-dev.39
22+
- @badaitech/chaingraph-types@0.5.5-dev.39
23+
- @badaitech/chaingraph-trpc@0.5.5-dev.39
24+
25+
## 0.5.5-dev.38
26+
27+
### Patch Changes
28+
29+
- fix: restore @badaitech/typescript-config as a devDependency in package.json
30+
- Updated dependencies
31+
- @badaitech/chaingraph-nodes@0.5.5-dev.38
32+
- @badaitech/chaingraph-trpc@0.5.5-dev.38
33+
- @badaitech/chaingraph-executor@0.5.5-dev.38
34+
- @badaitech/chaingraph-types@0.5.5-dev.38
35+
336
## 0.5.5-dev.37
437

538
### Patch Changes

apps/chaingraph-execution-worker/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@badaitech/chaingraph-execution-worker",
33
"type": "module",
4-
"version": "0.5.5-dev.37",
4+
"version": "0.5.5-dev.40",
55
"private": false,
66
"description": "Chaingraph Execution Worker Service which connected to Kafka and process the flow executions",
77
"license": "BUSL-1.1",

0 commit comments

Comments
 (0)