@modelprofile.com/flexharness 3.0.0 → 3.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 +17 -0
- package/dist_ts/00_commitinfo_data.js +1 -1
- package/dist_ts/classes.flexharness.js +10 -1
- package/dist_ts/interfaces.d.ts +4 -0
- package/dist_ts_migration/v3_legacyflexharness.js +42 -1
- package/package.json +1 -1
- package/readme.md +3 -3
- package/ts/00_commitinfo_data.ts +1 -1
- package/ts/classes.flexharness.ts +12 -0
- package/ts/interfaces.ts +4 -0
- package/ts_migration/v3_legacyflexharness.ts +51 -0
package/changelog.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2026-08-11 - 3.1.0
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- expose authoritative source coordinates on part events (events)
|
|
8
|
+
- Add zero-based message and part indexes to started, delta, and completed part events.
|
|
9
|
+
- Keep coordinates stable for every update to a part and across later runs.
|
|
10
|
+
|
|
11
|
+
## 2026-08-09 - 3.0.1
|
|
12
|
+
|
|
13
|
+
### Fixes
|
|
14
|
+
|
|
15
|
+
- repair crash-interrupted legacy runs during migration (migration)
|
|
16
|
+
- Mark running or waiting legacy sessions idle before writing migrated snapshots
|
|
17
|
+
- Cancel interrupted streaming messages and running tool or reasoning parts with deterministic recovery timestamps
|
|
18
|
+
- Document crash-interrupted migration repair and cover deterministic reruns with tests
|
|
19
|
+
|
|
3
20
|
## 2026-08-09 - 3.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: '3.
|
|
6
|
+
version: '3.1.0',
|
|
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=
|