@rulvar/cli 1.99.0 → 1.99.1
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/dist/index.js +7 -4
- package/package.json +7 -7
package/dist/index.js
CHANGED
|
@@ -616,10 +616,13 @@ function createServer(options) {
|
|
|
616
616
|
* Appendix A (committed at M8 entry): concurrency defaults to 1 (one
|
|
617
617
|
* leased run per worker process; hosts scale out by adding workers,
|
|
618
618
|
* which the fencing epoch makes safe by construction); the renew
|
|
619
|
-
* cadence is ttl/3 with the reference ttl of 60000 ms.
|
|
620
|
-
*
|
|
621
|
-
*
|
|
622
|
-
*
|
|
619
|
+
* cadence is ttl/3 with the reference ttl of 60000 ms. Shared provider
|
|
620
|
+
* quota coordination ships as QuotaLimiter references (RV508 header
|
|
621
|
+
* refresh; EXC-14 and OQ-17 are closed): SqliteQuotaLimiter
|
|
622
|
+
* (@rulvar/store-sqlite) coordinates PROCESSES over one database file,
|
|
623
|
+
* PostgresQuotaLimiter (@rulvar/store-postgres) coordinates HOSTS over
|
|
624
|
+
* one database and schema. Dividing quota per worker and fronting an
|
|
625
|
+
* external gateway remain valid simpler deployments.
|
|
623
626
|
*/
|
|
624
627
|
/** Appendix A: the committed reference lease ttl. */
|
|
625
628
|
const DEFAULT_WORKER_TTL_MS = 6e4;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rulvar/cli",
|
|
3
|
-
"version": "1.99.
|
|
3
|
+
"version": "1.99.1",
|
|
4
4
|
"description": "Rulvar shell: run/resume/runs/inspect/plan/kb commands, TUI progress, createServer, createWorker, OTel exporter.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -22,17 +22,17 @@
|
|
|
22
22
|
"access": "public"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@rulvar/core": "1.99.
|
|
25
|
+
"@rulvar/core": "1.99.1"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/node": "^22.20.1",
|
|
29
29
|
"tsdown": "^0.22.14",
|
|
30
30
|
"typescript": "~6.0.3",
|
|
31
|
-
"@rulvar/
|
|
32
|
-
"@rulvar/
|
|
33
|
-
"@rulvar/
|
|
34
|
-
"@rulvar/
|
|
35
|
-
"@rulvar/
|
|
31
|
+
"@rulvar/store-sqlite": "1.99.1",
|
|
32
|
+
"@rulvar/planner": "1.99.1",
|
|
33
|
+
"@rulvar/plan": "1.99.1",
|
|
34
|
+
"@rulvar/evals": "1.99.1",
|
|
35
|
+
"@rulvar/testing": "1.99.1"
|
|
36
36
|
},
|
|
37
37
|
"bin": {
|
|
38
38
|
"rulvar": "./dist/cli.js"
|