Skip to content

Commit 4908894

Browse files
committed
feat: Bump version to 0.2.0 and update changelog with minor and patch changes
1 parent e8107f9 commit 4908894

20 files changed

Lines changed: 343 additions & 61 deletions

File tree

.changeset/bitter-carrots-jog.md

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

.changeset/pre.json

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

.changeset/real-heads-design.md

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

.changeset/thirty-buckets-punch.md

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

.dockerignore

Lines changed: 158 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,158 @@
1+
# Dependencies
2+
node_modules/
3+
**/node_modules/
4+
.pnpm-store/
5+
6+
# Build outputs
7+
dist/
8+
build/
9+
out/
10+
.next/
11+
.turbo/
12+
**/dist/
13+
**/build/
14+
**/.turbo/
15+
16+
# Testing
17+
coverage/
18+
.nyc_output/
19+
**/coverage/
20+
**/.nyc_output/
21+
22+
# Development
23+
.env.local
24+
.env.development.local
25+
.env.test.local
26+
.env.production.local
27+
*.log
28+
npm-debug.log*
29+
yarn-debug.log*
30+
yarn-error.log*
31+
pnpm-debug.log*
32+
33+
# IDE
34+
.vscode/
35+
.idea/
36+
*.swp
37+
*.swo
38+
*.swn
39+
*.bak
40+
.DS_Store
41+
42+
# Git
43+
.git/
44+
.gitignore
45+
.gitattributes
46+
47+
# CI/CD
48+
.github/
49+
.gitlab-ci.yml
50+
.travis.yml
51+
52+
# Documentation
53+
*.md
54+
docs/
55+
LICENSE*
56+
CHANGELOG*
57+
58+
# Docker
59+
Dockerfile*
60+
docker-compose*.yml
61+
.dockerignore
62+
63+
# Temporary files
64+
tmp/
65+
temp/
66+
*.tmp
67+
*.temp
68+
.cache/
69+
70+
# OS files
71+
Thumbs.db
72+
desktop.ini
73+
74+
# Project specific
75+
.changeset/
76+
.husky/
77+
storybook-static/
78+
*.storybook.log
79+
.eslintcache
80+
.prettiercache
81+
82+
# Test files
83+
*.test.ts
84+
*.test.tsx
85+
*.spec.ts
86+
*.spec.tsx
87+
__tests__/
88+
e2e/
89+
90+
# Config files (keep only essential ones in image)
91+
.eslintrc*
92+
.prettierrc*
93+
vitest.config.*
94+
jest.config.*
95+
*.config.js
96+
*.config.ts
97+
!next.config.js
98+
!vite.config.ts
99+
!tsconfig.json
100+
!turbo.json
101+
102+
# Local dev files
103+
*.local
104+
local/
105+
.env
106+
107+
# Logs
108+
logs/
109+
*.log
110+
111+
# Editor directories and files
112+
.vscode/*
113+
!.vscode/extensions.json
114+
!.vscode/settings.json
115+
.idea
116+
*.suo
117+
*.ntvs*
118+
*.njsproj
119+
*.sln
120+
*.sw?
121+
122+
# macOS
123+
.DS_Store
124+
.AppleDouble
125+
.LSOverride
126+
127+
# Windows
128+
Thumbs.db
129+
ehthumbs.db
130+
Desktop.ini
131+
132+
# Linux
133+
*~
134+
.directory
135+
.Trash-*
136+
137+
# Package manager files
138+
yarn.lock
139+
package-lock.json
140+
141+
# Misc
142+
*.pem
143+
*.key
144+
*.crt
145+
*.p12
146+
.vercel
147+
.netlify
148+
149+
# Research and documentation files
150+
CLAUDE.md
151+
COMMIT_MESSAGE.md
152+
REFACTORING_PLAN.md
153+
research.md
154+
prompts/
155+
a.json
156+
a.txt
157+
asfasf.asfa
158+
mm.html

apps/chaingraph-backend/CHANGELOG.md

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

3+
## 0.2.0
4+
5+
### Minor Changes
6+
7+
- 2fbcfe4: Claude extended thinking with the tools usage. Execution storage with X-ray history. Secret node types.
8+
9+
### Patch Changes
10+
11+
- 2fbcfe4: DEV build
12+
- feat: Add DirectSecret types for various API keys and update SecretNode type
13+
- feat: Enhance node resizing logic with visibility and dimension checks
14+
- feat: Refactor node selection logic into a reusable hook and enhance copy/paste functionality
15+
- 2fbcfe4: feat: comprehensive copy-paste functionality with node cloning, deep structure handling, and improved execution performance
16+
- Updated dependencies [2fbcfe4]
17+
- Updated dependencies
18+
- Updated dependencies
19+
- Updated dependencies [2fbcfe4]
20+
- Updated dependencies
21+
- Updated dependencies [2fbcfe4]
22+
- @badaitech/chaingraph-nodes@0.2.0
23+
- @badaitech/chaingraph-types@0.2.0
24+
- @badaitech/chaingraph-trpc@0.2.0
25+
26+
## 0.2.0-dev.5
27+
28+
### Patch Changes
29+
30+
- feat: Refactor node selection logic into a reusable hook and enhance copy/paste functionality
31+
- Updated dependencies
32+
- @badaitech/chaingraph-nodes@0.2.0-dev.5
33+
- @badaitech/chaingraph-types@0.2.0-dev.5
34+
- @badaitech/chaingraph-trpc@0.2.0-dev.5
35+
336
## 0.2.0-dev.4
437

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

apps/chaingraph-frontend/CHANGELOG.md

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

3+
## 0.2.0
4+
5+
### Minor Changes
6+
7+
- 2fbcfe4: Claude extended thinking with the tools usage. Execution storage with X-ray history. Secret node types.
8+
9+
### Patch Changes
10+
11+
- 2fbcfe4: DEV build
12+
- feat: Add DirectSecret types for various API keys and update SecretNode type
13+
- feat: Enhance node resizing logic with visibility and dimension checks
14+
- feat: Refactor node selection logic into a reusable hook and enhance copy/paste functionality
15+
- 2fbcfe4: feat: comprehensive copy-paste functionality with node cloning, deep structure handling, and improved execution performance
16+
- Updated dependencies [2fbcfe4]
17+
- Updated dependencies
18+
- Updated dependencies
19+
- Updated dependencies [2fbcfe4]
20+
- Updated dependencies
21+
- Updated dependencies [2fbcfe4]
22+
- @badaitech/chaingraph-nodes@0.2.0
23+
- @badaitech/chaingraph-types@0.2.0
24+
- @badaitech/chaingraph-trpc@0.2.0
25+
- @badaitech/badai-api@0.2.0
26+
27+
## 0.2.0-dev.5
28+
29+
### Patch Changes
30+
31+
- feat: Refactor node selection logic into a reusable hook and enhance copy/paste functionality
32+
- Updated dependencies
33+
- @badaitech/chaingraph-nodes@0.2.0-dev.5
34+
- @badaitech/chaingraph-types@0.2.0-dev.5
35+
- @badaitech/chaingraph-trpc@0.2.0-dev.5
36+
- @badaitech/badai-api@0.2.0-dev.5
37+
338
## 0.2.0-dev.4
439

540
### 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.2.0-dev.4",
4+
"version": "0.2.0",
55
"private": false,
66
"description": "Frontend application for the Chaingraph project",
77
"license": "BUSL-1.1",

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",
33
"type": "module",
4-
"version": "0.2.0-dev.4",
4+
"version": "0.2.0",
55
"private": false,
66
"packageManager": "pnpm@10.11.1",
77
"license": "BUSL-1.1",

0 commit comments

Comments
 (0)