Skip to content

Commit 98bc20a

Browse files
committed
Bump version
1 parent 801dc43 commit 98bc20a

28 files changed

Lines changed: 174 additions & 47 deletions

File tree

apps/chaingraph-backend/CHANGELOG.md

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

3+
## 0.7.0
4+
5+
### Minor Changes
6+
7+
- Global frontend optimizations, and new features
8+
9+
### Patch Changes
10+
11+
- Updated dependencies
12+
- @badaitech/chaingraph-nodes@0.7.0
13+
- @badaitech/chaingraph-types@0.7.0
14+
- @badaitech/chaingraph-trpc@0.7.0
15+
316
## 0.6.46
417

518
### 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.6.46",
4+
"version": "0.7.0",
55
"private": false,
66
"description": "Backend server for the Chaingraph project",
77
"license": "BUSL-1.1",

apps/chaingraph-execution-api/CHANGELOG.md

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

3+
## 0.7.0
4+
5+
### Minor Changes
6+
7+
- Global frontend optimizations, and new features
8+
9+
### Patch Changes
10+
11+
- Updated dependencies
12+
- @badaitech/chaingraph-executor@0.7.0
13+
- @badaitech/chaingraph-nodes@0.7.0
14+
- @badaitech/chaingraph-types@0.7.0
15+
- @badaitech/chaingraph-trpc@0.7.0
16+
- @badaitech/badai-api@0.7.0
17+
318
## 0.6.46
419

520
### 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.6.46",
4+
"version": "0.7.0",
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: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# @badaitech/chaingraph-execution-worker
22

3+
## 0.7.0
4+
5+
### Minor Changes
6+
7+
- Global frontend optimizations, and new features
8+
9+
### Patch Changes
10+
11+
- Updated dependencies
12+
- @badaitech/chaingraph-executor@0.7.0
13+
- @badaitech/chaingraph-nodes@0.7.0
14+
- @badaitech/chaingraph-types@0.7.0
15+
- @badaitech/chaingraph-trpc@0.7.0
16+
- @badaitech/badai-api@0.7.0
17+
318
## 0.6.46
419

520
### 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.6.46",
4+
"version": "0.7.0",
55
"private": false,
66
"description": "Chaingraph Execution Worker Service using DBOS for durable workflow execution",
77
"license": "BUSL-1.1",

apps/chaingraph-frontend/CHANGELOG.md

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

3+
## 0.7.0
4+
5+
### Minor Changes
6+
7+
- Global frontend optimizations, and new features
8+
9+
### Patch Changes
10+
11+
- Updated dependencies
12+
- @badaitech/chaingraph-executor@0.7.0
13+
- @badaitech/chaingraph-nodes@0.7.0
14+
- @badaitech/chaingraph-types@0.7.0
15+
- @badaitech/chaingraph-trpc@0.7.0
16+
- @badaitech/badai-api@0.7.0
17+
318
## 0.6.46
419

520
### Patch Changes

apps/chaingraph-frontend/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-frontend",
33
"type": "module",
4-
"version": "0.6.46",
4+
"version": "0.7.0",
55
"private": false,
66
"description": "Frontend application for the Chaingraph project",
77
"license": "BUSL-1.1",

apps/chaingraph-frontend/src/components/flow/edges/AnimatedEdge.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import { BaseEdge } from '@xyflow/react'
1111
import { useUnit } from 'effector-react'
1212
import { motion } from 'framer-motion'
1313
import React, { useCallback, useMemo, useState } from 'react'
14+
import { calculateNodeDepth, getAbsoluteNodePosition } from '@/store/edges/anchor-coordinates'
1415
import { addAnchorNode } from '@/store/edges/anchor-nodes'
15-
import { getAbsoluteNodePosition, calculateNodeDepth } from '@/store/edges/anchor-coordinates'
1616
import { useAnchorNodePositions } from '@/store/edges/hooks/useAnchorNodePositions'
1717
import { $selectedEdgeId } from '@/store/edges/selection'
1818
import { $groupNodes, $nodePositionData } from '@/store/nodes/derived-stores'
@@ -94,7 +94,8 @@ export function AnimatedEdge({
9494
for (const [nodeId, groupData] of groupNodes) {
9595
// Get absolute position via existing helper
9696
const absPos = getAbsoluteNodePosition(nodeId, nodePositionData)
97-
if (!absPos) continue
97+
if (!absPos)
98+
continue
9899

99100
const isInside = x >= absPos.x
100101
&& x <= absPos.x + groupData.dimensions.width
@@ -109,7 +110,8 @@ export function AnimatedEdge({
109110
}
110111
}
111112

112-
if (matchingGroups.length === 0) return null
113+
if (matchingGroups.length === 0)
114+
return null
113115

114116
// Return deepest (most nested) group
115117
matchingGroups.sort((a, b) => b.depth - a.depth)

apps/chaingraph-frontend/src/components/flow/edges/FlowEdge.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import { useUnit } from 'effector-react'
1111
import { motion } from 'framer-motion'
1212
import React, { memo, useCallback, useEffect, useMemo, useRef, useState } from 'react'
1313
import { useTheme } from '@/components/theme/hooks/useTheme'
14+
import { calculateNodeDepth, getAbsoluteNodePosition } from '@/store/edges/anchor-coordinates'
1415
import { addAnchorNode } from '@/store/edges/anchor-nodes'
15-
import { getAbsoluteNodePosition, calculateNodeDepth } from '@/store/edges/anchor-coordinates'
1616
import { useAnchorNodePositions } from '@/store/edges/hooks/useAnchorNodePositions'
1717
import { $selectedEdgeId } from '@/store/edges/selection'
1818
import { $groupNodes, $nodePositionData } from '@/store/nodes/derived-stores'
@@ -284,7 +284,8 @@ export const FlowEdge = memo(({
284284
for (const [nodeId, groupData] of groupNodes) {
285285
// Get absolute position via existing helper
286286
const absPos = getAbsoluteNodePosition(nodeId, nodePositionData)
287-
if (!absPos) continue
287+
if (!absPos)
288+
continue
288289

289290
const isInside = x >= absPos.x
290291
&& x <= absPos.x + groupData.dimensions.width
@@ -299,7 +300,8 @@ export const FlowEdge = memo(({
299300
}
300301
}
301302

302-
if (matchingGroups.length === 0) return null
303+
if (matchingGroups.length === 0)
304+
return null
303305

304306
// Return deepest (most nested) group
305307
matchingGroups.sort((a, b) => b.depth - a.depth)

0 commit comments

Comments
 (0)