@modelprofile.com/browser-runtime 5.6.0 → 5.7.1
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 +12 -0
- package/dist_ts/00_commitinfo_data.js +1 -1
- package/dist_ts/classes.runtime.d.ts +1 -0
- package/dist_ts/classes.runtime.js +19 -2
- package/dist_ts/confinement.js +24 -3
- package/dist_ts/interfaces.d.ts +1 -0
- package/package.json +2 -2
- package/readme.md +13 -0
- package/ts/00_commitinfo_data.ts +1 -1
- package/ts/classes.runtime.ts +20 -1
- package/ts/confinement.ts +27 -2
- package/ts/interfaces.ts +1 -0
package/changelog.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2026-09-14 - 5.7.1
|
|
4
|
+
|
|
5
|
+
### Fixes
|
|
6
|
+
|
|
7
|
+
- validate confinement across native presentation changes (video)
|
|
8
|
+
|
|
9
|
+
## 2026-09-14 - 5.7.0
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
- propagate native presentation and participant timing boundaries (video)
|
|
14
|
+
|
|
3
15
|
## 2026-09-14 - 5.6.0
|
|
4
16
|
|
|
5
17
|
### Features
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@modelprofile.com/browser-runtime',
|
|
6
|
-
version: '5.
|
|
6
|
+
version: '5.7.1',
|
|
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=
|
|
@@ -150,6 +150,7 @@ interface IResourceSlot {
|
|
|
150
150
|
profileDirectory?: string;
|
|
151
151
|
unsubscribeSession?: () => void;
|
|
152
152
|
leases: Map<string, ILeaseRecord>;
|
|
153
|
+
lastMouseTimestampLeaseId?: string;
|
|
153
154
|
operations: Set<IOperationRecord>;
|
|
154
155
|
inputCleanup?: {
|
|
155
156
|
session: ILiveBrowserSessionLike;
|