@wrongstack/governance 0.316.1 → 0.317.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.
Files changed (2) hide show
  1. package/dist/index.js +2 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -1449,7 +1449,8 @@ var GovernanceCredentialLeaseController = class {
1449
1449
  }
1450
1450
  this.state = "scheduled";
1451
1451
  this.stopReason = void 0;
1452
- this.schedule(Math.max(0, this.expiresAtMs - this.renewBeforeMs - now));
1452
+ const delay2 = Math.min(2147483647, Math.max(0, this.expiresAtMs - this.renewBeforeMs - now));
1453
+ this.schedule(delay2);
1453
1454
  }
1454
1455
  schedule(delayMs) {
1455
1456
  this.clearTimer();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wrongstack/governance",
3
- "version": "0.316.1",
3
+ "version": "0.317.0",
4
4
  "license": "MIT",
5
5
  "description": "Deterministic workflow contracts and transition policy for WrongStack orchestration.",
6
6
  "repository": {
@@ -27,7 +27,7 @@
27
27
  "README.md"
28
28
  ],
29
29
  "dependencies": {
30
- "@wrongstack/persistence": "0.316.1"
30
+ "@wrongstack/persistence": "0.317.0"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@types/node": "^26.2.0",