@promptowl/contextnest-community 1.14.0 → 1.15.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/CONFIGURATION.md +14 -0
- package/dist/{chunk-IHGPZ6NY.js → chunk-5IAKUUZF.js} +1 -1
- package/dist/{chunk-KPK656BH.js → chunk-7BOG3S5H.js} +563 -1006
- package/dist/{chunk-I5KYGMIT.js → chunk-BCFKLY4H.js} +54 -1
- package/dist/{chunk-MZ4IR5KH.js → chunk-C4U75IUR.js} +349 -32
- package/dist/chunk-GWDOLYFJ.js +624 -0
- package/dist/{chunk-JP67WXLA.js → chunk-JWVZ3T35.js} +58 -3
- package/dist/{client-3MGIP57D.js → client-NFUHPLLM.js} +1 -1
- package/dist/{grants-service-5ZFISCBH.js → grants-service-O4AO326A.js} +2 -2
- package/dist/index.js +1547 -657
- package/dist/{migrations.postgres-BRXZY2GE.js → migrations.postgres-CYKO5CFV.js} +41 -1
- package/dist/review-service-JUAFYB73.js +47 -0
- package/dist/{stewardship-service-G7IF7ZNP.js → stewardship-service-FHJ2RBKN.js} +4 -4
- package/dist/{version-service-FGL47APL.js → version-service-ECYCBVSE.js} +7 -3
- package/dist/web3/assets/index-BaMJ4tEz.css +1 -0
- package/dist/web3/assets/index-D950G4hR.js +1052 -0
- package/dist/web3/index.html +2 -2
- package/package.json +2 -2
- package/dist/chunk-XQ46F76G.js +0 -16
- package/dist/review-service-6G7MVTY6.js +0 -31
- package/dist/web3/assets/index-BYmOkm4p.js +0 -1052
- package/dist/web3/assets/index-p6uQyhml.css +0 -1
package/CONFIGURATION.md
CHANGED
|
@@ -279,6 +279,20 @@ On first connect the server creates its schema automatically (idempotent) — no
|
|
|
279
279
|
manual migration step. There is no built-in SQLite→Postgres data migration; a new
|
|
280
280
|
Postgres backend starts empty.
|
|
281
281
|
|
|
282
|
+
### First-boot upgrade passes
|
|
283
|
+
|
|
284
|
+
Some upgrades carry a one-shot data pass that runs at startup, before the server
|
|
285
|
+
accepts requests, and records itself in `schema_migrations` so it never repeats.
|
|
286
|
+
Two exist today: the `node_versions` backfill from `history.yaml`, and the
|
|
287
|
+
version-chain repair added in 1.13 (re-anchors documents whose version chain was
|
|
288
|
+
grafted by an older import, and moves inline patches into `v{N}.diff` files).
|
|
289
|
+
|
|
290
|
+
Both walk every document in every nest, so on a large vault the **first** boot
|
|
291
|
+
after upgrading can take noticeably longer than usual — reads of the on-disk
|
|
292
|
+
vault, not database work, so an install on network/FUSE storage feels it most.
|
|
293
|
+
Every subsequent boot skips the pass entirely. Progress and a per-pass summary
|
|
294
|
+
are printed to the server log.
|
|
295
|
+
|
|
282
296
|
> ⚠️ **Cloud Run durability — read this.** Cloud SQL persists only the *metadata
|
|
283
297
|
> database*. The actual **document content and version history** live on the
|
|
284
298
|
> filesystem under `$DATA_ROOT/nests/`, which on Cloud Run is **ephemeral** and is
|