agl 22.0.0 → 22.0.2
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/changelog.md +20 -0
- package/dist_serve/bundle.js +520 -509
- package/dist_ts/00_commitinfo_data.js +1 -1
- package/dist_ts/classes.authstore.d.ts +1 -2
- package/dist_ts/classes.authstore.js +1 -6
- package/dist_ts/classes.cli.d.ts +4 -2
- package/dist_ts/classes.cli.js +161 -68
- package/dist_ts/classes.controller.js +68 -30
- package/dist_ts/classes.upgradecoordinator.d.ts +39 -1
- package/dist_ts/classes.upgradecoordinator.js +740 -74
- package/dist_ts/classes.upgradetransaction.d.ts +68 -1
- package/dist_ts/classes.upgradetransaction.js +383 -223
- package/dist_ts_migration/classes.documentmigrationrunner.js +3 -1
- package/dist_ts_migration/index.d.ts +2 -0
- package/dist_ts_migration/index.js +3 -1
- package/dist_ts_migration/v24_legacyterminallayout.d.ts +18 -0
- package/dist_ts_migration/v24_legacyterminallayout.js +79 -0
- package/dist_ts_migration/v24_legacyterminallayoutmigration.d.ts +6 -0
- package/dist_ts_migration/v24_legacyterminallayoutmigration.js +67 -0
- package/package.json +1 -1
- package/readme.md +255 -378
- package/ts/00_commitinfo_data.ts +1 -1
- package/ts/classes.authstore.ts +0 -15
- package/ts/classes.cli.ts +184 -83
- package/ts/classes.controller.ts +79 -33
- package/ts/classes.upgradecoordinator.ts +876 -74
- package/ts/classes.upgradetransaction.ts +574 -250
- package/ts_migration/classes.documentmigrationrunner.ts +2 -0
- package/ts_migration/index.ts +2 -0
- package/ts_migration/v24_legacyterminallayout.ts +131 -0
- package/ts_migration/v24_legacyterminallayoutmigration.ts +88 -0
- package/ts_web/00_commitinfo_data.ts +1 -1
- package/ts_web/elements.harnesscontrollerapp.ts +32 -2
package/changelog.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2026-08-21 - 22.0.2
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- add resilient upgrade recovery and registry override support (upgrade)
|
|
8
|
+
- Adds --registry support for AGL upgrades with URL normalization and transaction retention.
|
|
9
|
+
- Allows eligible stalled or orphaned upgrade transactions to be adopted and relaunched safely.
|
|
10
|
+
- Hardens upgrade worker handoff, acknowledgement, lock transfer, and candidate cleanup paths.
|
|
11
|
+
- Updates upgrade status reporting to resolve recovered package-transition target versions.
|
|
12
|
+
|
|
13
|
+
## 2026-08-21 - 22.0.1
|
|
14
|
+
|
|
15
|
+
### Fixes
|
|
16
|
+
|
|
17
|
+
- remove legacy terminal layout references and retry stale archive enumerations (sessions)
|
|
18
|
+
- Add a v24 persisted-state migration that removes historical terminal IDs from session groups and ungrouped layouts while preserving ordering and revisions.
|
|
19
|
+
- Fail closed on invalid or concurrently changed layout rows before replacing migrated documents.
|
|
20
|
+
- Invalidate shared harness session enumerations during archive finalization and use OpenCode session snapshots for archive preflight.
|
|
21
|
+
- Show project-scoped session layout load errors in the sidebar without dropping confirmed groups.
|
|
22
|
+
|
|
3
23
|
## 2026-08-20 - 22.0.0
|
|
4
24
|
|
|
5
25
|
### Breaking Changes
|