@noy-db/hub 0.7.0-pre.7 → 0.7.0-pre.8
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 +25 -0
- package/README.md +4 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# Changelog — hub
|
|
2
2
|
|
|
3
|
+
## 0.7.0-pre.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Say what is actually true about runtime dependencies (#1227).
|
|
8
|
+
|
|
9
|
+
Four places claimed zero runtime dependencies. Measured across all 57 packages, **51 have none** — but six do, and four of those are third-party:
|
|
10
|
+
|
|
11
|
+
| package | runtime dependency |
|
|
12
|
+
| ----------------------------------- | ---------------------------------------------------------- |
|
|
13
|
+
| `@noy-db/as-xml`, `@noy-db/as-xlsx` | `fast-xml-parser` |
|
|
14
|
+
| `@noy-db/in-devtools-tui` | `ink`, `react` |
|
|
15
|
+
| `create-noy-db` | its scaffolder toolchain |
|
|
16
|
+
| `@noy-db/hub` | `@noy-db/attestation` — a sibling on the same version line |
|
|
17
|
+
| `@noy-db/in-nuxt` | `@noy-db/in-devtools` — likewise |
|
|
18
|
+
|
|
19
|
+
Corrected:
|
|
20
|
+
|
|
21
|
+
- **`@noy-db/hub`** — "Zero runtime dependencies" → _no third-party runtime dependencies to install_, naming `@noy-db/attestation` as the one runtime dependency. Also states plainly that `zod` is **vendored into the bundle** for the optional persisted-schema converter, loaded lazily, never executing unless you use that path — and that it will not appear in your lockfile. That last clause is the one an SBOM or audit process needs, and no manifest field carries it.
|
|
22
|
+
- **`@noy-db/as-xlsx`** — "Zero runtime dependencies" was **flatly false**; it depends on `fast-xml-parser`. The intent was "no heavyweight spreadsheet library", which is true and is now what it says.
|
|
23
|
+
|
|
24
|
+
Two other claims were checked and left alone because they are correct: `@noy-db/as-zip` and `@noy-db/on-totp` genuinely have no dependencies.
|
|
25
|
+
|
|
26
|
+
Documentation only. No code, dependency, or behaviour change — the manifests already said this; only the prose disagreed with them.
|
|
27
|
+
|
|
3
28
|
## 0.7.0-pre.6
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -76,7 +76,10 @@ const all = await invoices.list()
|
|
|
76
76
|
- **Multi-user access control** — owner, admin, operator, viewer, client roles
|
|
77
77
|
- **Offline-first sync** — push/pull with optimistic concurrency on encrypted envelopes
|
|
78
78
|
- **Audit history** — full-copy snapshots with `history()`, `diff()`, `revert()`, `pruneHistory()`
|
|
79
|
-
- **
|
|
79
|
+
- **No third-party runtime dependencies to install** — the only runtime dependency is
|
|
80
|
+
`@noy-db/attestation`, on the same version line. (`zod` is vendored into the bundle for the
|
|
81
|
+
optional persisted-schema converter and loaded lazily; it never executes unless you use that
|
|
82
|
+
path, and it does not appear in your lockfile.)
|
|
80
83
|
|
|
81
84
|
## Cross-vault queries
|
|
82
85
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@noy-db/hub",
|
|
3
|
-
"version": "0.7.0-pre.
|
|
3
|
+
"version": "0.7.0-pre.8",
|
|
4
4
|
"description": "Zero-knowledge, offline-first, encrypted document store — core library with AES-256-GCM, PBKDF2, multi-user keyring, and sync engine",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "vLannaAi <vicio@lanna.ai>",
|
|
@@ -233,14 +233,14 @@
|
|
|
233
233
|
"node": ">=22.0.0"
|
|
234
234
|
},
|
|
235
235
|
"dependencies": {
|
|
236
|
-
"@noy-db/attestation": "0.7.0-pre.
|
|
236
|
+
"@noy-db/attestation": "0.7.0-pre.8"
|
|
237
237
|
},
|
|
238
238
|
"devDependencies": {
|
|
239
239
|
"@types/node": "^22.0.0",
|
|
240
240
|
"esbuild": "^0.25.0",
|
|
241
241
|
"zod": "^4.0.0",
|
|
242
242
|
"zod-to-json-schema": "^3.25.2",
|
|
243
|
-
"@noy-db/on-shamir": "0.7.0-pre.
|
|
243
|
+
"@noy-db/on-shamir": "0.7.0-pre.8"
|
|
244
244
|
},
|
|
245
245
|
"peerDependencies": {
|
|
246
246
|
"zod-to-json-schema": "^3.25.0"
|