@aion0/forge 0.9.10 → 0.9.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/RELEASE_NOTES.md +3 -7
- package/components/PipelineView.tsx +1 -1
- package/package.json +1 -1
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,12 +1,8 @@
|
|
|
1
|
-
# Forge v0.9.
|
|
1
|
+
# Forge v0.9.11
|
|
2
2
|
|
|
3
3
|
Released: 2026-05-26
|
|
4
4
|
|
|
5
|
-
## Changes since v0.9.
|
|
5
|
+
## Changes since v0.9.10
|
|
6
6
|
|
|
7
|
-
### Other
|
|
8
|
-
- docs(pipelines): >→| switch audit checklist + v0.7.x case study
|
|
9
|
-
- fix(pipeline): for_each retry rewinds currentIndex past finalize
|
|
10
7
|
|
|
11
|
-
|
|
12
|
-
**Full Changelog**: https://github.com/aiwatching/forge/compare/v0.9.9...v0.9.10
|
|
8
|
+
**Full Changelog**: https://github.com/aiwatching/forge/compare/v0.9.10...v0.9.11
|
|
@@ -88,7 +88,7 @@ interface Workflow {
|
|
|
88
88
|
}
|
|
89
89
|
|
|
90
90
|
interface PipelineNodeState {
|
|
91
|
-
status: 'pending' | 'running' | 'done' | 'failed' | 'skipped';
|
|
91
|
+
status: 'pending' | 'running' | 'done' | 'failed' | 'skipped' | 'cancelled';
|
|
92
92
|
taskId?: string;
|
|
93
93
|
outputs: Record<string, string>;
|
|
94
94
|
iterations: number;
|
package/package.json
CHANGED