@modelprofile.com/flexharness 5.3.3 → 5.4.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 +9 -0
- package/dist_ts/00_commitinfo_data.js +1 -1
- package/dist_ts/classes.flexharness.d.ts +1 -0
- package/dist_ts/classes.flexharness.js +5 -3
- package/dist_ts/interfaces.d.ts +5 -0
- package/dist_ts/utils.harnessoptions.d.ts +1 -0
- package/dist_ts/utils.harnessoptions.js +7 -1
- package/package.json +4 -4
- package/readme.hints.md +1 -0
- package/readme.md +1 -1
- package/ts/00_commitinfo_data.ts +1 -1
- package/ts/classes.flexharness.ts +4 -1
- package/ts/interfaces.ts +5 -0
- package/ts/utils.harnessoptions.ts +14 -0
package/changelog.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2026-09-02 - 5.4.0
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- add configurable reversion maintenance timeout (reversion)
|
|
8
|
+
- Add a top-level reversionMaintenanceTimeoutMs harness option with bounded positive safe-integer validation up to 30 minutes.
|
|
9
|
+
- Use the new timeout for turn-reversion inspection, recovery, finalization, and release maintenance signals before falling back to the legacy generation lease cleanup timeout and 30 second default.
|
|
10
|
+
- Update documentation and tests for the new timeout behavior and refreshed dependency expectations.
|
|
11
|
+
|
|
3
12
|
## 2026-09-01 - 5.3.3
|
|
4
13
|
|
|
5
14
|
### Fixes
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@modelprofile.com/flexharness',
|
|
6
|
-
version: '5.
|
|
6
|
+
version: '5.4.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=
|
|
@@ -14,6 +14,7 @@ export declare class FlexHarness<TScope = unknown> {
|
|
|
14
14
|
private readonly callbackLimits;
|
|
15
15
|
private readonly promptQueueLimits;
|
|
16
16
|
private readonly reversionLimits;
|
|
17
|
+
private readonly reversionMaintenanceTimeoutMs;
|
|
17
18
|
private readonly turnReversionProvider;
|
|
18
19
|
private readonly reversionPolicy;
|
|
19
20
|
private readonly externalErrorProjector?;
|