Skip to content

Commit 714a4b6

Browse files
committed
Merge branch 'main' into loops
2 parents 78b35d5 + 1c45288 commit 714a4b6

28 files changed

Lines changed: 7549 additions & 1670 deletions

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ jobs:
3636

3737
- uses: oven-sh/setup-bun@v2
3838
with:
39+
bun-version: latest
3940
registry-url: "https://registry.npmjs.org/"
4041

4142
- name: Install dependencies

bun.lock

Lines changed: 7366 additions & 1628 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/cli/CHANGELOG.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,31 @@
11
# @workglow/cli
22

3+
## 0.0.88
4+
5+
### Patch Changes
6+
7+
- Revert adding loop tasks, push other fixes
8+
- Updated dependencies
9+
- @workglow/ai-provider@0.0.88
10+
- @workglow/task-graph@0.0.88
11+
- @workglow/storage@0.0.88
12+
- @workglow/tasks@0.0.88
13+
- @workglow/test@0.0.88
14+
- @workglow/util@0.0.88
15+
- @workglow/ai@0.0.88
16+
317
## 0.0.87
418

519
### Patch Changes
620

7-
- Update supabase version and relax model config
21+
- bad version with loop not ready for prime time
822
- Updated dependencies
9-
- @workglow/task-graph@0.0.87
10-
- @workglow/storage@0.0.87
11-
- @workglow/test@0.0.87
1223
- @workglow/ai@0.0.87
1324
- @workglow/ai-provider@0.0.87
25+
- @workglow/storage@0.0.87
26+
- @workglow/task-graph@0.0.87
1427
- @workglow/tasks@0.0.87
28+
- @workglow/test@0.0.87
1529
- @workglow/util@0.0.87
1630

1731
## 0.0.86

examples/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@workglow/cli",
33
"type": "module",
4-
"version": "0.0.87",
4+
"version": "0.0.88",
55
"description": "Command-line interface example for Workglow, demonstrating how to build and run AI task pipelines from the terminal.",
66
"scripts": {
77
"dev": "concurrently -c 'auto' -n 'cli:' 'bun:dev-*'",

examples/web/CHANGELOG.md

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,37 @@
11
# @workglow/web
22

3+
## 0.0.88
4+
5+
### Patch Changes
6+
7+
- Revert adding loop tasks, push other fixes
8+
- Updated dependencies
9+
- @workglow/ai-provider@0.0.88
10+
- @workglow/task-graph@0.0.88
11+
- @workglow/job-queue@0.0.88
12+
- @workglow/storage@0.0.88
13+
- @workglow/sqlite@0.0.88
14+
- @workglow/debug@0.0.88
15+
- @workglow/tasks@0.0.88
16+
- @workglow/test@0.0.88
17+
- @workglow/util@0.0.88
18+
- @workglow/ai@0.0.88
19+
320
## 0.0.87
421

522
### Patch Changes
623

7-
- Update supabase version and relax model config
24+
- bad version with loop not ready for prime time
825
- Updated dependencies
9-
- @workglow/task-graph@0.0.87
10-
- @workglow/storage@0.0.87
11-
- @workglow/test@0.0.87
1226
- @workglow/ai@0.0.87
1327
- @workglow/ai-provider@0.0.87
1428
- @workglow/debug@0.0.87
1529
- @workglow/job-queue@0.0.87
1630
- @workglow/sqlite@0.0.87
31+
- @workglow/storage@0.0.87
32+
- @workglow/task-graph@0.0.87
1733
- @workglow/tasks@0.0.87
34+
- @workglow/test@0.0.87
1835
- @workglow/util@0.0.87
1936

2037
## 0.0.86

examples/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@workglow/web",
3-
"version": "0.0.87",
3+
"version": "0.0.88",
44
"type": "module",
55
"description": "Web interface example for Workglow, showcasing a React-based UI for building and visualizing AI task pipelines.",
66
"scripts": {

packages/ai-provider/CHANGELOG.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,27 @@
11
# @workglow/ai-provider
22

3+
## 0.0.88
4+
5+
### Patch Changes
6+
7+
- Revert adding loop tasks, push other fixes
8+
- Updated dependencies
9+
- @workglow/task-graph@0.0.88
10+
- @workglow/job-queue@0.0.88
11+
- @workglow/storage@0.0.88
12+
- @workglow/util@0.0.88
13+
- @workglow/ai@0.0.88
14+
315
## 0.0.87
416

517
### Patch Changes
618

7-
- Update supabase version and relax model config
19+
- bad version with loop not ready for prime time
820
- Updated dependencies
9-
- @workglow/task-graph@0.0.87
10-
- @workglow/storage@0.0.87
1121
- @workglow/ai@0.0.87
1222
- @workglow/job-queue@0.0.87
23+
- @workglow/storage@0.0.87
24+
- @workglow/task-graph@0.0.87
1325
- @workglow/util@0.0.87
1426

1527
## 0.0.86

packages/ai-provider/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@workglow/ai-provider",
33
"type": "module",
4-
"version": "0.0.87",
4+
"version": "0.0.88",
55
"description": "AI provider integrations for Workglow, supporting OpenAI, Hugging Face Transformers, MediaPipe, and GGML models.",
66
"scripts": {
77
"watch": "concurrently -c 'auto' 'bun:watch-*'",

packages/ai/CHANGELOG.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,27 @@
11
# @workglow/ai
22

3+
## 0.0.88
4+
5+
### Patch Changes
6+
7+
- Revert adding loop tasks, push other fixes
8+
- Updated dependencies
9+
- @workglow/task-graph@0.0.88
10+
- @workglow/job-queue@0.0.88
11+
- @workglow/dataset@0.0.88
12+
- @workglow/storage@0.0.88
13+
- @workglow/util@0.0.88
14+
315
## 0.0.87
416

517
### Patch Changes
618

7-
- Update supabase version and relax model config
19+
- bad version with loop not ready for prime time
820
- Updated dependencies
9-
- @workglow/task-graph@0.0.87
1021
- @workglow/dataset@0.0.87
11-
- @workglow/storage@0.0.87
1222
- @workglow/job-queue@0.0.87
23+
- @workglow/storage@0.0.87
24+
- @workglow/task-graph@0.0.87
1325
- @workglow/util@0.0.87
1426

1527
## 0.0.86

packages/ai/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@workglow/ai",
33
"type": "module",
4-
"version": "0.0.87",
4+
"version": "0.0.88",
55
"description": "Core AI functionality for Workglow, including task execution, model management, and AI pipeline orchestration.",
66
"scripts": {
77
"watch": "concurrently -c 'auto' 'bun:watch-*'",

0 commit comments

Comments
 (0)