omp-fabric 1.18.0 → 1.18.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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.18.2
4
+
5
+ ### Fixed
6
+
7
+ - Closing a session no longer reports `handler timed out after 2000ms`. Teardown awaited two things without a bound: maintenance that shutdown had just aborted, and an entropy compile in flight. A summary model call can hold its side for as long as its own timeout allows, so a session closed shortly after a turn spent that wait inside the host's 2-second teardown budget. Both now wait briefly and then detach, and the ledger closes when the aborted work finally unwinds.
8
+
9
+ ## 1.18.1
10
+
11
+ ### Changed
12
+
13
+ - Summary descent asks the same active-branch predicate every other call site asks. It had expressed the rule a second way, treating a missing branch binding as permission where the rest of the adapter treats it as refusal. The divergence was unreachable, because `expandSummary` refuses a missing binding first and the binding stopped resolving by session id in 1.18.0, so no behaviour changes.
14
+
3
15
  ## 1.18.0
4
16
 
5
17
  ### Fixed
@@ -712,12 +712,9 @@ var LcmMemoryAdapter = class {
712
712
  unavailable += 1;
713
713
  continue;
714
714
  }
715
- if (branches === "active") {
716
- const active = activeSourceSet(activeBinding(this.options, child.sessionId));
717
- if (active && child.sources.some((source) => !active.has(sourceKey(source.entryId, source.contentHash)))) {
718
- unavailable += 1;
719
- continue;
720
- }
715
+ if (branches === "active" && child.sources.some((source) => !activeAllowed(branches, activeBinding(this.options, child.sessionId), sourceKey(source.entryId, source.contentHash)).allowed)) {
716
+ unavailable += 1;
717
+ continue;
721
718
  }
722
719
  items.push({
723
720
  entryId: child.nodeId,
@@ -2470,4 +2467,4 @@ export {
2470
2467
  normalizeMemoryArgs,
2471
2468
  MemoryProvider
2472
2469
  };
2473
- //# sourceMappingURL=chunk-I3XEFTXH.js.map
2470
+ //# sourceMappingURL=chunk-N5DHCLLX.js.map