@objectstack/driver-sqlite-wasm 17.0.0-rc.0 → 17.0.0-rc.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/CHANGELOG.md +1560 -0
- package/dist/index.d.mts +38 -0
- package/dist/index.d.ts +38 -0
- package/dist/index.js +62 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +62 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -6
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,1560 @@
|
|
|
1
|
+
# @objectstack/driver-sqlite-wasm
|
|
2
|
+
|
|
3
|
+
## 17.0.0-rc.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0af50a3: fix(driver-sql,service-analytics): a bare-day upper bound covers the whole day on `Field.datetime` (#3777)
|
|
8
|
+
|
|
9
|
+
A bare `YYYY-MM-DD` comparand anchors to midnight UTC. That is right for a
|
|
10
|
+
lower bound and was silently wrong for an upper one: the dashboard date-range
|
|
11
|
+
filter compiles `{ $gte: from, $lte: to }` with bare-day bounds, so on a
|
|
12
|
+
`datetime` column every row created after 00:00 of the `to` day vanished from
|
|
13
|
+
the result — no error, the chart renders, the numbers are just smaller. The
|
|
14
|
+
default configuration hit it: the filter's default field is `created_at`
|
|
15
|
+
(a system-injected `Field.datetime`) and 7 of the 13 presets end "today".
|
|
16
|
+
|
|
17
|
+
The translation is operator-sensitive and half-open, applied at every
|
|
18
|
+
comparison emitter:
|
|
19
|
+
|
|
20
|
+
- `SqlDriver` (and `SqliteWasmDriver` by inheritance): `$lte`/`<=` with a
|
|
21
|
+
bare-day comparand on a `datetime` column compiles to `< next-day-midnight`
|
|
22
|
+
in the column's storage form; `$between [min, max]` with a bare-day max
|
|
23
|
+
decomposes to `>= min AND < next-day(max)`. Both the plain and the
|
|
24
|
+
legacy-repair (mixed-storage) column paths, both `where` spellings.
|
|
25
|
+
- `NativeSQLStrategy`: `dateRange` windows and `lte` filters bind `< next-day`
|
|
26
|
+
instead of an inclusive `BETWEEN`/`<=` when the bound is a bare day.
|
|
27
|
+
- The `/analytics/sql` rendering and the dataset preview evaluator apply the
|
|
28
|
+
same rule, so the echoed SQL and drafted numbers reproduce execution.
|
|
29
|
+
|
|
30
|
+
`@objectstack/core` gains the shared primitive `nextUtcCalendarDay(value)`:
|
|
31
|
+
the next calendar day of a valid bare `YYYY-MM-DD` (else `null` — instants,
|
|
32
|
+
`Date`s and impossible days are never widened).
|
|
33
|
+
|
|
34
|
+
Unchanged on purpose, per the semantics table on #3777: `date`/`time` columns
|
|
35
|
+
(`<= day` is already whole-day-correct there), full-ISO/`Date` comparands
|
|
36
|
+
(instant semantics), and `$gte`/`$gt`/`$lt` (midnight anchoring is correct for
|
|
37
|
+
those). No authored metadata changes: a dashboard's existing
|
|
38
|
+
`{ $gte, $lte }` window now simply includes its final day.
|
|
39
|
+
|
|
40
|
+
- 2e836de: chore(packaging): CHANGELOG.md ships in every npm tarball (#4261)
|
|
41
|
+
|
|
42
|
+
The AGENTS.md post-task checklist requires breaking changesets to carry their
|
|
43
|
+
FROM → TO migration because "this text ships to consumers as `CHANGELOG.md`
|
|
44
|
+
inside the npm package and is what an upgrading agent greps after the tombstone
|
|
45
|
+
error." That delivery path was severed for 68 of the 69 publishable packages:
|
|
46
|
+
npm packs `package.json` / `README*` / `LICENSE*` unconditionally but — unlike
|
|
47
|
+
older npm versions — not `CHANGELOG.md`, and the canonical
|
|
48
|
+
`"files": ["dist", "README.md"]` whitelist never named it. Measured on npm
|
|
49
|
+
10.9.7: `npm pack --dry-run` on `@objectstack/types` shipped 3 files while its
|
|
50
|
+
70KB `CHANGELOG.md` stayed behind. Only `@objectstack/spec` listed it
|
|
51
|
+
explicitly.
|
|
52
|
+
|
|
53
|
+
The tombstone-error scenario is precisely the one where the repo is out of
|
|
54
|
+
reach — the upgrading agent has `node_modules` and nothing else — so the
|
|
55
|
+
migration text has to ride in the tarball. Every publishable package now
|
|
56
|
+
declares `CHANGELOG.md` in `files`, and the canonical whitelist is
|
|
57
|
+
`["dist", "README.md", "CHANGELOG.md"]`.
|
|
58
|
+
|
|
59
|
+
The other half is the gate: `check:published-files` gains a fifth invariant,
|
|
60
|
+
COMPLETE — a whitelist that fails to cover `CHANGELOG.md` fails the
|
|
61
|
+
always-required lint job, so the next package cannot silently sever the path
|
|
62
|
+
again. `@objectstack/spec`'s per-package EXTRA_ENTRIES exemption dissolves
|
|
63
|
+
into the canonical set.
|
|
64
|
+
|
|
65
|
+
Consumer-visible change: one more file per install (the package's changelog,
|
|
66
|
+
e.g. 70.8KB for `@objectstack/types`), and `grep -r "removed key"
|
|
67
|
+
node_modules/@objectstack/*/CHANGELOG.md` now finds the migration it was
|
|
68
|
+
promised.
|
|
69
|
+
|
|
70
|
+
- 9881074: test(drivers): the "held to by a gate" claim now has a gate behind it (#4363)
|
|
71
|
+
|
|
72
|
+
Three changesets — filter combinator semantics (#3774), temporal storage form
|
|
73
|
+
(ADR-0053), deterministic paged reads (objectui#3106 / #4363) — each introduced
|
|
74
|
+
a shared case-set in `@objectstack/spec/data` with some version of the claim
|
|
75
|
+
that a future driver "is held to this by a gate rather than by remembering it".
|
|
76
|
+
|
|
77
|
+
There was no gate. The case-sets are exports sitting in a package; nothing
|
|
78
|
+
obliged a driver to import them. Measured on `main`, the matrix had three holes:
|
|
79
|
+
`driver-sqlite-wasm` ran neither pagination case-set, and neither it nor
|
|
80
|
+
`driver-mongodb` ran the filter-logic one — including a hole in the very
|
|
81
|
+
case-set whose changeset made the claim.
|
|
82
|
+
|
|
83
|
+
`scripts/check-driver-conformance.mjs` (`pnpm check:driver-conformance`, wired
|
|
84
|
+
into lint.yml's required job) makes the hole the failure. Every
|
|
85
|
+
(driver × case-set) cell is covered — some file under the package's `src/`
|
|
86
|
+
imports _and drives_ the case-set's marker export — or carries a measured
|
|
87
|
+
DEBT/EXEMPT entry, reconciled in both directions. A third direction, CLASSIFIED,
|
|
88
|
+
holds the other end: a new `*-conformance.ts` fixture nobody classified fails
|
|
89
|
+
the run rather than starting life uncovered, which is the direction that
|
|
90
|
+
actually rots (#4203). It caught an unclassified `TEMPORAL_TIME_CASES` on its
|
|
91
|
+
first run.
|
|
92
|
+
|
|
93
|
+
`driver-sqlite-wasm` gains the pagination suite the gate found missing. It
|
|
94
|
+
inherits `SqlDriver`'s ORDER BY construction, so nothing is re-implemented —
|
|
95
|
+
what the suite pins is that the clause survives a different _engine_: this
|
|
96
|
+
driver swaps knex's transport for a custom sql.js dialect that compiles,
|
|
97
|
+
executes and marshals every row through its own path, and a dialect that
|
|
98
|
+
reordered or dropped the trailing `ORDER BY id` would fail in no other suite.
|
|
99
|
+
|
|
100
|
+
The two filter-logic holes are ledgered as DEBT rather than fixed here, with
|
|
101
|
+
their reasons printed on every run and tracked in #4405. The mongodb row is the
|
|
102
|
+
substantive one: `translateFilter` is an independent FilterCondition backend —
|
|
103
|
+
the fifth, and the one #3774 never enrolled when it counted "the four".
|
|
104
|
+
|
|
105
|
+
- 4384921: fix(spec,drivers): `bypassTenantAudit` becomes a declared driver option, and `findOne` stops accepting a bare id (#4311)
|
|
106
|
+
|
|
107
|
+
Three drivers built with `tsup` and tested with `vitest`, so no `tsc` had ever
|
|
108
|
+
read them. Onboarding them to the #4311 type-check ratchet surfaced 292 errors,
|
|
109
|
+
and most of what looked like sloppy test fixtures was the types being wrong.
|
|
110
|
+
|
|
111
|
+
**`DriverOptions.bypassTenantAudit` is now declared.** It has been live for a
|
|
112
|
+
long time without being on the schema: `SqlDriver.auditMissingTenant` reads it
|
|
113
|
+
to suppress the "tenant-scoped write without `tenantId`" warning, the driver's
|
|
114
|
+
own warning text tells callers to set it, `ObjectQLEngine` sets it for
|
|
115
|
+
system-context calls, and `service-settings` / `service-datasource` pass it on
|
|
116
|
+
every global-scope write. Because the schema never had it, the driver read it
|
|
117
|
+
through `(options as any)` and no caller was type-checked. The declaration
|
|
118
|
+
states the limit as well: it silences a diagnostic and MUST NOT change which
|
|
119
|
+
rows a write touches — suppressing an audit warning is not a permission.
|
|
120
|
+
|
|
121
|
+
The same cast covered `timezone`, `tenantId`, `tenantIds` and `preserveAudit`,
|
|
122
|
+
all long since declared. Those reads now go through `DriverOptions`, so the next
|
|
123
|
+
undeclared option fails the build instead of hiding behind an existing cast.
|
|
124
|
+
|
|
125
|
+
**`SqlDriver.findOne(object, id)` is removed.** An undeclared
|
|
126
|
+
`typeof query === 'string' | 'number'` branch accepted a bare id. It was on no
|
|
127
|
+
contract, nothing outside that package's own tests used it, and the other two
|
|
128
|
+
drivers answered the identical call differently — `MemoryDriver` spreads the
|
|
129
|
+
string into `{0:'t',1:'1'}`, `MongoDBDriver` reads `query.where` as `undefined`
|
|
130
|
+
and returns an arbitrary row. It also bypassed the shared `findRows()` path, so
|
|
131
|
+
it skipped field selection, temporal coercion, unknown-column recovery and the
|
|
132
|
+
`singleRowLookup` ORDER BY decision. Spell an id lookup as the query it is:
|
|
133
|
+
|
|
134
|
+
```ts
|
|
135
|
+
-(await driver.findOne("task", "t1"));
|
|
136
|
+
+(await driver.findOne("task", { object: "task", where: { id: "t1" } }));
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
**`SqlDriver.initObjects` declares the `tenancy` it consumes.** Each object is
|
|
140
|
+
fed to `computeAndRecordTenantField`, which reads `obj.tenancy` to pick the
|
|
141
|
+
tenant column and to set or clear the sticky explicit-opt-out — but the
|
|
142
|
+
parameter type listed only `{ name, fields }`, so a caller that spelled the key
|
|
143
|
+
correctly was rejected while the driver read it anyway.
|
|
144
|
+
`registerExternalObject` already had it.
|
|
145
|
+
|
|
146
|
+
**`AnalyticsQueryInput` joins `AnalyticsQuery`.** `timezone` is
|
|
147
|
+
`.default('UTC')`, so the parsed type requires it and an authored literal does
|
|
148
|
+
not have it — the same two-tier split `QueryInput`/`QueryAST` already names on
|
|
149
|
+
the query side. `InMemoryDriver.create`/`bulkCreate` also declare their
|
|
150
|
+
`IDataDriver` return types; without them TS inferred the literal the method
|
|
151
|
+
builds and every other column of the created row disappeared from the caller's
|
|
152
|
+
view.
|
|
153
|
+
|
|
154
|
+
One silent runtime bug fell out of the same pass: a driver test asked for
|
|
155
|
+
`orderBy: [['id', 'asc']]`, the driver reads `item.field`, a tuple has none, and
|
|
156
|
+
the sort never reached SQL. The tuple spelling appears nowhere else.
|
|
157
|
+
|
|
158
|
+
- c53aa53: File-backed SQLite now runs `journal_mode = WAL` (#3941).
|
|
159
|
+
|
|
160
|
+
`SqlDriver.connect()` set `auto_vacuum` and left the journal mode alone, so
|
|
161
|
+
every ObjectStack SQLite database ran SQLite's built-in default — a rollback
|
|
162
|
+
journal. That is the worst mode for the shape this platform actually has, which
|
|
163
|
+
is **several processes on one file**: a dev server, `os migrate`,
|
|
164
|
+
`os meta resync`, a test run. Measured, on the same file:
|
|
165
|
+
|
|
166
|
+
| | rollback journal | WAL |
|
|
167
|
+
| :--------------------------------------------- | :------------------------------------------------- | :---------------------------------------------------------------- |
|
|
168
|
+
| writer while another process holds a read open | `SQLITE_BUSY` — committing needs an exclusive lock | proceeds |
|
|
169
|
+
| idle attached connection visible to SQL | no — a lock lasts only as long as its transaction | yes (`locking_mode = EXCLUSIVE` + `BEGIN IMMEDIATE` reports busy) |
|
|
170
|
+
|
|
171
|
+
The second row is why the `os migrate` occupancy check had to inspect file
|
|
172
|
+
descriptors to see a live server at all (#3940): under a rollback journal there
|
|
173
|
+
was nothing in the database to see. That signal stays — it names the process,
|
|
174
|
+
which WAL's lock probe cannot — but the SQL probe is now authoritative for
|
|
175
|
+
databases ObjectStack created rather than a fallback that was blind in practice.
|
|
176
|
+
Concurrent _writers_ still serialize; SQLite allows one at a time in any mode.
|
|
177
|
+
|
|
178
|
+
Journal mode is a persistent property of the file, so an existing database is
|
|
179
|
+
converted in place on the next connect (a header change — no rows are touched)
|
|
180
|
+
and stays converted. Two consequences to plan for:
|
|
181
|
+
|
|
182
|
+
- `app.db-wal` / `app.db-shm` exist beside the database while a connection is
|
|
183
|
+
attached, and `app.db-wal` can hold committed transactions. A clean shutdown
|
|
184
|
+
checkpoints them away; a naive copy of `app.db` alone while a server runs does
|
|
185
|
+
not. Use `sqlite3 app.db ".backup …"`.
|
|
186
|
+
- **WAL does not work on network filesystems** (NFS/SMB). Opt out with
|
|
187
|
+
`OS_DATABASE_SQLITE_JOURNAL_MODE=delete`, or per datasource with
|
|
188
|
+
`sqliteJournalMode: 'delete'` in the driver config (which outranks the env
|
|
189
|
+
var). Either form _applies_ `delete`, so it also converts a database that
|
|
190
|
+
already adopted WAL back — skipping would have stranded it.
|
|
191
|
+
|
|
192
|
+
Nothing here fails a boot, and nothing is assumed: `PRAGMA journal_mode = X`
|
|
193
|
+
answers with the mode actually in force rather than raising on refusal, so the
|
|
194
|
+
reply is read back; and because a filesystem can accept WAL and then fail the
|
|
195
|
+
first read _through_ it, the mode is proven with a read and rolled back to
|
|
196
|
+
`delete` if that fails — with a warning naming the file and the escape hatch.
|
|
197
|
+
`synchronous` is untouched, so durability is exactly what it was. `:memory:`
|
|
198
|
+
databases are left alone, as is `auto_vacuum = INCREMENTAL`, which keeps
|
|
199
|
+
reclaiming under WAL (ADR-0057).
|
|
200
|
+
|
|
201
|
+
`os db clean` now counts `-wal` / `-shm` as part of the database when it measures
|
|
202
|
+
what a `VACUUM` reclaimed, so bytes that were sitting in the log do not read as a
|
|
203
|
+
reclaim of zero.
|
|
204
|
+
|
|
205
|
+
`@objectstack/driver-sqlite-wasm` deliberately stays out of WAL. Its live
|
|
206
|
+
database is in the WASM heap and what reaches disk is a byte image it exports, so
|
|
207
|
+
nothing reads the database across processes and the pragma buys it nothing —
|
|
208
|
+
while still being a persistent header change in the operator's file. sql.js
|
|
209
|
+
_accepts_ the pragma (its VFS is memory-backed), so this had to be declared
|
|
210
|
+
rather than discovered.
|
|
211
|
+
|
|
212
|
+
It also now parks a `-wal` left behind by an unclean native-driver exit rather
|
|
213
|
+
than loading the image beside it: wasm SQLite cannot read that log, and leaving
|
|
214
|
+
it next to a freshly rewritten image would let a later real SQLite replay frames
|
|
215
|
+
that no longer belong to it. The warning names the file it parked and how to
|
|
216
|
+
recover what was in it.
|
|
217
|
+
|
|
218
|
+
- Updated dependencies [6a67d7a]
|
|
219
|
+
- Updated dependencies [0ecc656]
|
|
220
|
+
- Updated dependencies [06772eb]
|
|
221
|
+
- Updated dependencies [270650f]
|
|
222
|
+
- Updated dependencies [3aef718]
|
|
223
|
+
- Updated dependencies [1ea6bce]
|
|
224
|
+
- Updated dependencies [c1dcacd]
|
|
225
|
+
- Updated dependencies [ad303ed]
|
|
226
|
+
- Updated dependencies [32ccb23]
|
|
227
|
+
- Updated dependencies [f5a4ef0]
|
|
228
|
+
- Updated dependencies [2d3e255]
|
|
229
|
+
- Updated dependencies [7d7521f]
|
|
230
|
+
- Updated dependencies [5dc4d02]
|
|
231
|
+
- Updated dependencies [05154a1]
|
|
232
|
+
- Updated dependencies [9b6fe7c]
|
|
233
|
+
- Updated dependencies [8c711fb]
|
|
234
|
+
- Updated dependencies [09e4547]
|
|
235
|
+
- Updated dependencies [91f4c78]
|
|
236
|
+
- Updated dependencies [820eff9]
|
|
237
|
+
- Updated dependencies [8d895ff]
|
|
238
|
+
- Updated dependencies [f6472d7]
|
|
239
|
+
- Updated dependencies [78caf51]
|
|
240
|
+
- Updated dependencies [62a789b]
|
|
241
|
+
- Updated dependencies [789ad63]
|
|
242
|
+
- Updated dependencies [2af1988]
|
|
243
|
+
- Updated dependencies [0af50a3]
|
|
244
|
+
- Updated dependencies [2e836de]
|
|
245
|
+
- Updated dependencies [12a19a8]
|
|
246
|
+
- Updated dependencies [41dcda3]
|
|
247
|
+
- Updated dependencies [42e3b01]
|
|
248
|
+
- Updated dependencies [c8124e5]
|
|
249
|
+
- Updated dependencies [39eb01b]
|
|
250
|
+
- Updated dependencies [a1a4140]
|
|
251
|
+
- Updated dependencies [217e2e6]
|
|
252
|
+
- Updated dependencies [86a71d1]
|
|
253
|
+
- Updated dependencies [d5c75e2]
|
|
254
|
+
- Updated dependencies [03d26f7]
|
|
255
|
+
- Updated dependencies [4384921]
|
|
256
|
+
- Updated dependencies [3c628ce]
|
|
257
|
+
- Updated dependencies [7cb922e]
|
|
258
|
+
- Updated dependencies [1d22114]
|
|
259
|
+
- Updated dependencies [b5f9397]
|
|
260
|
+
- Updated dependencies [ed77493]
|
|
261
|
+
- Updated dependencies [58a03d2]
|
|
262
|
+
- Updated dependencies [dc530b4]
|
|
263
|
+
- Updated dependencies [e59786e]
|
|
264
|
+
- Updated dependencies [bcf1112]
|
|
265
|
+
- Updated dependencies [9774b78]
|
|
266
|
+
- Updated dependencies [6f98c2d]
|
|
267
|
+
- Updated dependencies [b07d829]
|
|
268
|
+
- Updated dependencies [a648e96]
|
|
269
|
+
- Updated dependencies [a47ac06]
|
|
270
|
+
- Updated dependencies [e4c61a7]
|
|
271
|
+
- Updated dependencies [cc60165]
|
|
272
|
+
- Updated dependencies [081aa6f]
|
|
273
|
+
- Updated dependencies [91f4c78]
|
|
274
|
+
- Updated dependencies [e8d0c21]
|
|
275
|
+
- Updated dependencies [45dc446]
|
|
276
|
+
- Updated dependencies [c1d44f7]
|
|
277
|
+
- Updated dependencies [ab9fb5c]
|
|
278
|
+
- Updated dependencies [f985b3f]
|
|
279
|
+
- Updated dependencies [9a4932a]
|
|
280
|
+
- Updated dependencies [f9fc874]
|
|
281
|
+
- Updated dependencies [011b386]
|
|
282
|
+
- Updated dependencies [7777e8f]
|
|
283
|
+
- Updated dependencies [507b92a]
|
|
284
|
+
- Updated dependencies [7309c81]
|
|
285
|
+
- Updated dependencies [20bc1ec]
|
|
286
|
+
- Updated dependencies [90c2b15]
|
|
287
|
+
- Updated dependencies [33a5ff4]
|
|
288
|
+
- Updated dependencies [9e01213]
|
|
289
|
+
- Updated dependencies [42eeb7d]
|
|
290
|
+
- Updated dependencies [01e124d]
|
|
291
|
+
- Updated dependencies [7ce02eb]
|
|
292
|
+
- Updated dependencies [a13827e]
|
|
293
|
+
- Updated dependencies [7733604]
|
|
294
|
+
- Updated dependencies [40e420f]
|
|
295
|
+
- Updated dependencies [d13004a]
|
|
296
|
+
- Updated dependencies [be7360c]
|
|
297
|
+
- Updated dependencies [3fe0ff1]
|
|
298
|
+
- Updated dependencies [5b47ab5]
|
|
299
|
+
- Updated dependencies [b09d8d9]
|
|
300
|
+
- Updated dependencies [b09d8d9]
|
|
301
|
+
- Updated dependencies [8675db6]
|
|
302
|
+
- Updated dependencies [b09d8d9]
|
|
303
|
+
- Updated dependencies [3eb1b2b]
|
|
304
|
+
- Updated dependencies [59b85c0]
|
|
305
|
+
- Updated dependencies [6e357ed]
|
|
306
|
+
- Updated dependencies [d6938bf]
|
|
307
|
+
- Updated dependencies [31e0be9]
|
|
308
|
+
- Updated dependencies [4bfd455]
|
|
309
|
+
- Updated dependencies [ffd2ce2]
|
|
310
|
+
- Updated dependencies [62f8017]
|
|
311
|
+
- Updated dependencies [a831df1]
|
|
312
|
+
- Updated dependencies [f752ee3]
|
|
313
|
+
- Updated dependencies [a1b61e0]
|
|
314
|
+
- Updated dependencies [cd6b9f2]
|
|
315
|
+
- Updated dependencies [2cb6d3c]
|
|
316
|
+
- Updated dependencies [af2a095]
|
|
317
|
+
- Updated dependencies [ec796d5]
|
|
318
|
+
- Updated dependencies [e87fea1]
|
|
319
|
+
- Updated dependencies [c65e529]
|
|
320
|
+
- Updated dependencies [3ca34c1]
|
|
321
|
+
- Updated dependencies [239c3a3]
|
|
322
|
+
- Updated dependencies [94a0bbc]
|
|
323
|
+
- Updated dependencies [d6bfb3d]
|
|
324
|
+
- Updated dependencies [a2266a6]
|
|
325
|
+
- Updated dependencies [d25a0ec]
|
|
326
|
+
- Updated dependencies [667b83e]
|
|
327
|
+
- Updated dependencies [627b188]
|
|
328
|
+
- Updated dependencies [8d4eae7]
|
|
329
|
+
- Updated dependencies [857a6cf]
|
|
330
|
+
- Updated dependencies [65a3a84]
|
|
331
|
+
- Updated dependencies [ccd9397]
|
|
332
|
+
- Updated dependencies [bca935b]
|
|
333
|
+
- Updated dependencies [d92c72d]
|
|
334
|
+
- Updated dependencies [c54c822]
|
|
335
|
+
- Updated dependencies [8dcc0f5]
|
|
336
|
+
- Updated dependencies [75b9e51]
|
|
337
|
+
- Updated dependencies [0a2f233]
|
|
338
|
+
- Updated dependencies [8621cdd]
|
|
339
|
+
- Updated dependencies [c53aa53]
|
|
340
|
+
- Updated dependencies [6f23667]
|
|
341
|
+
- Updated dependencies [5d21a48]
|
|
342
|
+
- Updated dependencies [19365b7]
|
|
343
|
+
- Updated dependencies [b7ed26d]
|
|
344
|
+
- Updated dependencies [b3a3d83]
|
|
345
|
+
- Updated dependencies [7a55913]
|
|
346
|
+
- Updated dependencies [35accbf]
|
|
347
|
+
- Updated dependencies [6038de7]
|
|
348
|
+
- Updated dependencies [eb95d97]
|
|
349
|
+
- Updated dependencies [e4c2dc8]
|
|
350
|
+
- Updated dependencies [1bd2795]
|
|
351
|
+
- Updated dependencies [8186a70]
|
|
352
|
+
- Updated dependencies [a329cca]
|
|
353
|
+
- Updated dependencies [6eec18c]
|
|
354
|
+
- Updated dependencies [4d7bebf]
|
|
355
|
+
- Updated dependencies [821ac7a]
|
|
356
|
+
- Updated dependencies [8f81731]
|
|
357
|
+
- Updated dependencies [8b50cb3]
|
|
358
|
+
- Updated dependencies [8c2db68]
|
|
359
|
+
- Updated dependencies [22b5e54]
|
|
360
|
+
- Updated dependencies [0166bd5]
|
|
361
|
+
- Updated dependencies [9b702dc]
|
|
362
|
+
- Updated dependencies [ab16331]
|
|
363
|
+
- @objectstack/spec@17.0.0-rc.1
|
|
364
|
+
- @objectstack/driver-sql@17.0.0-rc.1
|
|
365
|
+
- @objectstack/core@17.0.0-rc.1
|
|
366
|
+
|
|
367
|
+
## 17.0.0-rc.0
|
|
368
|
+
|
|
369
|
+
### Patch Changes
|
|
370
|
+
|
|
371
|
+
- Updated dependencies [50616d9]
|
|
372
|
+
- Updated dependencies [08b5a3d]
|
|
373
|
+
- Updated dependencies [d99aeb3]
|
|
374
|
+
- Updated dependencies [4727eb8]
|
|
375
|
+
- Updated dependencies [f63cd09]
|
|
376
|
+
- Updated dependencies [fa3d0cf]
|
|
377
|
+
- Updated dependencies [af5a224]
|
|
378
|
+
- Updated dependencies [71f76e1]
|
|
379
|
+
- Updated dependencies [37b1346]
|
|
380
|
+
- Updated dependencies [99736a0]
|
|
381
|
+
- Updated dependencies [fe67e34]
|
|
382
|
+
- Updated dependencies [fdb4f50]
|
|
383
|
+
- Updated dependencies [1bd5652]
|
|
384
|
+
- Updated dependencies [14252d3]
|
|
385
|
+
- Updated dependencies [7fb436c]
|
|
386
|
+
- Updated dependencies [879ea13]
|
|
387
|
+
- Updated dependencies [201b31f]
|
|
388
|
+
- Updated dependencies [c7f4417]
|
|
389
|
+
- Updated dependencies [e2616e0]
|
|
390
|
+
- Updated dependencies [6fdc5c6]
|
|
391
|
+
- Updated dependencies [8b9d71e]
|
|
392
|
+
- Updated dependencies [33f5e23]
|
|
393
|
+
- Updated dependencies [259af21]
|
|
394
|
+
- Updated dependencies [587fc91]
|
|
395
|
+
- Updated dependencies [1986594]
|
|
396
|
+
- Updated dependencies [ad4af62]
|
|
397
|
+
- Updated dependencies [d44dbfa]
|
|
398
|
+
- Updated dependencies [474fe39]
|
|
399
|
+
- Updated dependencies [0bc685a]
|
|
400
|
+
- Updated dependencies [b949059]
|
|
401
|
+
- Updated dependencies [be1c52c]
|
|
402
|
+
- Updated dependencies [c5ff96d]
|
|
403
|
+
- Updated dependencies [84e7be9]
|
|
404
|
+
- Updated dependencies [a6c3f38]
|
|
405
|
+
- Updated dependencies [debc23a]
|
|
406
|
+
- Updated dependencies [0f8ad09]
|
|
407
|
+
- Updated dependencies [8f9689f]
|
|
408
|
+
- Updated dependencies [57a3bb3]
|
|
409
|
+
- Updated dependencies [5f9a987]
|
|
410
|
+
- Updated dependencies [db02d47]
|
|
411
|
+
- Updated dependencies [0bfdf46]
|
|
412
|
+
- Updated dependencies [376a061]
|
|
413
|
+
- Updated dependencies [7c7e246]
|
|
414
|
+
- Updated dependencies [f35cdc5]
|
|
415
|
+
- Updated dependencies [9ea2bc5]
|
|
416
|
+
- Updated dependencies [32d3800]
|
|
417
|
+
- Updated dependencies [cf5e033]
|
|
418
|
+
- Updated dependencies [c2d9098]
|
|
419
|
+
- Updated dependencies [a227ed7]
|
|
420
|
+
- Updated dependencies [9613396]
|
|
421
|
+
- Updated dependencies [e47b342]
|
|
422
|
+
- Updated dependencies [4ed7ed4]
|
|
423
|
+
- Updated dependencies [2fa4ca1]
|
|
424
|
+
- Updated dependencies [f5a2320]
|
|
425
|
+
- Updated dependencies [deb538f]
|
|
426
|
+
- Updated dependencies [5b89711]
|
|
427
|
+
- Updated dependencies [0c8a22f]
|
|
428
|
+
- Updated dependencies [763931e]
|
|
429
|
+
- Updated dependencies [de9af8a]
|
|
430
|
+
- Updated dependencies [c4df271]
|
|
431
|
+
- Updated dependencies [a41ba5c]
|
|
432
|
+
- Updated dependencies [189854c]
|
|
433
|
+
- Updated dependencies [5d4de37]
|
|
434
|
+
- Updated dependencies [0e3a226]
|
|
435
|
+
- Updated dependencies [1d4756e]
|
|
436
|
+
- Updated dependencies [720c5ad]
|
|
437
|
+
- Updated dependencies [a8d1e24]
|
|
438
|
+
- Updated dependencies [41642b0]
|
|
439
|
+
- Updated dependencies [4cca74c]
|
|
440
|
+
- Updated dependencies [88ef03e]
|
|
441
|
+
- Updated dependencies [9e2caf3]
|
|
442
|
+
- Updated dependencies [81ce41a]
|
|
443
|
+
- Updated dependencies [85e1e4e]
|
|
444
|
+
- Updated dependencies [dac6a08]
|
|
445
|
+
- Updated dependencies [394b7a1]
|
|
446
|
+
- Updated dependencies [677b591]
|
|
447
|
+
- Updated dependencies [d77d1b7]
|
|
448
|
+
- Updated dependencies [5b79a34]
|
|
449
|
+
- Updated dependencies [c757854]
|
|
450
|
+
- Updated dependencies [0045682]
|
|
451
|
+
- Updated dependencies [2a5f04a]
|
|
452
|
+
- Updated dependencies [4f740b0]
|
|
453
|
+
- Updated dependencies [67452d1]
|
|
454
|
+
- Updated dependencies [0fc6219]
|
|
455
|
+
- Updated dependencies [605e190]
|
|
456
|
+
- Updated dependencies [c6c59f1]
|
|
457
|
+
- Updated dependencies [b0e78a8]
|
|
458
|
+
- Updated dependencies [f31cc8d]
|
|
459
|
+
- Updated dependencies [f343dc4]
|
|
460
|
+
- Updated dependencies [8269e32]
|
|
461
|
+
- Updated dependencies [74f7339]
|
|
462
|
+
- Updated dependencies [a6c35a2]
|
|
463
|
+
- Updated dependencies [c2f1002]
|
|
464
|
+
- Updated dependencies [f163028]
|
|
465
|
+
- Updated dependencies [f07808c]
|
|
466
|
+
- Updated dependencies [7ffc3d3]
|
|
467
|
+
- Updated dependencies [88346ba]
|
|
468
|
+
- Updated dependencies [4631592]
|
|
469
|
+
- Updated dependencies [32ff033]
|
|
470
|
+
- Updated dependencies [5ac93d4]
|
|
471
|
+
- Updated dependencies [93f267f]
|
|
472
|
+
- Updated dependencies [0024abf]
|
|
473
|
+
- Updated dependencies [acbf364]
|
|
474
|
+
- Updated dependencies [7687f7b]
|
|
475
|
+
- Updated dependencies [1659072]
|
|
476
|
+
- Updated dependencies [abceb0d]
|
|
477
|
+
- Updated dependencies [0c302a7]
|
|
478
|
+
- Updated dependencies [6633337]
|
|
479
|
+
- Updated dependencies [f00d8d4]
|
|
480
|
+
- Updated dependencies [503be86]
|
|
481
|
+
- Updated dependencies [647ec8b]
|
|
482
|
+
- Updated dependencies [7457a09]
|
|
483
|
+
- Updated dependencies [5f0852f]
|
|
484
|
+
- Updated dependencies [cde1975]
|
|
485
|
+
- Updated dependencies [0bc685a]
|
|
486
|
+
- Updated dependencies [11949fc]
|
|
487
|
+
- Updated dependencies [b098b0e]
|
|
488
|
+
- Updated dependencies [4d00b13]
|
|
489
|
+
- Updated dependencies [57bab76]
|
|
490
|
+
- Updated dependencies [b90086a]
|
|
491
|
+
- Updated dependencies [b95577a]
|
|
492
|
+
- Updated dependencies [83c161f]
|
|
493
|
+
- Updated dependencies [d8c4957]
|
|
494
|
+
- Updated dependencies [f24cb83]
|
|
495
|
+
- Updated dependencies [5dbbb92]
|
|
496
|
+
- Updated dependencies [69f1dfd]
|
|
497
|
+
- @objectstack/spec@17.0.0-rc.0
|
|
498
|
+
- @objectstack/driver-sql@17.0.0-rc.0
|
|
499
|
+
- @objectstack/core@17.0.0-rc.0
|
|
500
|
+
|
|
501
|
+
## 16.1.0
|
|
502
|
+
|
|
503
|
+
### Patch Changes
|
|
504
|
+
|
|
505
|
+
- Updated dependencies [9e45b63]
|
|
506
|
+
- Updated dependencies [b20201f]
|
|
507
|
+
- @objectstack/spec@16.1.0
|
|
508
|
+
- @objectstack/core@16.1.0
|
|
509
|
+
- @objectstack/driver-sql@16.1.0
|
|
510
|
+
|
|
511
|
+
## 16.0.0
|
|
512
|
+
|
|
513
|
+
### Patch Changes
|
|
514
|
+
|
|
515
|
+
- Updated dependencies [f972574]
|
|
516
|
+
- Updated dependencies [6289ec3]
|
|
517
|
+
- Updated dependencies [22013aa]
|
|
518
|
+
- Updated dependencies [3ad3dd5]
|
|
519
|
+
- Updated dependencies [8efa395]
|
|
520
|
+
- Updated dependencies [3a18b60]
|
|
521
|
+
- Updated dependencies [a8aa34c]
|
|
522
|
+
- Updated dependencies [e057f42]
|
|
523
|
+
- Updated dependencies [a3823b2]
|
|
524
|
+
- Updated dependencies [43a3efb]
|
|
525
|
+
- Updated dependencies [524696a]
|
|
526
|
+
- Updated dependencies [bfa3c3f]
|
|
527
|
+
- Updated dependencies [5e3301d]
|
|
528
|
+
- Updated dependencies [dd9f223]
|
|
529
|
+
- Updated dependencies [47d923c]
|
|
530
|
+
- Updated dependencies [46e876c]
|
|
531
|
+
- Updated dependencies [5f05de2]
|
|
532
|
+
- Updated dependencies [021ba4c]
|
|
533
|
+
- Updated dependencies [158aa14]
|
|
534
|
+
- Updated dependencies [62a2117]
|
|
535
|
+
- Updated dependencies [d2723e2]
|
|
536
|
+
- Updated dependencies [fefcd54]
|
|
537
|
+
- Updated dependencies [efbcfe1]
|
|
538
|
+
- Updated dependencies [beaf2de]
|
|
539
|
+
- Updated dependencies [369eb6e]
|
|
540
|
+
- Updated dependencies [06ff734]
|
|
541
|
+
- Updated dependencies [b659111]
|
|
542
|
+
- Updated dependencies [5754a23]
|
|
543
|
+
- Updated dependencies [6c270a6]
|
|
544
|
+
- Updated dependencies [290e2f0]
|
|
545
|
+
- Updated dependencies [668dd17]
|
|
546
|
+
- Updated dependencies [8abf133]
|
|
547
|
+
- Updated dependencies [e0859b1]
|
|
548
|
+
- Updated dependencies [ce468c8]
|
|
549
|
+
- Updated dependencies [04ecd4e]
|
|
550
|
+
- Updated dependencies [4d5a892]
|
|
551
|
+
- Updated dependencies [16cebeb]
|
|
552
|
+
- Updated dependencies [86d30af]
|
|
553
|
+
- Updated dependencies [8923843]
|
|
554
|
+
- Updated dependencies [a2795f6]
|
|
555
|
+
- Updated dependencies [f16b492]
|
|
556
|
+
- Updated dependencies [4b6fde8]
|
|
557
|
+
- Updated dependencies [2018df9]
|
|
558
|
+
- Updated dependencies [fc5a3a2]
|
|
559
|
+
- Updated dependencies [8ff9210]
|
|
560
|
+
- @objectstack/spec@16.0.0
|
|
561
|
+
- @objectstack/core@16.0.0
|
|
562
|
+
- @objectstack/driver-sql@16.0.0
|
|
563
|
+
|
|
564
|
+
## 16.0.0-rc.1
|
|
565
|
+
|
|
566
|
+
### Patch Changes
|
|
567
|
+
|
|
568
|
+
- Updated dependencies [6289ec3]
|
|
569
|
+
- Updated dependencies [8efa395]
|
|
570
|
+
- Updated dependencies [bfa3c3f]
|
|
571
|
+
- Updated dependencies [62a2117]
|
|
572
|
+
- Updated dependencies [06ff734]
|
|
573
|
+
- @objectstack/spec@16.0.0-rc.1
|
|
574
|
+
- @objectstack/core@16.0.0-rc.1
|
|
575
|
+
- @objectstack/driver-sql@16.0.0-rc.1
|
|
576
|
+
|
|
577
|
+
## 16.0.0-rc.0
|
|
578
|
+
|
|
579
|
+
### Patch Changes
|
|
580
|
+
|
|
581
|
+
- Updated dependencies [f972574]
|
|
582
|
+
- Updated dependencies [22013aa]
|
|
583
|
+
- Updated dependencies [3ad3dd5]
|
|
584
|
+
- Updated dependencies [3a18b60]
|
|
585
|
+
- Updated dependencies [a8aa34c]
|
|
586
|
+
- Updated dependencies [e057f42]
|
|
587
|
+
- Updated dependencies [a3823b2]
|
|
588
|
+
- Updated dependencies [43a3efb]
|
|
589
|
+
- Updated dependencies [524696a]
|
|
590
|
+
- Updated dependencies [5e3301d]
|
|
591
|
+
- Updated dependencies [dd9f223]
|
|
592
|
+
- Updated dependencies [47d923c]
|
|
593
|
+
- Updated dependencies [46e876c]
|
|
594
|
+
- Updated dependencies [5f05de2]
|
|
595
|
+
- Updated dependencies [021ba4c]
|
|
596
|
+
- Updated dependencies [158aa14]
|
|
597
|
+
- Updated dependencies [d2723e2]
|
|
598
|
+
- Updated dependencies [fefcd54]
|
|
599
|
+
- Updated dependencies [efbcfe1]
|
|
600
|
+
- Updated dependencies [beaf2de]
|
|
601
|
+
- Updated dependencies [369eb6e]
|
|
602
|
+
- Updated dependencies [b659111]
|
|
603
|
+
- Updated dependencies [5754a23]
|
|
604
|
+
- Updated dependencies [6c270a6]
|
|
605
|
+
- Updated dependencies [290e2f0]
|
|
606
|
+
- Updated dependencies [668dd17]
|
|
607
|
+
- Updated dependencies [8abf133]
|
|
608
|
+
- Updated dependencies [e0859b1]
|
|
609
|
+
- Updated dependencies [ce468c8]
|
|
610
|
+
- Updated dependencies [04ecd4e]
|
|
611
|
+
- Updated dependencies [4d5a892]
|
|
612
|
+
- Updated dependencies [16cebeb]
|
|
613
|
+
- Updated dependencies [86d30af]
|
|
614
|
+
- Updated dependencies [8923843]
|
|
615
|
+
- Updated dependencies [a2795f6]
|
|
616
|
+
- Updated dependencies [f16b492]
|
|
617
|
+
- Updated dependencies [4b6fde8]
|
|
618
|
+
- Updated dependencies [2018df9]
|
|
619
|
+
- Updated dependencies [fc5a3a2]
|
|
620
|
+
- @objectstack/spec@16.0.0-rc.0
|
|
621
|
+
- @objectstack/core@16.0.0-rc.0
|
|
622
|
+
- @objectstack/driver-sql@16.0.0-rc.0
|
|
623
|
+
|
|
624
|
+
## 15.1.1
|
|
625
|
+
|
|
626
|
+
### Patch Changes
|
|
627
|
+
|
|
628
|
+
- @objectstack/spec@15.1.1
|
|
629
|
+
- @objectstack/core@15.1.1
|
|
630
|
+
- @objectstack/driver-sql@15.1.1
|
|
631
|
+
|
|
632
|
+
## 15.1.0
|
|
633
|
+
|
|
634
|
+
### Patch Changes
|
|
635
|
+
|
|
636
|
+
- Updated dependencies [f531a26]
|
|
637
|
+
- Updated dependencies [f531a26]
|
|
638
|
+
- Updated dependencies [f531a26]
|
|
639
|
+
- Updated dependencies [f531a26]
|
|
640
|
+
- Updated dependencies [f531a26]
|
|
641
|
+
- Updated dependencies [f531a26]
|
|
642
|
+
- Updated dependencies [3fe9df1]
|
|
643
|
+
- Updated dependencies [f531a26]
|
|
644
|
+
- Updated dependencies [f531a26]
|
|
645
|
+
- Updated dependencies [f531a26]
|
|
646
|
+
- Updated dependencies [f531a26]
|
|
647
|
+
- Updated dependencies [f531a26]
|
|
648
|
+
- Updated dependencies [f531a26]
|
|
649
|
+
- Updated dependencies [f531a26]
|
|
650
|
+
- Updated dependencies [f531a26]
|
|
651
|
+
- Updated dependencies [f531a26]
|
|
652
|
+
- Updated dependencies [f531a26]
|
|
653
|
+
- Updated dependencies [f531a26]
|
|
654
|
+
- Updated dependencies [f531a26]
|
|
655
|
+
- Updated dependencies [4109153]
|
|
656
|
+
- Updated dependencies [f531a26]
|
|
657
|
+
- Updated dependencies [f531a26]
|
|
658
|
+
- Updated dependencies [f531a26]
|
|
659
|
+
- Updated dependencies [f531a26]
|
|
660
|
+
- Updated dependencies [f531a26]
|
|
661
|
+
- Updated dependencies [f531a26]
|
|
662
|
+
- Updated dependencies [627f225]
|
|
663
|
+
- Updated dependencies [f531a26]
|
|
664
|
+
- Updated dependencies [f531a26]
|
|
665
|
+
- Updated dependencies [f531a26]
|
|
666
|
+
- @objectstack/spec@15.1.0
|
|
667
|
+
- @objectstack/core@15.1.0
|
|
668
|
+
- @objectstack/driver-sql@15.1.0
|
|
669
|
+
|
|
670
|
+
## 15.0.0
|
|
671
|
+
|
|
672
|
+
### Patch Changes
|
|
673
|
+
|
|
674
|
+
- Updated dependencies [28b7c28]
|
|
675
|
+
- Updated dependencies [13749ec]
|
|
676
|
+
- Updated dependencies [e62c233]
|
|
677
|
+
- Updated dependencies [ed61c9b]
|
|
678
|
+
- Updated dependencies [31d04d4]
|
|
679
|
+
- @objectstack/spec@15.0.0
|
|
680
|
+
- @objectstack/core@15.0.0
|
|
681
|
+
- @objectstack/driver-sql@15.0.0
|
|
682
|
+
|
|
683
|
+
## 14.8.0
|
|
684
|
+
|
|
685
|
+
### Patch Changes
|
|
686
|
+
|
|
687
|
+
- a199626: Harden the wasm SQLite driver (the dev fallback used when native `better-sqlite3` has an ABI mismatch) against three failure modes that spammed `pnpm dev`:
|
|
688
|
+
|
|
689
|
+
- **Atomic flushes.** The database was persisted with a plain `writeFile` that truncates-then-streams in place, so a process killed mid-write (a dev-server restart, Ctrl-C, or crash — likely under `on-write`, where every dispatcher tick flushes) left a torn file that sql.js rejected on the next boot with `database disk image is malformed`. Flushes now write to a sibling temp file, `fsync`, and atomically `rename()` over the target, so a reader always sees a complete image.
|
|
690
|
+
- **Corruption self-heal.** When an on-disk image is already corrupt, the driver now detects it at open (via `PRAGMA quick_check`), quarantines the bad file to `<db>.corrupt-<timestamp>`, and boots on a fresh database — instead of failing every query forever with no path to recovery.
|
|
691
|
+
- **`undefined` bindings.** A raw `undefined` binding made sql.js `throw` a plain string (`Wrong API use : tried to bind a value of an unknown type (undefined).`), which aborted the write and logged as a garbled char-indexed object. `undefined` is now coerced to SQL `NULL`, matching the driver's `useNullAsDefault` semantics and the native better-sqlite3 path.
|
|
692
|
+
|
|
693
|
+
- Updated dependencies [16b4bf6]
|
|
694
|
+
- Updated dependencies [16b4bf6]
|
|
695
|
+
- Updated dependencies [10e8983]
|
|
696
|
+
- Updated dependencies [84650c5]
|
|
697
|
+
- Updated dependencies [607aaf4]
|
|
698
|
+
- Updated dependencies [bb71321]
|
|
699
|
+
- @objectstack/spec@14.8.0
|
|
700
|
+
- @objectstack/driver-sql@14.8.0
|
|
701
|
+
- @objectstack/core@14.8.0
|
|
702
|
+
|
|
703
|
+
## 14.7.0
|
|
704
|
+
|
|
705
|
+
### Patch Changes
|
|
706
|
+
|
|
707
|
+
- Updated dependencies [d6a72eb]
|
|
708
|
+
- @objectstack/spec@14.7.0
|
|
709
|
+
- @objectstack/core@14.7.0
|
|
710
|
+
- @objectstack/driver-sql@14.7.0
|
|
711
|
+
|
|
712
|
+
## 14.6.0
|
|
713
|
+
|
|
714
|
+
### Patch Changes
|
|
715
|
+
|
|
716
|
+
- Updated dependencies [609cb13]
|
|
717
|
+
- Updated dependencies [ce6d151]
|
|
718
|
+
- @objectstack/spec@14.6.0
|
|
719
|
+
- @objectstack/driver-sql@14.6.0
|
|
720
|
+
- @objectstack/core@14.6.0
|
|
721
|
+
|
|
722
|
+
## 14.5.0
|
|
723
|
+
|
|
724
|
+
### Patch Changes
|
|
725
|
+
|
|
726
|
+
- Updated dependencies [526805e]
|
|
727
|
+
- Updated dependencies [d79ca07]
|
|
728
|
+
- Updated dependencies [33ebd34]
|
|
729
|
+
- Updated dependencies [c044f08]
|
|
730
|
+
- Updated dependencies [01274eb]
|
|
731
|
+
- @objectstack/spec@14.5.0
|
|
732
|
+
- @objectstack/core@14.5.0
|
|
733
|
+
- @objectstack/driver-sql@14.5.0
|
|
734
|
+
|
|
735
|
+
## 14.4.0
|
|
736
|
+
|
|
737
|
+
### Minor Changes
|
|
738
|
+
|
|
739
|
+
- 7953832: ADR-0057 data lifecycle P1–P4 (#2786): platform-generated data is now bounded by construction.
|
|
740
|
+
|
|
741
|
+
- **P1 — contract**: new `lifecycle` object property (`class: record | audit | telemetry | transient | event` + `retention` / `ttl` / `storage(rotation)` / `archive` / `reclaim`), enforced by the platform-owned **LifecycleService** registered by `ObjectQLPlugin` (default-on; disable via `OS_LIFECYCLE_DISABLED=1` or plugin `lifecycle.enabled=false`). The Reaper batch-deletes rows past `retention.maxAge` / `ttl` under a system context and reclaims space (`SqlDriver.reclaimSpace()` → SQLite `PRAGMA incremental_vacuum`). Non-`record` classes must declare a bounding policy (parse-time invariant + spec-liveness gate + dogfood storage-growth gate).
|
|
742
|
+
- **P2 — rotation**: `storage: { strategy: 'rotation', shards, unit }` physically time-shards the table on SQLite — writes land in the current shard, reads go through a UNION-ALL view under the base name, expiry is an O(1) `DROP` of shards past the window. A legacy table is adopted as the first shard on upgrade. Other dialects fall back to an equivalent age-based reap.
|
|
743
|
+
- **P3 — separation + Archiver**: registering a datasource named `telemetry` routes telemetry/event/audit objects to it (opt-in by existence; `transient` deliberately stays on the primary). Audit objects with `archive` declared get retain → archive → delete once the archive datasource exists; without it rows are retained, never dropped unarchived.
|
|
744
|
+
- **P4 — governance**: new `lifecycle` settings namespace — runtime enable switch, per-object retention overrides (tenant-scoped: regulated tenants set years, dev sets days), per-object/per-class row quotas and growth alerts (observe-and-alert only).
|
|
745
|
+
|
|
746
|
+
**Behavior change**: 11 platform objects now carry lifecycle declarations and their telemetry is bounded by default — `sys_activity` 14d (rotated), `sys_audit_log` 90d hot → archive (retained forever until an `archive` datasource is registered), `sys_metadata_audit` 365d → archive, `sys_job_run` / `sys_automation_run` / `sys_http_delivery` 30d, notification pipeline (`sys_notification`, delivery, receipt, inbox) 90d, `sys_device_code` expires_at + 1d. Extend windows per environment/tenant via the `lifecycle.retention_overrides` setting.
|
|
747
|
+
|
|
748
|
+
### Patch Changes
|
|
749
|
+
|
|
750
|
+
- Updated dependencies [7953832]
|
|
751
|
+
- Updated dependencies [82e745e]
|
|
752
|
+
- Updated dependencies [f3035bd]
|
|
753
|
+
- Updated dependencies [82c0d94]
|
|
754
|
+
- Updated dependencies [7449476]
|
|
755
|
+
- @objectstack/spec@14.4.0
|
|
756
|
+
- @objectstack/driver-sql@14.4.0
|
|
757
|
+
- @objectstack/core@14.4.0
|
|
758
|
+
|
|
759
|
+
## 14.3.0
|
|
760
|
+
|
|
761
|
+
### Patch Changes
|
|
762
|
+
|
|
763
|
+
- Updated dependencies [2a71f48]
|
|
764
|
+
- Updated dependencies [02f6af4]
|
|
765
|
+
- Updated dependencies [c1064f1]
|
|
766
|
+
- @objectstack/spec@14.3.0
|
|
767
|
+
- @objectstack/core@14.3.0
|
|
768
|
+
- @objectstack/driver-sql@14.3.0
|
|
769
|
+
|
|
770
|
+
## 14.2.0
|
|
771
|
+
|
|
772
|
+
### Patch Changes
|
|
773
|
+
|
|
774
|
+
- Updated dependencies [ac8f029]
|
|
775
|
+
- Updated dependencies [4ab9958]
|
|
776
|
+
- @objectstack/spec@14.2.0
|
|
777
|
+
- @objectstack/core@14.2.0
|
|
778
|
+
- @objectstack/driver-sql@14.2.0
|
|
779
|
+
|
|
780
|
+
## 14.1.0
|
|
781
|
+
|
|
782
|
+
### Patch Changes
|
|
783
|
+
|
|
784
|
+
- Updated dependencies [5a8465f]
|
|
785
|
+
- Updated dependencies [7f8620b]
|
|
786
|
+
- Updated dependencies [82ba3a6]
|
|
787
|
+
- @objectstack/spec@14.1.0
|
|
788
|
+
- @objectstack/core@14.1.0
|
|
789
|
+
- @objectstack/driver-sql@14.1.0
|
|
790
|
+
|
|
791
|
+
## 14.0.0
|
|
792
|
+
|
|
793
|
+
### Patch Changes
|
|
794
|
+
|
|
795
|
+
- Updated dependencies [0a8e685]
|
|
796
|
+
- Updated dependencies [afa8115]
|
|
797
|
+
- Updated dependencies [80f12ca]
|
|
798
|
+
- Updated dependencies [e2fa074]
|
|
799
|
+
- Updated dependencies [23c8668]
|
|
800
|
+
- Updated dependencies [29f017d]
|
|
801
|
+
- Updated dependencies [afa8115]
|
|
802
|
+
- Updated dependencies [216fa9a]
|
|
803
|
+
- Updated dependencies [6c22b12]
|
|
804
|
+
- @objectstack/spec@14.0.0
|
|
805
|
+
- @objectstack/driver-sql@14.0.0
|
|
806
|
+
- @objectstack/core@14.0.0
|
|
807
|
+
|
|
808
|
+
## 13.0.0
|
|
809
|
+
|
|
810
|
+
### Patch Changes
|
|
811
|
+
|
|
812
|
+
- Updated dependencies [6d83431]
|
|
813
|
+
- Updated dependencies [01917c2]
|
|
814
|
+
- Updated dependencies [b271691]
|
|
815
|
+
- Updated dependencies [a5a1e41]
|
|
816
|
+
- Updated dependencies [466adf6]
|
|
817
|
+
- Updated dependencies [5be00c3]
|
|
818
|
+
- Updated dependencies [466adf6]
|
|
819
|
+
- Updated dependencies [2bee609]
|
|
820
|
+
- Updated dependencies [fc7e7f7]
|
|
821
|
+
- @objectstack/spec@13.0.0
|
|
822
|
+
- @objectstack/core@13.0.0
|
|
823
|
+
- @objectstack/driver-sql@13.0.0
|
|
824
|
+
|
|
825
|
+
## 12.6.0
|
|
826
|
+
|
|
827
|
+
### Patch Changes
|
|
828
|
+
|
|
829
|
+
- Updated dependencies [6cebf22]
|
|
830
|
+
- Updated dependencies [21420d9]
|
|
831
|
+
- @objectstack/spec@12.6.0
|
|
832
|
+
- @objectstack/core@12.6.0
|
|
833
|
+
- @objectstack/driver-sql@12.6.0
|
|
834
|
+
|
|
835
|
+
## 12.5.0
|
|
836
|
+
|
|
837
|
+
### Patch Changes
|
|
838
|
+
|
|
839
|
+
- Updated dependencies [8b3d363]
|
|
840
|
+
- @objectstack/spec@12.5.0
|
|
841
|
+
- @objectstack/core@12.5.0
|
|
842
|
+
- @objectstack/driver-sql@12.5.0
|
|
843
|
+
|
|
844
|
+
## 12.4.0
|
|
845
|
+
|
|
846
|
+
### Patch Changes
|
|
847
|
+
|
|
848
|
+
- Updated dependencies [60dc3ba]
|
|
849
|
+
- @objectstack/spec@12.4.0
|
|
850
|
+
- @objectstack/core@12.4.0
|
|
851
|
+
- @objectstack/driver-sql@12.4.0
|
|
852
|
+
|
|
853
|
+
## 12.3.0
|
|
854
|
+
|
|
855
|
+
### Patch Changes
|
|
856
|
+
|
|
857
|
+
- Updated dependencies [e7eceec]
|
|
858
|
+
- @objectstack/spec@12.3.0
|
|
859
|
+
- @objectstack/core@12.3.0
|
|
860
|
+
- @objectstack/driver-sql@12.3.0
|
|
861
|
+
|
|
862
|
+
## 12.2.0
|
|
863
|
+
|
|
864
|
+
### Patch Changes
|
|
865
|
+
|
|
866
|
+
- Updated dependencies [fce8ff4]
|
|
867
|
+
- Updated dependencies [3962023]
|
|
868
|
+
- Updated dependencies [2bb193d]
|
|
869
|
+
- Updated dependencies [0426d27]
|
|
870
|
+
- Updated dependencies [da807f7]
|
|
871
|
+
- Updated dependencies [4f5b791]
|
|
872
|
+
- @objectstack/spec@12.2.0
|
|
873
|
+
- @objectstack/core@12.2.0
|
|
874
|
+
- @objectstack/driver-sql@12.2.0
|
|
875
|
+
|
|
876
|
+
## 12.1.0
|
|
877
|
+
|
|
878
|
+
### Patch Changes
|
|
879
|
+
|
|
880
|
+
- Updated dependencies [93e6d02]
|
|
881
|
+
- @objectstack/spec@12.1.0
|
|
882
|
+
- @objectstack/core@12.1.0
|
|
883
|
+
- @objectstack/driver-sql@12.1.0
|
|
884
|
+
|
|
885
|
+
## 12.0.0
|
|
886
|
+
|
|
887
|
+
### Patch Changes
|
|
888
|
+
|
|
889
|
+
- Updated dependencies [a8df396]
|
|
890
|
+
- Updated dependencies [e695fe0]
|
|
891
|
+
- Updated dependencies [7c09621]
|
|
892
|
+
- Updated dependencies [7709db4]
|
|
893
|
+
- Updated dependencies [2082109]
|
|
894
|
+
- Updated dependencies [7c09621]
|
|
895
|
+
- Updated dependencies [9860de4]
|
|
896
|
+
- Updated dependencies [069c205]
|
|
897
|
+
- @objectstack/spec@12.0.0
|
|
898
|
+
- @objectstack/core@12.0.0
|
|
899
|
+
- @objectstack/driver-sql@12.0.0
|
|
900
|
+
|
|
901
|
+
## 11.10.0
|
|
902
|
+
|
|
903
|
+
### Patch Changes
|
|
904
|
+
|
|
905
|
+
- Updated dependencies [6a9397e]
|
|
906
|
+
- Updated dependencies [c0efe5d]
|
|
907
|
+
- @objectstack/spec@11.10.0
|
|
908
|
+
- @objectstack/core@11.10.0
|
|
909
|
+
- @objectstack/driver-sql@11.10.0
|
|
910
|
+
|
|
911
|
+
## 11.9.0
|
|
912
|
+
|
|
913
|
+
### Patch Changes
|
|
914
|
+
|
|
915
|
+
- Updated dependencies [d3595d9]
|
|
916
|
+
- Updated dependencies [8d87930]
|
|
917
|
+
- @objectstack/spec@11.9.0
|
|
918
|
+
- @objectstack/driver-sql@11.9.0
|
|
919
|
+
- @objectstack/core@11.9.0
|
|
920
|
+
|
|
921
|
+
## 11.8.0
|
|
922
|
+
|
|
923
|
+
### Patch Changes
|
|
924
|
+
|
|
925
|
+
- @objectstack/spec@11.8.0
|
|
926
|
+
- @objectstack/core@11.8.0
|
|
927
|
+
- @objectstack/driver-sql@11.8.0
|
|
928
|
+
|
|
929
|
+
## 11.7.0
|
|
930
|
+
|
|
931
|
+
### Patch Changes
|
|
932
|
+
|
|
933
|
+
- Updated dependencies [5178906]
|
|
934
|
+
- @objectstack/spec@11.7.0
|
|
935
|
+
- @objectstack/core@11.7.0
|
|
936
|
+
- @objectstack/driver-sql@11.7.0
|
|
937
|
+
|
|
938
|
+
## 11.6.0
|
|
939
|
+
|
|
940
|
+
### Patch Changes
|
|
941
|
+
|
|
942
|
+
- @objectstack/spec@11.6.0
|
|
943
|
+
- @objectstack/core@11.6.0
|
|
944
|
+
- @objectstack/driver-sql@11.6.0
|
|
945
|
+
|
|
946
|
+
## 11.5.0
|
|
947
|
+
|
|
948
|
+
### Patch Changes
|
|
949
|
+
|
|
950
|
+
- Updated dependencies [6ee4f04]
|
|
951
|
+
- Updated dependencies [c1e3a65]
|
|
952
|
+
- @objectstack/spec@11.5.0
|
|
953
|
+
- @objectstack/core@11.5.0
|
|
954
|
+
- @objectstack/driver-sql@11.5.0
|
|
955
|
+
|
|
956
|
+
## 11.4.0
|
|
957
|
+
|
|
958
|
+
### Patch Changes
|
|
959
|
+
|
|
960
|
+
- Updated dependencies [5821c51]
|
|
961
|
+
- Updated dependencies [a0fce3f]
|
|
962
|
+
- @objectstack/spec@11.4.0
|
|
963
|
+
- @objectstack/core@11.4.0
|
|
964
|
+
- @objectstack/driver-sql@11.4.0
|
|
965
|
+
|
|
966
|
+
## 11.3.0
|
|
967
|
+
|
|
968
|
+
### Patch Changes
|
|
969
|
+
|
|
970
|
+
- Updated dependencies [58e8e31]
|
|
971
|
+
- Updated dependencies [b4a5df0]
|
|
972
|
+
- @objectstack/spec@11.3.0
|
|
973
|
+
- @objectstack/core@11.3.0
|
|
974
|
+
- @objectstack/driver-sql@11.3.0
|
|
975
|
+
|
|
976
|
+
## 11.2.0
|
|
977
|
+
|
|
978
|
+
### Patch Changes
|
|
979
|
+
|
|
980
|
+
- Updated dependencies [d0f4b13]
|
|
981
|
+
- Updated dependencies [302bdab]
|
|
982
|
+
- @objectstack/spec@11.2.0
|
|
983
|
+
- @objectstack/core@11.2.0
|
|
984
|
+
- @objectstack/driver-sql@11.2.0
|
|
985
|
+
|
|
986
|
+
## 11.1.0
|
|
987
|
+
|
|
988
|
+
### Patch Changes
|
|
989
|
+
|
|
990
|
+
- Updated dependencies [ce0b4f6]
|
|
991
|
+
- Updated dependencies [9ccfcd6]
|
|
992
|
+
- Updated dependencies [ecf193f]
|
|
993
|
+
- Updated dependencies [51bec81]
|
|
994
|
+
- Updated dependencies [3e593a7]
|
|
995
|
+
- Updated dependencies [63d5403]
|
|
996
|
+
- @objectstack/core@11.1.0
|
|
997
|
+
- @objectstack/spec@11.1.0
|
|
998
|
+
- @objectstack/driver-sql@11.1.0
|
|
999
|
+
|
|
1000
|
+
## 11.0.0
|
|
1001
|
+
|
|
1002
|
+
### Patch Changes
|
|
1003
|
+
|
|
1004
|
+
- Updated dependencies [ab5718a]
|
|
1005
|
+
- Updated dependencies [4845c12]
|
|
1006
|
+
- Updated dependencies [c1a754a]
|
|
1007
|
+
- Updated dependencies [6fbe91f]
|
|
1008
|
+
- Updated dependencies [715d667]
|
|
1009
|
+
- Updated dependencies [5eef4cf]
|
|
1010
|
+
- Updated dependencies [72759e1]
|
|
1011
|
+
- Updated dependencies [6c4fbd9]
|
|
1012
|
+
- Updated dependencies [ef3ed67]
|
|
1013
|
+
- Updated dependencies [cd51229]
|
|
1014
|
+
- Updated dependencies [7697a0e]
|
|
1015
|
+
- Updated dependencies [e7e04f1]
|
|
1016
|
+
- Updated dependencies [cfd5ac4]
|
|
1017
|
+
- Updated dependencies [2be5c1f]
|
|
1018
|
+
- Updated dependencies [ad143ce]
|
|
1019
|
+
- Updated dependencies [5c4a8c8]
|
|
1020
|
+
- Updated dependencies [3afaeed]
|
|
1021
|
+
- Updated dependencies [8801c02]
|
|
1022
|
+
- Updated dependencies [3d04e06]
|
|
1023
|
+
- Updated dependencies [98a1535]
|
|
1024
|
+
- Updated dependencies [bc22a89]
|
|
1025
|
+
- Updated dependencies [8a7e9f1]
|
|
1026
|
+
- Updated dependencies [4a84c98]
|
|
1027
|
+
- Updated dependencies [c715d25]
|
|
1028
|
+
- Updated dependencies [aa33b02]
|
|
1029
|
+
- Updated dependencies [d980f0d]
|
|
1030
|
+
- Updated dependencies [a658523]
|
|
1031
|
+
- Updated dependencies [82ff91c]
|
|
1032
|
+
- Updated dependencies [638f472]
|
|
1033
|
+
- @objectstack/spec@11.0.0
|
|
1034
|
+
- @objectstack/driver-sql@11.0.0
|
|
1035
|
+
- @objectstack/core@11.0.0
|
|
1036
|
+
|
|
1037
|
+
## 10.3.0
|
|
1038
|
+
|
|
1039
|
+
### Patch Changes
|
|
1040
|
+
|
|
1041
|
+
- Updated dependencies [5ba52b0]
|
|
1042
|
+
- @objectstack/driver-sql@10.3.0
|
|
1043
|
+
- @objectstack/spec@10.3.0
|
|
1044
|
+
- @objectstack/core@10.3.0
|
|
1045
|
+
|
|
1046
|
+
## 10.2.0
|
|
1047
|
+
|
|
1048
|
+
### Patch Changes
|
|
1049
|
+
|
|
1050
|
+
- Updated dependencies [b496498]
|
|
1051
|
+
- @objectstack/spec@10.2.0
|
|
1052
|
+
- @objectstack/core@10.2.0
|
|
1053
|
+
- @objectstack/driver-sql@10.2.0
|
|
1054
|
+
|
|
1055
|
+
## 10.1.0
|
|
1056
|
+
|
|
1057
|
+
### Patch Changes
|
|
1058
|
+
|
|
1059
|
+
- Updated dependencies [49da36e]
|
|
1060
|
+
- Updated dependencies [ac79f16]
|
|
1061
|
+
- Updated dependencies [517dad9]
|
|
1062
|
+
- @objectstack/spec@10.1.0
|
|
1063
|
+
- @objectstack/driver-sql@10.1.0
|
|
1064
|
+
- @objectstack/core@10.1.0
|
|
1065
|
+
|
|
1066
|
+
## 10.0.0
|
|
1067
|
+
|
|
1068
|
+
### Patch Changes
|
|
1069
|
+
|
|
1070
|
+
- Updated dependencies [d7ff626]
|
|
1071
|
+
- Updated dependencies [92db3e5]
|
|
1072
|
+
- Updated dependencies [2a1b16b]
|
|
1073
|
+
- Updated dependencies [e16f2a8]
|
|
1074
|
+
- Updated dependencies [e411a82]
|
|
1075
|
+
- Updated dependencies [a581385]
|
|
1076
|
+
- Updated dependencies [d5f6d29]
|
|
1077
|
+
- Updated dependencies [220ce5b]
|
|
1078
|
+
- Updated dependencies [3efe334]
|
|
1079
|
+
- Updated dependencies [feead7e]
|
|
1080
|
+
- Updated dependencies [6ca20b3]
|
|
1081
|
+
- Updated dependencies [5f875fe]
|
|
1082
|
+
- Updated dependencies [b469950]
|
|
1083
|
+
- @objectstack/spec@10.0.0
|
|
1084
|
+
- @objectstack/driver-sql@10.0.0
|
|
1085
|
+
- @objectstack/core@10.0.0
|
|
1086
|
+
|
|
1087
|
+
## 9.11.0
|
|
1088
|
+
|
|
1089
|
+
### Patch Changes
|
|
1090
|
+
|
|
1091
|
+
- Updated dependencies [e7f6539]
|
|
1092
|
+
- Updated dependencies [2365d07]
|
|
1093
|
+
- Updated dependencies [6595b53]
|
|
1094
|
+
- Updated dependencies [fa8964d]
|
|
1095
|
+
- Updated dependencies [36138c7]
|
|
1096
|
+
- Updated dependencies [a8e4f3b]
|
|
1097
|
+
- Updated dependencies [4c213c2]
|
|
1098
|
+
- Updated dependencies [2afb612]
|
|
1099
|
+
- @objectstack/spec@9.11.0
|
|
1100
|
+
- @objectstack/driver-sql@9.11.0
|
|
1101
|
+
- @objectstack/core@9.11.0
|
|
1102
|
+
|
|
1103
|
+
## 9.10.0
|
|
1104
|
+
|
|
1105
|
+
### Patch Changes
|
|
1106
|
+
|
|
1107
|
+
- Updated dependencies [db02bd5]
|
|
1108
|
+
- Updated dependencies [641675d]
|
|
1109
|
+
- Updated dependencies [d9508d1]
|
|
1110
|
+
- Updated dependencies [1d352d3]
|
|
1111
|
+
- Updated dependencies [94e9040]
|
|
1112
|
+
- Updated dependencies [1f88fd9]
|
|
1113
|
+
- Updated dependencies [1f88fd9]
|
|
1114
|
+
- @objectstack/driver-sql@9.10.0
|
|
1115
|
+
- @objectstack/spec@9.10.0
|
|
1116
|
+
- @objectstack/core@9.10.0
|
|
1117
|
+
|
|
1118
|
+
## 9.9.1
|
|
1119
|
+
|
|
1120
|
+
### Patch Changes
|
|
1121
|
+
|
|
1122
|
+
- @objectstack/spec@9.9.1
|
|
1123
|
+
- @objectstack/core@9.9.1
|
|
1124
|
+
- @objectstack/driver-sql@9.9.1
|
|
1125
|
+
|
|
1126
|
+
## 9.9.0
|
|
1127
|
+
|
|
1128
|
+
### Patch Changes
|
|
1129
|
+
|
|
1130
|
+
- Updated dependencies [84249a4]
|
|
1131
|
+
- Updated dependencies [796f0d6]
|
|
1132
|
+
- Updated dependencies [11af299]
|
|
1133
|
+
- Updated dependencies [d5774b5]
|
|
1134
|
+
- Updated dependencies [bfa3102]
|
|
1135
|
+
- Updated dependencies [134043a]
|
|
1136
|
+
- Updated dependencies [90108e0]
|
|
1137
|
+
- Updated dependencies [9afeb2d]
|
|
1138
|
+
- Updated dependencies [6bec07e]
|
|
1139
|
+
- Updated dependencies [601cc11]
|
|
1140
|
+
- Updated dependencies [575448d]
|
|
1141
|
+
- @objectstack/spec@9.9.0
|
|
1142
|
+
- @objectstack/driver-sql@9.9.0
|
|
1143
|
+
- @objectstack/core@9.9.0
|
|
1144
|
+
|
|
1145
|
+
## 9.8.0
|
|
1146
|
+
|
|
1147
|
+
### Patch Changes
|
|
1148
|
+
|
|
1149
|
+
- Updated dependencies [97c55b3]
|
|
1150
|
+
- Updated dependencies [1b1f490]
|
|
1151
|
+
- @objectstack/spec@9.8.0
|
|
1152
|
+
- @objectstack/core@9.8.0
|
|
1153
|
+
- @objectstack/driver-sql@9.8.0
|
|
1154
|
+
|
|
1155
|
+
## 9.7.0
|
|
1156
|
+
|
|
1157
|
+
### Patch Changes
|
|
1158
|
+
|
|
1159
|
+
- @objectstack/spec@9.7.0
|
|
1160
|
+
- @objectstack/core@9.7.0
|
|
1161
|
+
- @objectstack/driver-sql@9.7.0
|
|
1162
|
+
|
|
1163
|
+
## 9.6.0
|
|
1164
|
+
|
|
1165
|
+
### Patch Changes
|
|
1166
|
+
|
|
1167
|
+
- Updated dependencies [d1e930a]
|
|
1168
|
+
- Updated dependencies [71578f2]
|
|
1169
|
+
- Updated dependencies [5e3a301]
|
|
1170
|
+
- Updated dependencies [5db2742]
|
|
1171
|
+
- @objectstack/spec@9.6.0
|
|
1172
|
+
- @objectstack/core@9.6.0
|
|
1173
|
+
- @objectstack/driver-sql@9.6.0
|
|
1174
|
+
|
|
1175
|
+
## 9.5.1
|
|
1176
|
+
|
|
1177
|
+
### Patch Changes
|
|
1178
|
+
|
|
1179
|
+
- Updated dependencies [ee72aae]
|
|
1180
|
+
- @objectstack/spec@9.5.1
|
|
1181
|
+
- @objectstack/core@9.5.1
|
|
1182
|
+
- @objectstack/driver-sql@9.5.1
|
|
1183
|
+
|
|
1184
|
+
## 9.5.0
|
|
1185
|
+
|
|
1186
|
+
### Patch Changes
|
|
1187
|
+
|
|
1188
|
+
- Updated dependencies [d08551c]
|
|
1189
|
+
- Updated dependencies [707aeed]
|
|
1190
|
+
- Updated dependencies [7a103d4]
|
|
1191
|
+
- Updated dependencies [4b01250]
|
|
1192
|
+
- @objectstack/spec@9.5.0
|
|
1193
|
+
- @objectstack/core@9.5.0
|
|
1194
|
+
- @objectstack/driver-sql@9.5.0
|
|
1195
|
+
|
|
1196
|
+
## 9.4.0
|
|
1197
|
+
|
|
1198
|
+
### Patch Changes
|
|
1199
|
+
|
|
1200
|
+
- Updated dependencies [060467a]
|
|
1201
|
+
- Updated dependencies [0856476]
|
|
1202
|
+
- Updated dependencies [b678d8c]
|
|
1203
|
+
- Updated dependencies [b678d8c]
|
|
1204
|
+
- Updated dependencies [b678d8c]
|
|
1205
|
+
- Updated dependencies [b678d8c]
|
|
1206
|
+
- @objectstack/spec@9.4.0
|
|
1207
|
+
- @objectstack/driver-sql@9.4.0
|
|
1208
|
+
- @objectstack/core@9.4.0
|
|
1209
|
+
|
|
1210
|
+
## 9.3.0
|
|
1211
|
+
|
|
1212
|
+
### Patch Changes
|
|
1213
|
+
|
|
1214
|
+
- Updated dependencies [1ada658]
|
|
1215
|
+
- Updated dependencies [3219191]
|
|
1216
|
+
- Updated dependencies [290f631]
|
|
1217
|
+
- Updated dependencies [50b7b47]
|
|
1218
|
+
- Updated dependencies [f15d6f6]
|
|
1219
|
+
- Updated dependencies [f8684ea]
|
|
1220
|
+
- Updated dependencies [b4765be]
|
|
1221
|
+
- @objectstack/spec@9.3.0
|
|
1222
|
+
- @objectstack/core@9.3.0
|
|
1223
|
+
- @objectstack/driver-sql@9.3.0
|
|
1224
|
+
|
|
1225
|
+
## 9.2.0
|
|
1226
|
+
|
|
1227
|
+
### Patch Changes
|
|
1228
|
+
|
|
1229
|
+
- Updated dependencies [2f57b75]
|
|
1230
|
+
- Updated dependencies [2f57b75]
|
|
1231
|
+
- @objectstack/spec@9.2.0
|
|
1232
|
+
- @objectstack/core@9.2.0
|
|
1233
|
+
- @objectstack/driver-sql@9.2.0
|
|
1234
|
+
|
|
1235
|
+
## 9.1.0
|
|
1236
|
+
|
|
1237
|
+
### Patch Changes
|
|
1238
|
+
|
|
1239
|
+
- Updated dependencies [b9062c9]
|
|
1240
|
+
- @objectstack/spec@9.1.0
|
|
1241
|
+
- @objectstack/core@9.1.0
|
|
1242
|
+
- @objectstack/driver-sql@9.1.0
|
|
1243
|
+
|
|
1244
|
+
## 9.0.1
|
|
1245
|
+
|
|
1246
|
+
### Patch Changes
|
|
1247
|
+
|
|
1248
|
+
- Updated dependencies [1817845]
|
|
1249
|
+
- @objectstack/spec@9.0.1
|
|
1250
|
+
- @objectstack/core@9.0.1
|
|
1251
|
+
- @objectstack/driver-sql@9.0.1
|
|
1252
|
+
|
|
1253
|
+
## 9.0.0
|
|
1254
|
+
|
|
1255
|
+
### Patch Changes
|
|
1256
|
+
|
|
1257
|
+
- Updated dependencies [4c3f693]
|
|
1258
|
+
- Updated dependencies [0bf39f1]
|
|
1259
|
+
- Updated dependencies [f533f42]
|
|
1260
|
+
- Updated dependencies [1c83ee8]
|
|
1261
|
+
- @objectstack/spec@9.0.0
|
|
1262
|
+
- @objectstack/core@9.0.0
|
|
1263
|
+
- @objectstack/driver-sql@9.0.0
|
|
1264
|
+
|
|
1265
|
+
## 8.0.1
|
|
1266
|
+
|
|
1267
|
+
### Patch Changes
|
|
1268
|
+
|
|
1269
|
+
- @objectstack/spec@8.0.1
|
|
1270
|
+
- @objectstack/core@8.0.1
|
|
1271
|
+
- @objectstack/driver-sql@8.0.1
|
|
1272
|
+
|
|
1273
|
+
## 8.0.0
|
|
1274
|
+
|
|
1275
|
+
### Patch Changes
|
|
1276
|
+
|
|
1277
|
+
- Updated dependencies [a46c017]
|
|
1278
|
+
- Updated dependencies [b990b89]
|
|
1279
|
+
- Updated dependencies [99111ec]
|
|
1280
|
+
- Updated dependencies [d5a8161]
|
|
1281
|
+
- Updated dependencies [5cf1f1b]
|
|
1282
|
+
- Updated dependencies [9ef89d4]
|
|
1283
|
+
- Updated dependencies [1e8b680]
|
|
1284
|
+
- Updated dependencies [3306d2f]
|
|
1285
|
+
- Updated dependencies [c262301]
|
|
1286
|
+
- Updated dependencies [bc44195]
|
|
1287
|
+
- Updated dependencies [9e2e229]
|
|
1288
|
+
- @objectstack/spec@8.0.0
|
|
1289
|
+
- @objectstack/driver-sql@8.0.0
|
|
1290
|
+
- @objectstack/core@8.0.0
|
|
1291
|
+
|
|
1292
|
+
## 7.9.0
|
|
1293
|
+
|
|
1294
|
+
### Patch Changes
|
|
1295
|
+
|
|
1296
|
+
- @objectstack/spec@7.9.0
|
|
1297
|
+
- @objectstack/core@7.9.0
|
|
1298
|
+
- @objectstack/driver-sql@7.9.0
|
|
1299
|
+
|
|
1300
|
+
## 7.8.0
|
|
1301
|
+
|
|
1302
|
+
### Patch Changes
|
|
1303
|
+
|
|
1304
|
+
- Updated dependencies [06f2bbb]
|
|
1305
|
+
- Updated dependencies [36719db]
|
|
1306
|
+
- Updated dependencies [424ab26]
|
|
1307
|
+
- @objectstack/spec@7.8.0
|
|
1308
|
+
- @objectstack/core@7.8.0
|
|
1309
|
+
- @objectstack/driver-sql@7.8.0
|
|
1310
|
+
|
|
1311
|
+
## 7.7.0
|
|
1312
|
+
|
|
1313
|
+
### Patch Changes
|
|
1314
|
+
|
|
1315
|
+
- Updated dependencies [b391955]
|
|
1316
|
+
- Updated dependencies [f06b64e]
|
|
1317
|
+
- Updated dependencies [023bf93]
|
|
1318
|
+
- Updated dependencies [764c747]
|
|
1319
|
+
- @objectstack/spec@7.7.0
|
|
1320
|
+
- @objectstack/driver-sql@7.7.0
|
|
1321
|
+
- @objectstack/core@7.7.0
|
|
1322
|
+
|
|
1323
|
+
## 7.6.0
|
|
1324
|
+
|
|
1325
|
+
### Patch Changes
|
|
1326
|
+
|
|
1327
|
+
- be20aa4: Fix `COMMIT; - cannot commit - no transaction is active` under `persist: 'on-write'` (#1494).
|
|
1328
|
+
|
|
1329
|
+
sql.js's `Database.export()` closes and reopens the database (it has no in-place
|
|
1330
|
+
serialize), which rolls back any open transaction. The fire-and-forget flush
|
|
1331
|
+
triggered after a write inside a Knex transaction (e.g. the autonumber sequence
|
|
1332
|
+
`BEGIN…COMMIT`) could therefore abort that transaction, leaving the trailing
|
|
1333
|
+
`COMMIT` to fail. The connection is now transaction-aware: `flush()` is deferred
|
|
1334
|
+
while a transaction is open and runs once it fully closes, so committed data is
|
|
1335
|
+
still persisted without aborting in-flight transactions.
|
|
1336
|
+
|
|
1337
|
+
- Updated dependencies [955d4c8]
|
|
1338
|
+
- Updated dependencies [c4a4cbd]
|
|
1339
|
+
- Updated dependencies [b046ec2]
|
|
1340
|
+
- Updated dependencies [2170ad9]
|
|
1341
|
+
- Updated dependencies [02d6359]
|
|
1342
|
+
- Updated dependencies [7648242]
|
|
1343
|
+
- Updated dependencies [8fa1e7f]
|
|
1344
|
+
- Updated dependencies [55866f5]
|
|
1345
|
+
- Updated dependencies [60f9c45]
|
|
1346
|
+
- @objectstack/spec@7.6.0
|
|
1347
|
+
- @objectstack/core@7.6.0
|
|
1348
|
+
- @objectstack/driver-sql@7.6.0
|
|
1349
|
+
|
|
1350
|
+
## 7.5.0
|
|
1351
|
+
|
|
1352
|
+
### Patch Changes
|
|
1353
|
+
|
|
1354
|
+
- @objectstack/spec@7.5.0
|
|
1355
|
+
- @objectstack/core@7.5.0
|
|
1356
|
+
- @objectstack/driver-sql@7.5.0
|
|
1357
|
+
|
|
1358
|
+
## 7.4.1
|
|
1359
|
+
|
|
1360
|
+
### Patch Changes
|
|
1361
|
+
|
|
1362
|
+
- @objectstack/spec@7.4.1
|
|
1363
|
+
- @objectstack/core@7.4.1
|
|
1364
|
+
- @objectstack/driver-sql@7.4.1
|
|
1365
|
+
|
|
1366
|
+
## 7.4.0
|
|
1367
|
+
|
|
1368
|
+
### Patch Changes
|
|
1369
|
+
|
|
1370
|
+
- Updated dependencies [23c7107]
|
|
1371
|
+
- Updated dependencies [c72daad]
|
|
1372
|
+
- Updated dependencies [f115182]
|
|
1373
|
+
- Updated dependencies [24c9013]
|
|
1374
|
+
- Updated dependencies [2faf9f2]
|
|
1375
|
+
- Updated dependencies [2faf9f2]
|
|
1376
|
+
- Updated dependencies [2faf9f2]
|
|
1377
|
+
- Updated dependencies [58b450b]
|
|
1378
|
+
- Updated dependencies [82eb6cf]
|
|
1379
|
+
- Updated dependencies [13d8653]
|
|
1380
|
+
- Updated dependencies [ff3d006]
|
|
1381
|
+
- Updated dependencies [5e831de]
|
|
1382
|
+
- @objectstack/spec@7.4.0
|
|
1383
|
+
- @objectstack/driver-sql@7.4.0
|
|
1384
|
+
- @objectstack/core@7.4.0
|
|
1385
|
+
|
|
1386
|
+
## 7.3.0
|
|
1387
|
+
|
|
1388
|
+
### Patch Changes
|
|
1389
|
+
|
|
1390
|
+
- Updated dependencies [5e7c554]
|
|
1391
|
+
- @objectstack/spec@7.3.0
|
|
1392
|
+
- @objectstack/core@7.3.0
|
|
1393
|
+
- @objectstack/driver-sql@7.3.0
|
|
1394
|
+
|
|
1395
|
+
## 7.2.1
|
|
1396
|
+
|
|
1397
|
+
### Patch Changes
|
|
1398
|
+
|
|
1399
|
+
- @objectstack/spec@7.2.1
|
|
1400
|
+
- @objectstack/core@7.2.1
|
|
1401
|
+
- @objectstack/driver-sql@7.2.1
|
|
1402
|
+
|
|
1403
|
+
## 7.2.0
|
|
1404
|
+
|
|
1405
|
+
### Patch Changes
|
|
1406
|
+
|
|
1407
|
+
- @objectstack/spec@7.2.0
|
|
1408
|
+
- @objectstack/core@7.2.0
|
|
1409
|
+
- @objectstack/driver-sql@7.2.0
|
|
1410
|
+
|
|
1411
|
+
## 7.1.0
|
|
1412
|
+
|
|
1413
|
+
### Patch Changes
|
|
1414
|
+
|
|
1415
|
+
- Updated dependencies [47a92f4]
|
|
1416
|
+
- @objectstack/spec@7.1.0
|
|
1417
|
+
- @objectstack/core@7.1.0
|
|
1418
|
+
- @objectstack/driver-sql@7.1.0
|
|
1419
|
+
|
|
1420
|
+
## 7.0.0
|
|
1421
|
+
|
|
1422
|
+
### Patch Changes
|
|
1423
|
+
|
|
1424
|
+
- Updated dependencies [74470ad]
|
|
1425
|
+
- Updated dependencies [d29617e]
|
|
1426
|
+
- Updated dependencies [dc72172]
|
|
1427
|
+
- @objectstack/spec@7.0.0
|
|
1428
|
+
- @objectstack/core@7.0.0
|
|
1429
|
+
- @objectstack/driver-sql@7.0.0
|
|
1430
|
+
|
|
1431
|
+
## 6.9.0
|
|
1432
|
+
|
|
1433
|
+
### Patch Changes
|
|
1434
|
+
|
|
1435
|
+
- @objectstack/spec@6.9.0
|
|
1436
|
+
- @objectstack/core@6.9.0
|
|
1437
|
+
- @objectstack/driver-sql@6.9.0
|
|
1438
|
+
|
|
1439
|
+
## 6.8.1
|
|
1440
|
+
|
|
1441
|
+
### Patch Changes
|
|
1442
|
+
|
|
1443
|
+
- @objectstack/spec@6.8.1
|
|
1444
|
+
- @objectstack/core@6.8.1
|
|
1445
|
+
- @objectstack/driver-sql@6.8.1
|
|
1446
|
+
|
|
1447
|
+
## 6.8.0
|
|
1448
|
+
|
|
1449
|
+
### Patch Changes
|
|
1450
|
+
|
|
1451
|
+
- Updated dependencies [6e88f77]
|
|
1452
|
+
- Updated dependencies [c8b9f57]
|
|
1453
|
+
- @objectstack/spec@6.8.0
|
|
1454
|
+
- @objectstack/core@6.8.0
|
|
1455
|
+
- @objectstack/driver-sql@6.8.0
|
|
1456
|
+
|
|
1457
|
+
## 6.7.1
|
|
1458
|
+
|
|
1459
|
+
### Patch Changes
|
|
1460
|
+
|
|
1461
|
+
- @objectstack/spec@6.7.1
|
|
1462
|
+
- @objectstack/core@6.7.1
|
|
1463
|
+
- @objectstack/driver-sql@6.7.1
|
|
1464
|
+
|
|
1465
|
+
## 6.7.0
|
|
1466
|
+
|
|
1467
|
+
### Patch Changes
|
|
1468
|
+
|
|
1469
|
+
- Updated dependencies [4944f3a]
|
|
1470
|
+
- Updated dependencies [430067b]
|
|
1471
|
+
- Updated dependencies [4f9e9d4]
|
|
1472
|
+
- @objectstack/driver-sql@6.7.0
|
|
1473
|
+
- @objectstack/spec@6.7.0
|
|
1474
|
+
- @objectstack/core@6.7.0
|
|
1475
|
+
|
|
1476
|
+
## 6.6.0
|
|
1477
|
+
|
|
1478
|
+
### Patch Changes
|
|
1479
|
+
|
|
1480
|
+
- Updated dependencies [a49cfc2]
|
|
1481
|
+
- @objectstack/spec@6.6.0
|
|
1482
|
+
- @objectstack/core@6.6.0
|
|
1483
|
+
- @objectstack/driver-sql@6.6.0
|
|
1484
|
+
|
|
1485
|
+
## 6.5.1
|
|
1486
|
+
|
|
1487
|
+
### Patch Changes
|
|
1488
|
+
|
|
1489
|
+
- @objectstack/spec@6.5.1
|
|
1490
|
+
- @objectstack/core@6.5.1
|
|
1491
|
+
- @objectstack/driver-sql@6.5.1
|
|
1492
|
+
|
|
1493
|
+
## 6.5.0
|
|
1494
|
+
|
|
1495
|
+
### Patch Changes
|
|
1496
|
+
|
|
1497
|
+
- @objectstack/spec@6.5.0
|
|
1498
|
+
- @objectstack/core@6.5.0
|
|
1499
|
+
- @objectstack/driver-sql@6.5.0
|
|
1500
|
+
|
|
1501
|
+
## 6.4.0
|
|
1502
|
+
|
|
1503
|
+
### Patch Changes
|
|
1504
|
+
|
|
1505
|
+
- Updated dependencies [f8651cc]
|
|
1506
|
+
- Updated dependencies [f8651cc]
|
|
1507
|
+
- Updated dependencies [0bf6f9a]
|
|
1508
|
+
- @objectstack/spec@6.4.0
|
|
1509
|
+
- @objectstack/core@6.4.0
|
|
1510
|
+
- @objectstack/driver-sql@6.4.0
|
|
1511
|
+
|
|
1512
|
+
## 6.3.0
|
|
1513
|
+
|
|
1514
|
+
### Patch Changes
|
|
1515
|
+
|
|
1516
|
+
- @objectstack/spec@6.3.0
|
|
1517
|
+
- @objectstack/core@6.3.0
|
|
1518
|
+
- @objectstack/driver-sql@6.3.0
|
|
1519
|
+
|
|
1520
|
+
## 6.2.0
|
|
1521
|
+
|
|
1522
|
+
### Patch Changes
|
|
1523
|
+
|
|
1524
|
+
- Updated dependencies [b4c74a9]
|
|
1525
|
+
- @objectstack/spec@6.2.0
|
|
1526
|
+
- @objectstack/core@6.2.0
|
|
1527
|
+
- @objectstack/driver-sql@6.2.0
|
|
1528
|
+
|
|
1529
|
+
## 6.1.1
|
|
1530
|
+
|
|
1531
|
+
### Patch Changes
|
|
1532
|
+
|
|
1533
|
+
- 084ee2f: Sync `@objectstack/driver-sqlite-wasm` into the v6 fixed-version group so it
|
|
1534
|
+
releases in lockstep with the rest of the framework. The package was
|
|
1535
|
+
previously stuck at 5.2.1 on npm while every other `@objectstack/*` package
|
|
1536
|
+
moved to 6.0.0, which broke StackBlitz/WebContainer installs of templates
|
|
1537
|
+
that pin `^6.0.0`.
|
|
1538
|
+
- @objectstack/spec@6.1.1
|
|
1539
|
+
- @objectstack/core@6.1.1
|
|
1540
|
+
- @objectstack/driver-sql@6.1.1
|
|
1541
|
+
|
|
1542
|
+
## 5.2.2
|
|
1543
|
+
|
|
1544
|
+
### Patch Changes
|
|
1545
|
+
|
|
1546
|
+
- Updated dependencies [93c0589]
|
|
1547
|
+
- @objectstack/spec@6.1.0
|
|
1548
|
+
- @objectstack/core@6.1.0
|
|
1549
|
+
- @objectstack/driver-sql@6.1.0
|
|
1550
|
+
|
|
1551
|
+
## 5.2.1
|
|
1552
|
+
|
|
1553
|
+
### Patch Changes
|
|
1554
|
+
|
|
1555
|
+
- Updated dependencies [629a716]
|
|
1556
|
+
- Updated dependencies [dbc4f7d]
|
|
1557
|
+
- Updated dependencies [944f187]
|
|
1558
|
+
- @objectstack/spec@6.0.0
|
|
1559
|
+
- @objectstack/core@6.0.0
|
|
1560
|
+
- @objectstack/driver-sql@6.0.0
|