@rulvar/cli 1.99.0 → 1.100.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 +7 -4
  2. 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. There is no
620
- * distributed cross-process rate limiter in v1 (EXC-14; OQ-17):
621
- * divide provider quota per worker or front an external
622
- * gateway.
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.0",
3
+ "version": "1.100.0",
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.0"
25
+ "@rulvar/core": "1.100.0"
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/planner": "1.99.0",
32
- "@rulvar/plan": "1.99.0",
33
- "@rulvar/store-sqlite": "1.99.0",
34
- "@rulvar/testing": "1.99.0",
35
- "@rulvar/evals": "1.99.0"
31
+ "@rulvar/store-sqlite": "1.100.0",
32
+ "@rulvar/planner": "1.100.0",
33
+ "@rulvar/plan": "1.100.0",
34
+ "@rulvar/testing": "1.100.0",
35
+ "@rulvar/evals": "1.100.0"
36
36
  },
37
37
  "bin": {
38
38
  "rulvar": "./dist/cli.js"