@modelprofile.com/flexharness 4.0.0 → 4.0.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 +17 -0
- package/dist_ts/00_commitinfo_data.js +1 -1
- package/dist_ts/classes.flexharness.js +3 -3
- package/dist_ts/interfaces.d.ts +5 -1
- package/dist_ts/interfaces.js +3 -3
- package/package.json +1 -1
- package/readme.md +2 -2
- package/ts/00_commitinfo_data.ts +1 -1
- package/ts/classes.flexharness.ts +10 -2
- package/ts/interfaces.ts +8 -2
package/changelog.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2026-08-14 - 4.0.2
|
|
4
|
+
|
|
5
|
+
### Fixes
|
|
6
|
+
|
|
7
|
+
- pass session generation to project management store loads (project-management)
|
|
8
|
+
- Expose IFlexSessionGeneration and add it as an optional third argument to IFlexProjectManagementStore.load.
|
|
9
|
+
- Supply a frozen current generation when FlexHarness loads project management records for state reloads and tombstone cleanup.
|
|
10
|
+
- Document and test compatibility with existing two-argument callers and stores.
|
|
11
|
+
|
|
12
|
+
## 2026-08-14 - 4.0.1
|
|
13
|
+
|
|
14
|
+
### Fixes
|
|
15
|
+
|
|
16
|
+
- preserve large controller scratchpads in project-management state (project-management)
|
|
17
|
+
- Increase the project scratchpad limit to 128 KiB and the serialized snapshot limit to 1 MiB so worst-case JSON escaping remains valid.
|
|
18
|
+
- Add coverage for maximum UTF-8 and escaped scratchpad payloads.
|
|
19
|
+
|
|
3
20
|
## 2026-08-14 - 4.0.0
|
|
4
21
|
|
|
5
22
|
### Breaking Changes
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@modelprofile.com/flexharness',
|
|
6
|
-
version: '4.0.
|
|
6
|
+
version: '4.0.2',
|
|
7
7
|
description: 'Provider-neutral model-session runtime with durable history, permissions, typed events, and pluggable local or remote tool execution.'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSwrQkFBK0I7SUFDckMsT0FBTyxFQUFFLE9BQU87SUFDaEIsV0FBVyxFQUFFLHVJQUF1STtDQUNySixDQUFBIn0=
|