@objectstack/plugin-approvals 17.0.0-rc.1 → 17.0.0-rc.2

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 CHANGED
@@ -1,5 +1,429 @@
1
1
  # @objectstack/plugin-approvals
2
2
 
3
+ ## 17.0.0-rc.2
4
+
5
+ ### Minor Changes
6
+
7
+ - 2826d1e: fix(automation,approvals): an approval decision can no longer succeed while its flow stays parked (#4420)
8
+
9
+ A flow paused at an `approval` node, a deploy, then an approver clicking
10
+ Approve: the request row flipped to `approved`, the UI toasted success — and
11
+ the flow never moved. No next-stage request, no error, the record's mirrored
12
+ status frozen mid-workflow. Approval flows pause for days by design, so a
13
+ restart mid-flight is the normal case: every release could quietly zombify
14
+ every in-flight approval, with the approvers none the wiser.
15
+
16
+ Durable suspended runs (#1518) had shipped and were not the missing piece. Two
17
+ other things were.
18
+
19
+ **The wiring could enable a store over a table nobody had created.** Object
20
+ registration and store activation resolve different services in different
21
+ phases — `manifest` at `init()`, `objectql` at `start()` — and the plugin
22
+ declared no ordering. Composed ahead of ObjectQL, `init()` found no `manifest`,
23
+ warned, and continued; `start()` then attached the DB-backed store anyway. Every
24
+ suspend failed with `no such table: sys_automation_run` into a log line nobody
25
+ read, pauses silently stayed in memory, and the next restart lost them all.
26
+ Now: `AutomationServicePlugin` declares `optionalDependencies:
27
+ ['com.objectstack.engine.objectql']` (order-if-present, per ADR-0116 — an
28
+ engine-less kernel must still boot); a registration missed at `init()` is
29
+ retried at `start()`, which still lands before ObjectQL's schema sync; the
30
+ store is never attached when registration did not happen, and says so at
31
+ **error** level instead of warning; the table is probed once at boot so a
32
+ broken setup surfaces there rather than one failed write at a time; and a
33
+ failed durable write of a paused run is logged at error — it is data loss in
34
+ waiting, not a warning.
35
+
36
+ **A reported resume failure read as success.** `AutomationEngine.resume()`
37
+ answers a lost run by _returning_ `{ success: false }`, never by throwing.
38
+ `ApprovalService` discarded that return value, and `decide()` counted only a
39
+ thrown error as failure — so a decision against a dead run came back
40
+ `resumed: true`, HTTP 200. Resume failures are now classified
41
+ (`RUN_NOT_FOUND`, `STORE_UNAVAILABLE`, `RESUME_IN_PROGRESS`, joining
42
+ `PERMISSION_DENIED` / `INVALID_SIGNAL`), so a run that is gone for good is
43
+ distinguishable from a store that is merely unreachable, and the raw resume
44
+ route maps them to 404 / 503 / 409.
45
+
46
+ Approvals acts on them. A new `AutomationEngine.hasSuspendedRun(runId)` — which
47
+ reads the suspension store, unlike `getRun()`, and throws rather than answering
48
+ `false` when the store is unreadable — pre-flights every flow-advancing
49
+ operation (`decide`, `sendBack`, `resubmit`) **before its first write**, so the
50
+ zombie half-state is never created rather than merely reported: the decision
51
+ fails with `RESUME_TARGET_LOST` (HTTP 409) and the request stays actionable. A
52
+ resume that fails after the decision is durable can no longer be undone, but it
53
+ now throws `RESUME_FAILED` (HTTP 500) naming the stranded run instead of
54
+ reporting success. A concurrent duplicate resume stays benign — the engine's
55
+ idempotency guard is doing its job — and reports through the new optional
56
+ `resumeError` field. Recall and revise-window cancellation stay non-fatal by
57
+ design (they abandon the request), but log at error with the reason instead of
58
+ swallowing it. Compositions with no automation engine attached are unaffected.
59
+
60
+ Existing zombie requests from affected deployments (already `approved`, run
61
+ stranded) are not repaired by this change — `releaseDeadRunRequests` only
62
+ sweeps requests that are still `pending`.
63
+
64
+ - 0848bea: feat(spec)!: retire the overloaded `managedBy: 'system'` bucket — the residue becomes `system-data` (#3355)
65
+
66
+ **FROM → TO: `managedBy: 'system'` → `managedBy: 'system-data'`.** One-line fix:
67
+ rename the value. Nothing else about the object changes. `os migrate meta --from 16`
68
+ rewrites it for you; stored metadata is CONVERTED by the ADR-0087 entry
69
+ `object-managed-by-system-to-system-data`, never silently reinterpreted.
70
+
71
+ ADR-0103 split the overloaded `system` bucket in v16, and it split it
72
+ **additively**: the 20 engine-owned objects moved to the new explicit
73
+ `engine-owned`, while the 8 admin/user-writable ones — the RBAC link tables
74
+ (`sys_user_position`, `sys_user_permission_set`, `sys_position_permission_set`),
75
+ `sys_user_preference`, `sys_approval_delegation`, and the three messaging config
76
+ grids — stayed behind on `system`. That was the right move for a v16 that could
77
+ not break authors, but it left the enum in a state where the surviving value
78
+ names the half that had already moved out: `system` sitting on precisely the
79
+ objects a user writes.
80
+
81
+ That is not a cosmetic complaint. An author choosing between `system` and
82
+ `engine-owned` had nothing in the vocabulary to choose _on_, so the bucket was
83
+ re-overloadable by anyone reading the name in good faith — a model author most
84
+ of all, since "system table" reads as "the engine owns this" in every other
85
+ codebase. `system-data` states both boundaries explicitly: the **schema** is the
86
+ platform's (versus `platform`, which is tenant-modelled), the **data** is the
87
+ admin's or the user's (versus `engine-owned`, where the engine owns both).
88
+
89
+ Because v16 already drained the engine side, the conversion is a **one-to-one
90
+ mechanical value rename** with no judgement call — by construction every
91
+ remaining `system` declaration is writable platform data.
92
+
93
+ **One deliberate consequence — the affordance default flips.** `system` defaulted
94
+ LOCKED and each of the 8 objects re-opened its writes with a
95
+ `userActions: { create: true, edit: true, delete: true }` block. `system-data`
96
+ defaults **WRITABLE** (full CRUD), because a bucket that exists to say "the data
97
+ is yours" should not make every member ask for it back. Those blocks are now
98
+ redundant and have been deleted from the 8 platform objects; keep `userActions`
99
+ only to **NARROW**. If you converted an object that carried no `userActions`, it
100
+ gains the generic affordances — the honest reading of the bucket it moved into.
101
+
102
+ **No enforcement moves.** The engine write guard, the `DelegatedAdminGate`, RLS
103
+ and permission sets all adjudicate off resolved affordances and the principal,
104
+ never off the bucket name. `system-data` simply joins `platform` / `config` as a
105
+ bucket the fail-closed guard does not cover, because a writable default has
106
+ nothing to close on. The 8 objects passed that guard before (via `userActions`)
107
+ and pass it now (via the bucket default), for the same resolved-affordance
108
+ reason.
109
+
110
+ `'system'` is **retired from the load path**: the enum rejects it with a
111
+ prescription naming `system-data` and the one-line fix. Absorbing it silently at
112
+ load would leave every author still writing the name this rename exists to
113
+ unteach.
114
+
115
+ ### Patch Changes
116
+
117
+ - 5a84d41: fix(approvals): record an admin override of a staffed approver slate AS an override (#4466)
118
+
119
+ An admin who is not in a request's `pending_approvers` may still act on it — the
120
+ `#3424` privileged-override path exists so a request routed to an unstaffed
121
+ position, or to approvers who have all left, is not undecidable forever. The
122
+ override is defensible; what was not is what the audit trail recorded.
123
+
124
+ `sys_approval_action` had no override column at all. So an admin overriding a
125
+ properly-staffed slate wrote a row **byte-for-byte identical** to the designated
126
+ approver approving normally: a reader of the timeline saw `approve` by the admin
127
+ and could not tell whether the admin _was_ an approver or _overrode_ the ones who
128
+ were, and the bypassed approver's later `409 INVALID_STATE` was the only trace —
129
+ existing only if they happened to try. The platform knows at decision time (it
130
+ took the `isOverrideActor` branch to admit the call at all), so this was dropped
131
+ information, not unavailable information. The whole point of an approval record
132
+ is to answer "who authorized this, and were they entitled to?".
133
+
134
+ `sys_approval_action` now carries **`via_override`** (boolean, optional), set on
135
+ exactly the actions admitted by that branch — `decideNode`'s approve/reject and
136
+ `reassign`'s admin rescue. It is surfaced on `ApprovalActionRow.via_override`
137
+ (`@objectstack/spec/contracts`), returned by `listActions`, and added to the
138
+ object's `highlightFields` and two grid list views so a timeline can say
139
+ "overrode the approver slate" instead of rendering it as an ordinary approval.
140
+
141
+ Three distinctions the column keeps apart deliberately:
142
+
143
+ - **`true`** — the actor held no slot in the slate and was admitted only by the
144
+ override branch.
145
+ - **`false`** — checked, and it was not an override. An admin who _is_ a
146
+ designated approver is approving normally and records `false`: the marker is
147
+ about which branch admitted the call, not about whether the actor holds admin
148
+ rights.
149
+ - **absent** — a row written before this column existed. "Not recorded" is not
150
+ the same claim as "not an override", so `rowFromAction` maps `null` to
151
+ `undefined` rather than to `false`.
152
+
153
+ Additive and nullable, so this needs no data migration: existing rows keep
154
+ working and simply read as unrecorded. Levelled `patch` rather than `minor`
155
+ because nothing an author writes changes — but note it _is_ an observable
156
+ behaviour change on a read surface: `listActions` responses and the
157
+ `sys_approval_action` grid views now carry a field consumers did not see before,
158
+ and `sys_approval_action` gains a column on next schema sync.
159
+
160
+ - 0b795da: fix(approvals): the record lock now holds for predicate (`multi`) updates (#4778)
161
+
162
+ The ADR-0019 record lock — "while a record has a pending `sys_approval_request`,
163
+ block edits to it" — was enforced only for updates that reach the hook with an
164
+ `input.id`. The engine extracts that id from a **scalar** `where.id` alone; an
165
+ operator object (`{ $in: [...] }`) or any other predicate is a multi-row write
166
+ that routes to `updateMany` and arrives with no id. The hook opened with
167
+ `if (!id) return`, so it read _"no row was resolved"_ as _"there is nothing to
168
+ authorize"_ when the truth was _"nothing was ever queried"_.
169
+
170
+ Rewriting the very same edit as `multi: true` therefore walked straight past the
171
+ lock:
172
+
173
+ ```ts
174
+ // rec_1 carries a pending approval, lockRecord is not disabled
175
+ await ql.update(
176
+ "crm_opportunity",
177
+ { amount: 999 },
178
+ { where: { id: "rec_1" } }
179
+ ); // RECORD_LOCKED
180
+ await ql.update(
181
+ "crm_opportunity",
182
+ { amount: 999 },
183
+ { where: { id: { $in: ["rec_1"] } }, multi: true }
184
+ ); // went through
185
+ await ql.update(
186
+ "crm_opportunity",
187
+ { amount: 999 },
188
+ { where: { name: "x" }, multi: true }
189
+ ); // went through
190
+ ```
191
+
192
+ No privilege was needed for that bypass — not an `admin` role, not `isSystem`,
193
+ not `lockRecord: false`, not a whitelisted `approvalStatusField`. Every caller
194
+ shape that can spell a predicate (SDK, ObjectQL, a flow's `update_record`) could
195
+ produce it. It is the same fail-open reasoning fixed for `sys_attachment`
196
+ (#4757) and `sys_comment` (#4630), in the one place where it needed no
197
+ privilege at all.
198
+
199
+ **The hook now resolves the rows a write touches before deciding.** By-id writes
200
+ are unchanged (the driver writes by primary key, so the rest of `where` must not
201
+ narrow the verdict). A predicate write is decided by intersecting the caller's
202
+ predicate with the records that are actually locked — which is also what keeps
203
+ it cheap: the query is bounded by the object's **pending approvals**, never by
204
+ the update's match set, so a mass update of 50 000 unlocked rows costs one
205
+ bookkeeping probe and is allowed. An unscoped `multi` update over the whole
206
+ table reaches every locked row of the object and is refused while any is held.
207
+
208
+ **Fail-closed, both ways.** Past 1 000 locked records — the bound the attachment
209
+ and comment guards use — or if the intersection query fails, the write is
210
+ refused rather than allowed: the lock could not prove the write misses a locked
211
+ row. The approvals bookkeeping being unreadable at all stays the one fail-open,
212
+ as before: this hook is global over every object, so a kernel without
213
+ `sys_approval_request` would otherwise refuse every update in the deployment.
214
+ Both the bookkeeping and the match-set resolution are read under a **system**
215
+ context — a guard's own input must never be narrowed by the caller's
216
+ visibility, since a locked row you cannot read is still a row you may not write.
217
+
218
+ **Every exemption moved with the guard**, which is the other way this class of
219
+ fix goes wrong — a guard extended to more rows that carries only its deny rules
220
+ turns a fail-open into a false-positive. `isSystem`, the `admin` override, the
221
+ `approvalStatusField` status mirror, `lockRecord: false` and the owning run's
222
+ `flowRunId` (#3456 / #3712) all decide a predicate write exactly as they decide
223
+ a by-id write, each pinned by tests on both predicate shapes. Refusals now name
224
+ the record and object that are locked.
225
+
226
+ - c2a1134: fix(approvals): find the zombie requests nothing was looking at (#4469)
227
+
228
+ #4460 stopped new zombies being produced; the rows already stuck had no mechanism
229
+ to find or release them. The failure shape (#4420) is a request flipped to
230
+ `approved` / `rejected` / `returned` whose `flow_run_id` points at a run that no
231
+ longer exists — the decision landed, the flow never moved. Any deployment on
232
+ 17.0.0-rc.1 that hit the wiring hole and crossed a restart mid-approval can be
233
+ carrying these rows.
234
+
235
+ `releaseDeadRunRequests` could not see them, and the reason is worth stating
236
+ plainly: it scans `status: 'pending'`, and the very step that zombifies a request
237
+ is the one that takes it OUT of `pending`. The act of breaking it removed it from
238
+ the only sweeper's field of view — a large part of why this class of failure
239
+ stayed silent. It could not have answered the question even if it had looked: its
240
+ liveness oracle is `getRun`, which reads the execution LOG and returns `null` for
241
+ a perfectly ALIVE suspended run after a restart. It treats `null` as alive
242
+ (conservative, and correct for what it does) — which is exactly why it has no way
243
+ to say "this run is really gone".
244
+
245
+ Adds `ApprovalService.inspectStrandedRequests()`, which uses BOTH oracles and
246
+ reports only rows that fail both:
247
+
248
+ - `hasSuspendedRun(runId) === false` — the suspension store itself says no live
249
+ pause exists. It THROWS when the store cannot be read, and that case is
250
+ SKIPPED and counted as `undetermined`, never condemned: an unreadable store
251
+ means "unknown", and a storage outage must not be published as a lost run.
252
+ - `getRun(runId) == null` — no terminal history row either. A run that merely
253
+ finished is not stranded; a request whose run neither waits nor ever completed
254
+ is.
255
+
256
+ **It reports; it never rewrites.** No status is changed and no run is cancelled.
257
+ The decision genuinely happened — a human approved or rejected — and silently
258
+ rolling it back would make the audit trail disagree with the facts. The report
259
+ carries what an operator needs to decide: which requests are stuck at which step,
260
+ and what the mirrored status field on the business record still reads (usually
261
+ the stale value the user is staring at). Whether to re-run the downstream actions
262
+ or re-open the approval is a judgement call this cannot make.
263
+
264
+ It rides the existing escalation/dead-run sweep clock, so the finding surfaces in
265
+ the logs without an operator knowing to go looking for it. `recalled` is
266
+ deliberately out of scope: a recall abandons its run on purpose, and reporting
267
+ those would bury the real findings under expected ones.
268
+
269
+ New export: `StrandedApprovalRequest` (the report row shape).
270
+
271
+ - 25784cf: fix(automation,approvals): 节点类型校验推迟到插件贡献完成之后 —— approval flow 不再被误报"运行时会失败" (#4771)
272
+
273
+ showcase 每次冷启都打印 8 条断言:这些 flow "will fail at execution time"。8 条全是假的。
274
+ `AutomationServicePlugin.start()` 从 ObjectQL registry 拉起 flow 并**当场**校验节点类型,而
275
+ `ApprovalsServicePlugin.start()` 在 0.8 秒后才注册 `approval` 执行器 —— 校验器在词汇表还没
276
+ 成型的时候就下了结论。
277
+
278
+ 真正的代价不是噪音,是信号丢失:**真的没装 approvals 插件**的部署会得到一模一样的 8 条告警,
279
+ 所以这条 warn 无法区分"健康"和"坏掉",信噪比为 0。
280
+
281
+ ADR-0018 明确把节点词汇表定义为**开放、可运行时扩展**的(插件通过
282
+ `registerNodeExecutor(type)` 贡献类型)。因此校验只在词汇表**封闭**的那一刻才成立:
283
+
284
+ - `AutomationEngine.sealNodeTypeVocabulary()` —— 宣告词汇表封闭,对**所有**已注册 flow 跑一次
285
+ 权威校验,每个有问题的 flow warn 一条。`AutomationServicePlugin` 在 `kernel:bootstrapped`
286
+ 调用它(严格晚于每个插件的 `start()` 和每个 `kernel:ready` handler —— 本插件自己的
287
+ `kernel:ready` 还会再注册一批 flow,别的插件也可能在它的 `kernel:ready` 里贡献执行器)。
288
+ - `AutomationEngine.getUnknownNodeTypeAudit(): UnknownNodeTypeAuditEntry[]` —— 同一发现的
289
+ **状态**形态,供 host(CLI 启动摘要、健康检查)直接读,而不是去 grep 日志。与
290
+ `getTriggerBindingAudit()` 同一套路。
291
+ - 封闭之后 `registerFlow` **恢复即时告警**:Studio 发布 / dev reload 进正在运行的服务器时,
292
+ 词汇表确实是完整的,那句断言此时为真。所以这是时序修复,不是把告警静音。
293
+
294
+ 告警文案也随之改成它现在能承诺的事:"Every plugin has started, so nothing will register them
295
+ now — these nodes fail at execution time with NO_EXECUTOR",并给出补救动作。
296
+
297
+ 一并修掉同一缺陷类的另一半:`ApprovalsServicePlugin` 在**拿不到 automation 引擎**时,把
298
+ "`approval` 节点没注册"记成 `info` —— 而 dev 的默认日志级别是 `warn`,于是**真降级发生时反而
299
+ 看不见**(#4632:静默降级必须响亮)。现在是 `warn`,写明后果(该部署里每个 ADR-0019 approval
300
+ flow 都会以 NO_EXECUTOR 失败)和补救(装 `@objectstack/service-automation`)。`catch` 同时收窄
301
+ 到"服务查找"这一步,`registerApprovalNode` 内部真出错时会以自己的身份抛出,而不再被贴上
302
+ "no automation engine" 的错误标签;`automation` 服务存在但不接受节点执行器的分支从前**一条日志
303
+ 都不打**,现在同样 warn。
304
+
305
+ **嵌入式 host 注意**:直接 `new AutomationEngine()` 而不经过 `AutomationServicePlugin` 的宿主,
306
+ 需要在自己的插件都装好之后调用一次 `sealNodeTypeVocabulary()`,才能拿到这条告警(以及之后的
307
+ 即时校验)。
308
+
309
+ - Updated dependencies [430dcc2]
310
+ - Updated dependencies [e6ac4bd]
311
+ - Updated dependencies [80334c7]
312
+ - Updated dependencies [ce5242c]
313
+ - Updated dependencies [a7163ea]
314
+ - Updated dependencies [e6e9379]
315
+ - Updated dependencies [98877c9]
316
+ - Updated dependencies [98877c9]
317
+ - Updated dependencies [c44dd5e]
318
+ - Updated dependencies [e6b1b69]
319
+ - Updated dependencies [ad047d2]
320
+ - Updated dependencies [2826d1e]
321
+ - Updated dependencies [5a84d41]
322
+ - Updated dependencies [20b1a9e]
323
+ - Updated dependencies [203a449]
324
+ - Updated dependencies [ac37fc6]
325
+ - Updated dependencies [4820f55]
326
+ - Updated dependencies [462d9c4]
327
+ - Updated dependencies [7d21581]
328
+ - Updated dependencies [f2445c9]
329
+ - Updated dependencies [23338c3]
330
+ - Updated dependencies [5b843fb]
331
+ - Updated dependencies [b4487aa]
332
+ - Updated dependencies [65ca83a]
333
+ - Updated dependencies [67bf2e2]
334
+ - Updated dependencies [c6d1cb4]
335
+ - Updated dependencies [36030ff]
336
+ - Updated dependencies [6117f7b]
337
+ - Updated dependencies [e533b0b]
338
+ - Updated dependencies [cdf4d9a]
339
+ - Updated dependencies [aee1806]
340
+ - Updated dependencies [c13350b]
341
+ - Updated dependencies [c13350b]
342
+ - Updated dependencies [9ca2d85]
343
+ - Updated dependencies [c13350b]
344
+ - Updated dependencies [891d345]
345
+ - Updated dependencies [a52e2ef]
346
+ - Updated dependencies [5293114]
347
+ - Updated dependencies [20bc357]
348
+ - Updated dependencies [5966c2a]
349
+ - Updated dependencies [2382580]
350
+ - Updated dependencies [d9fa683]
351
+ - Updated dependencies [3c7bcc0]
352
+ - Updated dependencies [4b6cac7]
353
+ - Updated dependencies [7631964]
354
+ - Updated dependencies [ac471a0]
355
+ - Updated dependencies [60ae58e]
356
+ - Updated dependencies [ce92674]
357
+ - Updated dependencies [9f601e8]
358
+ - Updated dependencies [51c5227]
359
+ - Updated dependencies [a4a85c8]
360
+ - Updated dependencies [07a4e26]
361
+ - Updated dependencies [ec975f1]
362
+ - Updated dependencies [eb4204b]
363
+ - Updated dependencies [4f13be2]
364
+ - Updated dependencies [61cc079]
365
+ - Updated dependencies [0e96e46]
366
+ - Updated dependencies [b25a116]
367
+ - Updated dependencies [d52d4fe]
368
+ - Updated dependencies [742cebb]
369
+ - Updated dependencies [ce92674]
370
+ - Updated dependencies [cf2c9b7]
371
+ - Updated dependencies [833b512]
372
+ - Updated dependencies [0f9faa2]
373
+ - Updated dependencies [7cf42fe]
374
+ - Updated dependencies [5966c2a]
375
+ - Updated dependencies [f78dd83]
376
+ - Updated dependencies [a2cd18a]
377
+ - Updated dependencies [4638aaa]
378
+ - Updated dependencies [0222d3c]
379
+ - Updated dependencies [071d0dc]
380
+ - Updated dependencies [0a936ea]
381
+ - Updated dependencies [023c00b]
382
+ - Updated dependencies [155507e]
383
+ - Updated dependencies [7bba90b]
384
+ - Updated dependencies [7e05d8e]
385
+ - Updated dependencies [061406d]
386
+ - Updated dependencies [c1f344b]
387
+ - Updated dependencies [9c93465]
388
+ - Updated dependencies [ebb209c]
389
+ - Updated dependencies [65f184b]
390
+ - Updated dependencies [63b33e6]
391
+ - Updated dependencies [2a44c1d]
392
+ - Updated dependencies [695cfbd]
393
+ - Updated dependencies [7445149]
394
+ - Updated dependencies [071d0dc]
395
+ - Updated dependencies [0848bea]
396
+ - Updated dependencies [d51bed2]
397
+ - Updated dependencies [b8b3c64]
398
+ - Updated dependencies [0c0fbd9]
399
+ - Updated dependencies [f3141d8]
400
+ - Updated dependencies [5a84d41]
401
+ - Updated dependencies [fd3013a]
402
+ - Updated dependencies [21676eb]
403
+ - Updated dependencies [e336549]
404
+ - Updated dependencies [d40f43a]
405
+ - Updated dependencies [e5e7ee0]
406
+ - Updated dependencies [a2ebea2]
407
+ - Updated dependencies [800bdb0]
408
+ - Updated dependencies [04f1182]
409
+ - Updated dependencies [5647006]
410
+ - Updated dependencies [38f7e4f]
411
+ - Updated dependencies [c57f3cf]
412
+ - Updated dependencies [97faca3]
413
+ - Updated dependencies [ad5fe25]
414
+ - Updated dependencies [ea90179]
415
+ - Updated dependencies [ce92674]
416
+ - Updated dependencies [5ef0b5b]
417
+ - Updated dependencies [48fbacb]
418
+ - Updated dependencies [355e951]
419
+ - Updated dependencies [dadb43f]
420
+ - @objectstack/spec@17.0.0-rc.2
421
+ - @objectstack/platform-objects@17.0.0-rc.2
422
+ - @objectstack/core@17.0.0-rc.2
423
+ - @objectstack/types@17.0.0-rc.2
424
+ - @objectstack/metadata-core@17.0.0-rc.2
425
+ - @objectstack/formula@17.0.0-rc.2
426
+
3
427
  ## 17.0.0-rc.1
4
428
 
5
429
  ### Minor Changes