@modelprofile.com/browser-runtime 4.0.0 → 4.1.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 +7 -0
- package/dist_ts/00_commitinfo_data.js +1 -1
- package/package.json +3 -3
- package/readme.md +2 -2
- package/ts/00_commitinfo_data.ts +1 -1
package/changelog.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2026-08-28 - 4.1.0
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- support Node.js 26 on Linux x64 (runtime)
|
|
8
|
+
- Upgrade SmartIPC to 2.5 for its packaged Rust `NamedMutex` helper and remove the obsolete native-addon build approval.
|
|
9
|
+
|
|
3
10
|
## 2026-08-28 - 4.0.0
|
|
4
11
|
|
|
5
12
|
### Breaking Changes
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@modelprofile.com/browser-runtime',
|
|
6
|
-
version: '4.
|
|
6
|
+
version: '4.1.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=
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@modelprofile.com/browser-runtime",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"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.",
|
|
6
6
|
"main": "dist_ts/index.js",
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"url": "https://community.foss.global/"
|
|
24
24
|
},
|
|
25
25
|
"engines": {
|
|
26
|
-
"node": ">=24 <
|
|
26
|
+
"node": ">=24 <27"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@modelprofile.com/flexharness": "^4.0.0",
|
|
30
30
|
"@push.rocks/smartagent": "^4.8.0",
|
|
31
|
-
"@push.rocks/smartipc": "^2.
|
|
31
|
+
"@push.rocks/smartipc": "^2.5.0",
|
|
32
32
|
"@push.rocks/smartmcp": "^0.3.0",
|
|
33
33
|
"@push.rocks/smartpuppeteer": "^2.6.0",
|
|
34
34
|
"ipaddr.js": "^2.5.0"
|
package/readme.md
CHANGED
|
@@ -12,8 +12,8 @@ For reporting bugs, issues, or security vulnerabilities, please visit [community
|
|
|
12
12
|
pnpm add @modelprofile.com/browser-runtime
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
-
The runtime requires Node.js 24
|
|
16
|
-
The `NamedMutex` backend
|
|
15
|
+
The runtime requires Node.js 24 through 26 on a non-root Linux x64 host. Production browser sessions require a sandbox-capable Chromium installation.
|
|
16
|
+
The `NamedMutex` backend uses the statically linked Rust helper packaged with `@push.rocks/smartipc`; startup fails closed with `FENCED` when the helper is unavailable.
|
|
17
17
|
|
|
18
18
|
## Resource Model
|
|
19
19
|
|
package/ts/00_commitinfo_data.ts
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@modelprofile.com/browser-runtime',
|
|
6
|
-
version: '4.
|
|
6
|
+
version: '4.1.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
|
}
|