omp-fabric 1.8.1 → 1.8.3
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 +13 -0
- package/dist/chunks/{chunk-2ZEMWIHZ.js → chunk-4GY2E3MW.js} +2 -2
- package/dist/chunks/{chunk-EQSL47QL.js → chunk-FBFVZZH4.js} +1 -1
- package/dist/chunks/{chunk-EQSL47QL.js.map → chunk-FBFVZZH4.js.map} +2 -2
- package/dist/chunks/{chunk-JMYHQUJQ.js → chunk-R3EKDHHD.js} +2 -2
- package/dist/chunks/{chunk-BAM2YKP5.js → chunk-TU5JJMXB.js} +2 -2
- package/dist/chunks/{chunk-46LYJKI5.js → chunk-Z7CCIIEG.js} +2 -2
- package/dist/compaction/hook.js +1 -1
- package/dist/compaction/lcm-maintenance.d.ts +2 -1
- package/dist/compaction/lcm-maintenance.d.ts.map +1 -1
- package/dist/compaction/lcm-runtime.d.ts.map +1 -1
- package/dist/compaction/lcm-runtime.js +26 -2
- package/dist/compaction/lcm-runtime.js.map +2 -2
- package/dist/compaction/projections.d.ts +0 -5
- package/dist/compaction/projections.d.ts.map +1 -1
- package/dist/fabric-runtime-state.js +4 -4
- package/dist/index.js +4 -4
- package/dist/index.js.map +2 -2
- package/dist/residency/host.js +4 -4
- package/dist/residency/omp-entry.js +4 -4
- package/package.json +1 -1
- package/dist/compaction/qa.d.ts +0 -27
- package/dist/compaction/qa.d.ts.map +0 -1
- /package/dist/chunks/{chunk-2ZEMWIHZ.js.map → chunk-4GY2E3MW.js.map} +0 -0
- /package/dist/chunks/{chunk-JMYHQUJQ.js.map → chunk-R3EKDHHD.js.map} +0 -0
- /package/dist/chunks/{chunk-BAM2YKP5.js.map → chunk-TU5JJMXB.js.map} +0 -0
- /package/dist/chunks/{chunk-46LYJKI5.js.map → chunk-Z7CCIIEG.js.map} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.8.3
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- The compaction line in `/fabric status` read `6/24 model summaries`, which looks like a quota of 24. It was the share of ready nodes the model wrote, and model calls carry no quota. The line now reads `24 nodes (6 by model, 18 excerpt)`.
|
|
8
|
+
|
|
9
|
+
## 1.8.2
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Upgrading a deterministic node left the text readers actually see unchanged. Context assembly serves the frontier, and a leaf folded into a condensed parent is no longer on it, so replacing that leaf's excerpt with a model summary improved nothing while spending a model call; the parent kept prose written from the excerpt and, carrying a real model hash, was never reconsidered. An upgrade now reopens the ready ancestors of the node it improved, so the summary that reaches the model is rebuilt from the upgraded child.
|
|
14
|
+
- The Test workflow keyed its concurrency group by branch, so a second commit cancelled the run still verifying the first. The release gate reads the run for the tagged commit and would have refused a cancelled one, which this repository's push-then-tag rhythm makes likely. The group is keyed by commit.
|
|
15
|
+
|
|
3
16
|
## 1.8.1
|
|
4
17
|
|
|
5
18
|
### Changed
|
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
buildThinkingDigest,
|
|
13
13
|
snapshotHandoffSession,
|
|
14
14
|
thinkingTransferPolicy
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-R3EKDHHD.js";
|
|
16
16
|
import {
|
|
17
17
|
isFabricThinking
|
|
18
18
|
} from "./chunk-JSBTB3P6.js";
|
|
@@ -2803,4 +2803,4 @@ export {
|
|
|
2803
2803
|
resolveFabricIdentity,
|
|
2804
2804
|
MainAgentController
|
|
2805
2805
|
};
|
|
2806
|
-
//# sourceMappingURL=chunk-
|
|
2806
|
+
//# sourceMappingURL=chunk-4GY2E3MW.js.map
|