@aion0/forge 0.10.56 → 0.10.57
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 +4 -15
- package/lib/agents/known-models.ts +3 -1
- package/package.json +1 -1
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,19 +1,8 @@
|
|
|
1
|
-
# Forge v0.10.
|
|
1
|
+
# Forge v0.10.57
|
|
2
2
|
|
|
3
|
-
Released: 2026-06-
|
|
3
|
+
Released: 2026-06-10
|
|
4
4
|
|
|
5
|
-
## Changes since v0.10.
|
|
5
|
+
## Changes since v0.10.56
|
|
6
6
|
|
|
7
|
-
### Other
|
|
8
|
-
- revert(pipeline): retryNode strict semantics — don't touch 'skipped' nodes
|
|
9
|
-
- fix(pipeline): retryNode walks upstream — auto-includes failed/skipped chain
|
|
10
|
-
- fix(tasks): reconcile orphaned 'running' rows at boot; pipeline retry accepts 'skipped'
|
|
11
|
-
- fix(chat): runTurn endTurn always runs — outer try/finally wraps full body
|
|
12
|
-
- fix(chat): atomic turn claim — close race where two inputs both fork runTurn
|
|
13
|
-
- feat(pipeline-ui): retry button on failed forEach iteration nodes
|
|
14
|
-
- refactor(chat): single input queue — all sources route through enqueueChatInput
|
|
15
|
-
- fix(chat): watch-triggered runChat merges into running turn, no concurrent fork
|
|
16
|
-
- feat(activity): running_tasks in summary API + taskId/pipeline deeplinks
|
|
17
7
|
|
|
18
|
-
|
|
19
|
-
**Full Changelog**: https://github.com/aiwatching/forge/compare/v0.10.55...v0.10.56
|
|
8
|
+
**Full Changelog**: https://github.com/aiwatching/forge/compare/v0.10.56...v0.10.57
|
|
@@ -14,7 +14,7 @@ import type { ModelsRegistry } from '../public-info/types';
|
|
|
14
14
|
|
|
15
15
|
export const KNOWN_MODELS_FALLBACK: ModelsRegistry = {
|
|
16
16
|
version: 1,
|
|
17
|
-
updatedAt: '2026-
|
|
17
|
+
updatedAt: '2026-06-10',
|
|
18
18
|
note: 'Bundled fallback — actual current list lives in forge-public-info/models/registry.json',
|
|
19
19
|
agents: {
|
|
20
20
|
'claude-code': {
|
|
@@ -22,11 +22,13 @@ export const KNOWN_MODELS_FALLBACK: ModelsRegistry = {
|
|
|
22
22
|
default: 'claude-sonnet-4-6',
|
|
23
23
|
aliases: [
|
|
24
24
|
{ id: 'default', label: 'default (CLI decides)' },
|
|
25
|
+
{ id: 'fable', label: 'fable (alias)' },
|
|
25
26
|
{ id: 'sonnet', label: 'sonnet (alias)' },
|
|
26
27
|
{ id: 'opus', label: 'opus (alias)' },
|
|
27
28
|
{ id: 'haiku', label: 'haiku (alias)' },
|
|
28
29
|
],
|
|
29
30
|
models: [
|
|
31
|
+
{ id: 'claude-fable-5', label: 'Fable 5', tier: 'premium' },
|
|
30
32
|
{ id: 'claude-opus-4-8', label: 'Opus 4.8', tier: 'premium' },
|
|
31
33
|
{ id: 'claude-sonnet-4-6', label: 'Sonnet 4.6', tier: 'standard', default: true },
|
|
32
34
|
{ id: 'claude-haiku-4-5-20251001', label: 'Haiku 4.5', tier: 'fast' },
|
package/package.json
CHANGED