@modelprofile.com/browser-runtime 5.5.1 → 5.6.0

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,14 @@
1
1
  # Changelog
2
2
 
3
+ ## 2026-09-14 - 5.6.0
4
+
5
+ ### Features
6
+
7
+ - add opt-in hover move coalescing (input)
8
+ - Add coalesceHoverMoves operation option for unpressed dispatchMouse move events.
9
+ - Reject replaced queued hover operations with SUPERSEDED.
10
+ - Preserve drag paths, held buttons, modifier changes, other participants, and default per-operation delivery.
11
+
3
12
  ## 2026-09-14 - 5.5.1
4
13
 
5
14
  ### Fixes
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@modelprofile.com/browser-runtime',
6
- version: '5.5.1',
6
+ version: '5.6.0',
7
7
  description: 'Parent-owned, resource-centric Chromium runtime with revisioned attachment fencing, authenticated human and agent control, fail-closed egress, bounded artifacts, and Flex/MCP adapters.'
8
8
  };
9
9
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSxtQ0FBbUM7SUFDekMsT0FBTyxFQUFFLE9BQU87SUFDaEIsV0FBVyxFQUFFLDBMQUEwTDtDQUN4TSxDQUFBIn0=
@@ -59,6 +59,7 @@ export interface IBrowserRuntimeLeaseRenewalOptions {
59
59
  expiresInMs?: number;
60
60
  }
61
61
  interface IOperationRecord {
62
+ hoverKey?: string;
62
63
  operationId: string;
63
64
  lease: ILeaseRecord;
64
65
  controller: AbortController;
@@ -69,6 +70,7 @@ interface IOperationRecord {
69
70
  promise: Promise<void>;
70
71
  }
71
72
  interface IQueuedOperationRecord {
73
+ hoverKey?: string;
72
74
  operationId: string;
73
75
  lease: ILeaseRecord;
74
76
  action: string;