@aion0/forge 0.5.18 → 0.5.19
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/.forge/mcp.json +1 -1
- package/RELEASE_NOTES.md +4 -12
- package/lib/workspace/orchestrator.ts +6 -3
- package/next-env.d.ts +1 -1
- package/package.json +1 -1
package/.forge/mcp.json
CHANGED
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,19 +1,11 @@
|
|
|
1
|
-
# Forge v0.5.
|
|
1
|
+
# Forge v0.5.19
|
|
2
2
|
|
|
3
3
|
Released: 2026-04-01
|
|
4
4
|
|
|
5
|
-
## Changes since v0.5.
|
|
5
|
+
## Changes since v0.5.18
|
|
6
6
|
|
|
7
7
|
### Bug Fixes
|
|
8
|
-
-
|
|
9
|
-
- fix: after hook done, suppress extends until file stops changing
|
|
10
|
-
- fix: warmup back to 7 polls (21s)
|
|
11
|
-
- fix: only start session monitor on new tmux creation, not existing
|
|
12
|
-
- fix: reduce warmup from 7 polls (21s) to 4 polls (12s)
|
|
13
|
-
- fix: resetState doesn't reset warmupCount, only startMonitoring does
|
|
8
|
+
- fix: session monitor also reads fixedSession from file, not dynamic import
|
|
14
9
|
|
|
15
|
-
### Other
|
|
16
|
-
- Revert "fix: after hook done, suppress extends until file stops changing"
|
|
17
10
|
|
|
18
|
-
|
|
19
|
-
**Full Changelog**: https://github.com/aiwatching/forge/compare/v0.5.17...v0.5.18
|
|
11
|
+
**Full Changelog**: https://github.com/aiwatching/forge/compare/v0.5.18...v0.5.19
|
|
@@ -1175,11 +1175,14 @@ export class WorkspaceOrchestrator extends EventEmitter {
|
|
|
1175
1175
|
|
|
1176
1176
|
if (config.primary) {
|
|
1177
1177
|
try {
|
|
1178
|
-
const
|
|
1179
|
-
|
|
1178
|
+
const psPath = join(homedir(), '.forge', 'data', 'project-sessions.json');
|
|
1179
|
+
if (existsSync(psPath)) {
|
|
1180
|
+
const psData = JSON.parse(readFileSync(psPath, 'utf-8'));
|
|
1181
|
+
sessionId = psData[this.projectPath];
|
|
1182
|
+
}
|
|
1180
1183
|
console.log(`[session-monitor] ${config.label}: primary fixedSession=${sessionId || 'NONE'}`);
|
|
1181
1184
|
} catch (err: any) {
|
|
1182
|
-
console.log(`[session-monitor] ${config.label}: failed to
|
|
1185
|
+
console.log(`[session-monitor] ${config.label}: failed to read fixedSession: ${err.message}`);
|
|
1183
1186
|
}
|
|
1184
1187
|
} else {
|
|
1185
1188
|
sessionId = config.boundSessionId;
|
package/next-env.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="next" />
|
|
2
2
|
/// <reference types="next/image-types/global" />
|
|
3
|
-
import "./.next/
|
|
3
|
+
import "./.next/types/routes.d.ts";
|
|
4
4
|
|
|
5
5
|
// NOTE: This file should not be edited
|
|
6
6
|
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
|
package/package.json
CHANGED