Skip to content

Commit fcdd14a

Browse files
authored
Merge pull request #348
fix/execution-serialization
2 parents ee7a5f0 + 5fd5197 commit fcdd14a

23 files changed

Lines changed: 111 additions & 21 deletions

File tree

.changeset/free-dancers-dream.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: remove conditional checks for release branch in GitHub Actions and restore trpc dependencies in package.json

.changeset/pre.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"dry-otters-share",
1919
"early-baboons-lay",
2020
"fluffy-chairs-yell",
21+
"free-dancers-dream",
2122
"funny-kings-return",
2223
"fuzzy-rockets-drive",
2324
"good-trains-enjoy",

.github/workflows/release.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ jobs:
8989

9090
# For GitHub releases, publish directly with version from tag
9191
- name: Publish packages from release
92-
if: github.ref == 'refs/heads/release'
9392
run: |
9493
TAG_VERSION="${{ github.event.release.tag_name }}"
9594
# Remove 'v' prefix if present
@@ -116,7 +115,6 @@ jobs:
116115
NPM_TOKEN: ${{ secrets.GITHUB_TOKEN }}
117116

118117
- name: Extract app versions from package.json
119-
if: github.ref == 'refs/heads/release'
120118
id: extract-versions
121119
run: |
122120
BACK_VERSION=$(node -p "require('./apps/chaingraph-backend/package.json').version")
@@ -136,11 +134,9 @@ jobs:
136134
echo " Execution Worker: $EXEC_WORKER_VERSION"
137135
138136
- name: Set up Docker Buildx
139-
if: github.ref == 'refs/heads/release'
140137
uses: docker/setup-buildx-action@v3
141138

142139
- name: Login to GitHub Container Registry
143-
if: github.ref == 'refs/heads/release'
144140
uses: docker/login-action@v3
145141
with:
146142
registry: ghcr.io
@@ -151,7 +147,6 @@ jobs:
151147
build-apps:
152148
name: Build Application Images
153149
runs-on: ubuntu-latest-m-2
154-
if: github.ref == 'refs/heads/release'
155150
needs: release
156151
strategy:
157152
matrix:
@@ -210,7 +205,6 @@ jobs:
210205
cache-to: type=gha,mode=max,scope=${{ matrix.app.name }}
211206

212207
# - name: Build and push images (Push to main/develop/tags)
213-
# if: github.ref == 'refs/heads/release'
214208
# uses: docker/bake-action@v6
215209
# with:
216210
# files: docker-bake.hcl

apps/chaingraph-backend/CHANGELOG.md

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

3+
## 0.5.5-dev.42
4+
5+
### Patch Changes
6+
7+
- fix: remove conditional checks for release branch in GitHub Actions and restore trpc dependencies in package.json
8+
- Updated dependencies
9+
- @badaitech/chaingraph-nodes@0.5.5-dev.42
10+
- @badaitech/chaingraph-types@0.5.5-dev.42
11+
- @badaitech/chaingraph-trpc@0.5.5-dev.42
12+
313
## 0.5.5-dev.41
414

515
### Patch Changes

apps/chaingraph-backend/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-backend",
33
"type": "module",
4-
"version": "0.5.5-dev.41",
4+
"version": "0.5.5-dev.42",
55
"private": false,
66
"description": "Backend server for the Chaingraph project",
77
"license": "BUSL-1.1",

apps/chaingraph-execution-api/CHANGELOG.md

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

3+
## 0.5.5-dev.42
4+
5+
### Patch Changes
6+
7+
- fix: remove conditional checks for release branch in GitHub Actions and restore trpc dependencies in package.json
8+
- Updated dependencies
9+
- @badaitech/chaingraph-executor@0.5.5-dev.42
10+
- @badaitech/chaingraph-types@0.5.5-dev.42
11+
- @badaitech/chaingraph-trpc@0.5.5-dev.42
12+
313
## 0.5.5-dev.41
414

515
### 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.41",
4+
"version": "0.5.5-dev.42",
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: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @badaitech/chaingraph-execution-worker
22

3+
## 0.5.5-dev.42
4+
5+
### Patch Changes
6+
7+
- fix: remove conditional checks for release branch in GitHub Actions and restore trpc dependencies in package.json
8+
- Updated dependencies
9+
- @badaitech/chaingraph-executor@0.5.5-dev.42
10+
- @badaitech/chaingraph-nodes@0.5.5-dev.42
11+
- @badaitech/chaingraph-types@0.5.5-dev.42
12+
- @badaitech/chaingraph-trpc@0.5.5-dev.42
13+
314
## 0.5.5-dev.41
415

516
### 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.41",
4+
"version": "0.5.5-dev.42",
55
"private": false,
66
"description": "Chaingraph Execution Worker Service which connected to Kafka and process the flow executions",
77
"license": "BUSL-1.1",

apps/chaingraph-frontend/CHANGELOG.md

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

3+
## 0.5.5-dev.42
4+
5+
### Patch Changes
6+
7+
- fix: remove conditional checks for release branch in GitHub Actions and restore trpc dependencies in package.json
8+
- Updated dependencies
9+
- @badaitech/chaingraph-executor@0.5.5-dev.42
10+
- @badaitech/chaingraph-nodes@0.5.5-dev.42
11+
- @badaitech/chaingraph-types@0.5.5-dev.42
12+
- @badaitech/chaingraph-trpc@0.5.5-dev.42
13+
- @badaitech/badai-api@0.5.5-dev.42
14+
315
## 0.5.5-dev.41
416

517
### Patch Changes

0 commit comments

Comments
 (0)