@reventlessdev/reventless-infra 3.0.0-alpha.100

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. package/CHANGELOG.md +853 -0
  2. package/LICENSE +202 -0
  3. package/README.md +92 -0
  4. package/package.json +46 -0
  5. package/rescript.json +34 -0
  6. package/src/adapter/Adapter.res +88 -0
  7. package/src/adapter/Adapter.res.mjs +29 -0
  8. package/src/components/Aggregate.res +73 -0
  9. package/src/components/Aggregate.res.mjs +2 -0
  10. package/src/components/Api.res +120 -0
  11. package/src/components/Api.res.mjs +31 -0
  12. package/src/components/Api_Adapter.res +29 -0
  13. package/src/components/Api_Adapter.res.mjs +2 -0
  14. package/src/components/AutomationSlice.res +48 -0
  15. package/src/components/AutomationSlice.res.mjs +2 -0
  16. package/src/components/CommandGenerator.res +8 -0
  17. package/src/components/CommandGenerator.res.mjs +2 -0
  18. package/src/components/CommandTopic.res +70 -0
  19. package/src/components/CommandTopic.res.mjs +2 -0
  20. package/src/components/Component.js +56 -0
  21. package/src/components/Component.mjs +10 -0
  22. package/src/components/Component.res +90 -0
  23. package/src/components/Component.res.mjs +57 -0
  24. package/src/components/Component.resi +21 -0
  25. package/src/components/Counter.res +81 -0
  26. package/src/components/Counter.res.mjs +2 -0
  27. package/src/components/DcbEventLog.res +130 -0
  28. package/src/components/DcbEventLog.res.mjs +2 -0
  29. package/src/components/DeployBootstrap.res +83 -0
  30. package/src/components/DeployBootstrap.res.mjs +69 -0
  31. package/src/components/EventCollector.res +19 -0
  32. package/src/components/EventCollector.res.mjs +2 -0
  33. package/src/components/EventLog.res +24 -0
  34. package/src/components/EventLog.res.mjs +2 -0
  35. package/src/components/EventMapper.res +37 -0
  36. package/src/components/EventMapper.res.mjs +2 -0
  37. package/src/components/EventTopic.res +51 -0
  38. package/src/components/EventTopic.res.mjs +2 -0
  39. package/src/components/Extension.res +64 -0
  40. package/src/components/Extension.res.mjs +2 -0
  41. package/src/components/ExtensionPoint.res +62 -0
  42. package/src/components/ExtensionPoint.res.mjs +2 -0
  43. package/src/components/Heartbeat.res +7 -0
  44. package/src/components/Heartbeat.res.mjs +2 -0
  45. package/src/components/InboundTranslationSlice.res +41 -0
  46. package/src/components/InboundTranslationSlice.res.mjs +2 -0
  47. package/src/components/OutboundTranslationSlice.res +44 -0
  48. package/src/components/OutboundTranslationSlice.res.mjs +2 -0
  49. package/src/components/Plugin.res +93 -0
  50. package/src/components/Plugin.res.mjs +2 -0
  51. package/src/components/QueryDb.res +48 -0
  52. package/src/components/QueryDb.res.mjs +33 -0
  53. package/src/components/ReadModel.res +56 -0
  54. package/src/components/ReadModel.res.mjs +2 -0
  55. package/src/components/Scheduler.res +32 -0
  56. package/src/components/Scheduler.res.mjs +2 -0
  57. package/src/components/StateChangeSlice.res +45 -0
  58. package/src/components/StateChangeSlice.res.mjs +2 -0
  59. package/src/components/StateViewSlice.res +38 -0
  60. package/src/components/StateViewSlice.res.mjs +2 -0
  61. package/src/components/Task.res +89 -0
  62. package/src/components/Task.res.mjs +2 -0
  63. package/src/types/ExtensionMapping.res +448 -0
  64. package/src/types/ExtensionMapping.res.mjs +252 -0
  65. package/src/types/ExtensionPointMapping.res +303 -0
  66. package/src/types/ExtensionPointMapping.res.mjs +116 -0
  67. package/src/types/Message.res +3 -0
  68. package/src/types/Message.res.mjs +2 -0
  69. package/src/types/NoEventMappings.res +25 -0
  70. package/src/types/NoEventMappings.res.mjs +17 -0
  71. package/src/types/Platform.res +269 -0
  72. package/src/types/Platform.res.mjs +2 -0
  73. package/src/types/PluginExtensionPointSpec.res +55 -0
  74. package/src/types/PluginExtensionPointSpec.res.mjs +209 -0
  75. package/src/types/ResourceNaming.res +12 -0
  76. package/src/types/ResourceNaming.res.mjs +2 -0
  77. package/tests/DeployBootstrapTest.res +72 -0
  78. package/tests/DeployBootstrapTest.res.mjs +100 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,853 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ # 3.0.0-alpha.100 (2026-07-15)
7
+
8
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
9
+
10
+
11
+
12
+
13
+
14
+ # 3.0.0-alpha.99 (2026-07-14)
15
+
16
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
17
+
18
+
19
+
20
+
21
+
22
+ # 3.0.0-alpha.98 (2026-07-12)
23
+
24
+ ### Features
25
+
26
+ * **admin:** event-source the UI fragment registry as admin DCB slices ([711581e](https://github.com/ReventlessDev/reventless-core/commit/711581e77c626e7d0fc35db8ec351f62a70bd8f2))
27
+ * **admin:** make the API fragment registry per-target (Domain | Platform) ([30491a9](https://github.com/ReventlessDev/reventless-core/commit/30491a9e14b4236c98cc756efb6de68ede1e77d7))
28
+
29
+
30
+ # 3.0.0-alpha.97 (2026-07-11)
31
+
32
+ ### Features
33
+
34
+ * **infra:** add DeployBootstrap seam for generated deploy programs ([f0dc868](https://github.com/ReventlessDev/reventless-core/commit/f0dc8686396d21e7b39667eb0825b2e57fe4dabf))
35
+
36
+
37
+ # 3.0.0-alpha.96 (2026-07-11)
38
+
39
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
40
+
41
+
42
+
43
+
44
+
45
+ # 3.0.0-alpha.95 (2026-07-11)
46
+
47
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
48
+
49
+
50
+
51
+
52
+
53
+ # 3.0.0-alpha.94 (2026-07-10)
54
+
55
+ ### Features
56
+
57
+ * **plugin-structure:** capture per-component chapter grouping for the deployed graph ([f9c88a9](https://github.com/ReventlessDev/reventless-core/commit/f9c88a9a48d8c032ffe23f9e5277caf12c29e85c))
58
+
59
+
60
+ # 3.0.0-alpha.93 (2026-07-10)
61
+
62
+ ### Bug Fixes
63
+
64
+ * **plugin-lifecycle:** backfill plugin kind onto existing rows via deploy-time RedetectPlugin ([502dbd6](https://github.com/ReventlessDev/reventless-core/commit/502dbd65d1fdd5b8beae8a7b96df06dcfa32fe3e))
65
+
66
+
67
+ # 3.0.0-alpha.92 (2026-07-10)
68
+
69
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
70
+
71
+
72
+
73
+
74
+
75
+ # 3.0.0-alpha.91 (2026-07-08)
76
+
77
+ ### Features
78
+
79
+ * **reventless-core:** classify plugins by kind in the lifecycle read model ([64e3f22](https://github.com/ReventlessDev/reventless-core/commit/64e3f22b8114a771886b7c8ec023e95971413c0b))
80
+
81
+
82
+ # 3.0.0-alpha.90 (2026-07-07)
83
+
84
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
85
+
86
+
87
+
88
+
89
+
90
+ # 3.0.0-alpha.89 (2026-07-06)
91
+
92
+ ### Features
93
+
94
+ * **reventless-aws:** classic EventLog Postgres deploy-time wiring + relay (B1 vertical) ([8235ba4](https://github.com/ReventlessDev/reventless-core/commit/8235ba44e506f7094d17251405c6a05c39789805))
95
+
96
+
97
+ # 3.0.0-alpha.88 (2026-07-05)
98
+
99
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
100
+
101
+
102
+
103
+
104
+
105
+ # 3.0.0-alpha.87 (2026-07-05)
106
+
107
+ ### Features
108
+
109
+ * @[@reventless](https://github.com/reventless).systemCallable slice opt-in for deploy-time system callers ([c5ed537](https://github.com/ReventlessDev/reventless-core/commit/c5ed537309f8e4b7d4a4d4af1ed1ec83d060aea3))
110
+
111
+
112
+ # 3.0.0-alpha.86 (2026-07-05)
113
+
114
+ ### Features
115
+
116
+ * **reventless-aws:** opt-in [@aws](https://github.com/aws)_iam dual-auth for deploy-time AppSync callers ([94037f1](https://github.com/ReventlessDev/reventless-core/commit/94037f17ae48a33415b02e8e7b178906be8b59a4))
117
+
118
+
119
+ # 3.0.0-alpha.85 (2026-07-05)
120
+
121
+ ### Features
122
+
123
+ * **postgres:** add reventless-postgres backend + local-platform integration ([6913200](https://github.com/ReventlessDev/reventless-core/commit/69132001f9271e832a5af33416acd5b645feaf47))
124
+
125
+
126
+ # 3.0.0-alpha.84 (2026-07-03)
127
+
128
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
129
+
130
+
131
+
132
+
133
+
134
+ # 3.0.0-alpha.83 (2026-07-02)
135
+
136
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
137
+
138
+
139
+
140
+
141
+
142
+ # 3.0.0-alpha.82 (2026-06-29)
143
+
144
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
145
+
146
+
147
+
148
+
149
+
150
+ # 3.0.0-alpha.81 (2026-06-27)
151
+
152
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
153
+
154
+
155
+
156
+
157
+
158
+ # 3.0.0-alpha.80 (2026-06-22)
159
+
160
+ ### Features
161
+
162
+ * **structure:** mark API-exposed commands for the event-graph badge ([8cd6faa](https://github.com/ReventlessDev/reventless-core/commit/8cd6faa0a66c6cf1b4b5eea26df6f70c540b67a4))
163
+
164
+
165
+ # 3.0.0-alpha.79 (2026-06-21)
166
+
167
+ ### Features
168
+
169
+ * **dcb:** cross-partition secondary-tag reads (Phase 7) ([9e1f8b3](https://github.com/ReventlessDev/reventless-core/commit/9e1f8b3595004b92148dd053aae380078baa42a3))
170
+
171
+
172
+ # 3.0.0-alpha.78 (2026-06-21)
173
+
174
+ ### Features
175
+
176
+ * **dcb:** eventual-first, strong-on-retry decision reads ([b920a66](https://github.com/ReventlessDev/reventless-core/commit/b920a663c1dbb3a13cb8bd27ecbfe0cfd8ec5d65))
177
+
178
+
179
+ # 3.0.0-alpha.77 (2026-06-21)
180
+
181
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
182
+
183
+
184
+
185
+
186
+
187
+ # 3.0.0-alpha.76 (2026-06-20)
188
+
189
+ ### Features
190
+
191
+ * **dcb:** narrow query clauses to types that can carry each tag (Issue 14) ([6bceae6](https://github.com/ReventlessDev/reventless-core/commit/6bceae675b91154b5a1abf73a6aaca56533cbbe8))
192
+
193
+
194
+ # 3.0.0-alpha.75 (2026-06-20)
195
+
196
+ ### Bug Fixes
197
+
198
+ * **packaging:** publish rescript packages source-only via .npmignore ([e831c37](https://github.com/ReventlessDev/reventless-core/commit/e831c372b6347d997da1e876c12b6770414f5f41))
199
+
200
+
201
+ # 3.0.0-alpha.74 (2026-06-20)
202
+
203
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
204
+
205
+
206
+
207
+
208
+
209
+ # 3.0.0-alpha.73 (2026-06-18)
210
+
211
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
212
+
213
+
214
+
215
+
216
+
217
+ # 3.0.0-alpha.72 (2026-06-17)
218
+
219
+ * feat!: rename Call directive to HandleDirective for naming consistency ([3fdf84a](https://github.com/ReventlessDev/reventless-core/commit/3fdf84a503b8ee9b07d0774e34c911f5d90d45d0))
220
+ * feat!: harmonize plugin make() across aggregate/DCB/hybrid; AutoUI default-on ([6f3b95e](https://github.com/ReventlessDev/reventless-core/commit/6f3b95e6aa8a136c6e837346c41a3a4dff0f9405))
221
+ ### Features
222
+
223
+ * **core:** carry emitted-event field schemas in pluginStructure (Phase 6.3) ([693d452](https://github.com/ReventlessDev/reventless-core/commit/693d4529ee4c66a2a4a4b0d4d7efb104cf94bcab))
224
+
225
+ ### BREAKING CHANGES
226
+
227
+ * out-of-tree plugins emitting Call(handler, msg) from
228
+ commandAction / eventAction / incomingCommandAction / outgoingCommandAction
229
+ must rename to HandleDirective(handler, directive). The callHandler<'msg>
230
+ type alias is now directiveHandler<'directive>.
231
+
232
+ Plan: docs/plans/done/directive-naming-consistency.md
233
+ * makeAutoUIManifest signature dropped ~aggregates and
234
+ ~readModels; replaced with ~pluginStructure. Hand-written Plugin.res files
235
+ that pass ~uiBundleUrl to plugin.make must drop the arg and rely on the
236
+ generator-emitted env var read.
237
+
238
+
239
+
240
+ # 3.0.0-alpha.71 (2026-06-12)
241
+
242
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
243
+
244
+
245
+
246
+
247
+
248
+ # 3.0.0-alpha.70 (2026-06-10)
249
+
250
+ ### Features
251
+
252
+ * **reventless-core:** extension-point source events in pluginStructure ([9c47a0e](https://github.com/ReventlessDev/reventless-core/commit/9c47a0ea9a1643ac12fbe8dc1c43244e580de024))
253
+
254
+
255
+ # 3.0.0-alpha.69 (2026-06-08)
256
+
257
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
258
+
259
+
260
+
261
+
262
+
263
+ # 3.0.0-alpha.68 (2026-06-08)
264
+
265
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
266
+
267
+
268
+
269
+
270
+
271
+ # 3.0.0-alpha.67 (2026-06-08)
272
+
273
+ ### Features
274
+
275
+ * **reventless-core:** extension-point source events in pluginStructure ([1e1d925](https://github.com/ReventlessDev/reventless-core/commit/1e1d9258b5a228b9fdfa003348a5367281573b3c))
276
+
277
+
278
+ # 3.0.0-alpha.66 (2026-06-06)
279
+
280
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
281
+
282
+
283
+
284
+
285
+
286
+ # 3.0.0-alpha.65 (2026-06-04)
287
+
288
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
289
+
290
+
291
+
292
+
293
+
294
+ # 3.0.0-alpha.64 (2026-05-27)
295
+
296
+ ### Bug Fixes
297
+
298
+ * **framework:** wire plugin ExtensionPoints into EventCollector runtime context ([2ce8dff](https://github.com/ReventlessDev/reventless-core/commit/2ce8dff426b576811a28c012934d77ecba8a33c0))
299
+
300
+
301
+ # 3.0.0-alpha.63 (2026-05-25)
302
+
303
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
304
+
305
+
306
+
307
+
308
+
309
+ # 3.0.0-alpha.62 (2026-05-25)
310
+
311
+ ### Features
312
+
313
+ * **readmodel:** add ReadModelStream variant for live-updating read models ([3d816fb](https://github.com/ReventlessDev/reventless-core/commit/3d816fb50e0e66693ae4a0a626f4d5b4e496c3b1))
314
+
315
+
316
+ # 3.0.0-alpha.61 (2026-05-21)
317
+
318
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
319
+
320
+
321
+
322
+
323
+
324
+ # 3.0.0-alpha.60 (2026-05-21)
325
+
326
+ ### Bug Fixes
327
+
328
+ * **admin:** register admin queryFieldNames under read-model Spec.name ([f5c10f8](https://github.com/ReventlessDev/reventless-core/commit/f5c10f80068e45329533547203f5417029ea48b7))
329
+
330
+
331
+ # 3.0.0-alpha.59 (2026-05-21)
332
+
333
+ ### Bug Fixes
334
+
335
+ * **admin:** close AppSync schema-push vs CreateDataSource race in admin barrier ([46b61f9](https://github.com/ReventlessDev/reventless-core/commit/46b61f9136fcc70c52cf18220a5b5945202631ce))
336
+ * feat(admin)!: replace direct DynamoDB retire write with Retire/Retired event flow ([7f5f018](https://github.com/ReventlessDev/reventless-core/commit/7f5f018e714e247331d143c304c0d671c2ac7c84))
337
+
338
+ ### BREAKING CHANGES
339
+
340
+ * Platform.deployPlugin no longer accepts ~version. Generated
341
+ Main.res files are regenerated; any direct caller must drop the arg.
342
+
343
+
344
+
345
+ # 3.0.0-alpha.58 (2026-05-20)
346
+
347
+ ### Features
348
+
349
+ * **plugin:** wire dcbEventLog into pluginDefinition for cross-plugin DCB routing (Phase 4) ([07b78f3](https://github.com/ReventlessDev/reventless-core/commit/07b78f359f8f039992ec0ce7922085b165695537))
350
+
351
+
352
+ # 3.0.0-alpha.57 (2026-05-19)
353
+
354
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
355
+
356
+
357
+
358
+
359
+
360
+ # 3.0.0-alpha.56 (2026-05-18)
361
+
362
+ ### Bug Fixes
363
+
364
+ * **spec:** restore payload-less filter in extractVariantNames; route acceptedTags through extractAllVariantNames ([208f644](https://github.com/ReventlessDev/reventless-core/commit/208f644cc0e21cb7c2ad3cf7bf43b5e7a99732f7))
365
+ ### Features
366
+
367
+ * **plugin:** wire end-to-end user-extension dispatch through plugin EventCollectors ([f616abe](https://github.com/ReventlessDev/reventless-core/commit/f616abe169289f836f8e538b5419cb82cda886d7))
368
+
369
+
370
+ # 3.0.0-alpha.55 (2026-05-17)
371
+
372
+ ### Bug Fixes
373
+
374
+ * **deps:** pin sury-ppx to 11.0.0-alpha.2 to prevent prerelease drift ([c9d05fe](https://github.com/ReventlessDev/reventless-core/commit/c9d05fe5118a9c0442ca3e071f2606b3a139fc81))
375
+
376
+
377
+ # 3.0.0-alpha.54 (2026-05-17)
378
+
379
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
380
+
381
+
382
+
383
+
384
+
385
+ # 3.0.0-alpha.53 (2026-05-17)
386
+
387
+ ### Bug Fixes
388
+
389
+ * **deps:** pin sury to 11.0.0-alpha.4 to unblock Lambda Layer deploys ([643d925](https://github.com/ReventlessDev/reventless-core/commit/643d92527fa9d092da9bef8547591e39a4c609dd))
390
+
391
+
392
+ # 3.0.0-alpha.52 (2026-05-16)
393
+
394
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
395
+
396
+
397
+
398
+
399
+
400
+ # 3.0.0-alpha.51 (2026-05-16)
401
+
402
+ ### Features
403
+
404
+ * **ppx:** [@status](https://github.com/status) field annotation + [@allowed](https://github.com/allowed)States command annotation ([15f0478](https://github.com/ReventlessDev/reventless-core/commit/15f0478209dbb4e5d385332cf8cf320c694ac1c1))
405
+ * **spec:** allowedStates + statusField metadata for AutoUI command filtering ([b5d138b](https://github.com/ReventlessDev/reventless-core/commit/b5d138bb706515f7c6ba5daf7f4ef481cc35d024))
406
+
407
+
408
+ # 3.0.0-alpha.50 (2026-05-14)
409
+
410
+ ### Features
411
+
412
+ * **auth:** Stage E2 — lift spec-level Authorization.permission into [@aws](https://github.com/aws)_auth ([5f10fc9](https://github.com/ReventlessDev/reventless-core/commit/5f10fc94f501ad6e6f0d677f754acc3761281ab3))
413
+ * **platform-aws:** host the static host-shell SPA on the platform CDN ([529ae4f](https://github.com/ReventlessDev/reventless-core/commit/529ae4f4b54675d43f22bb6180186e88d240b744))
414
+ * **ppx:** inline-spec walk + Spec module types require authorization ([7db9ec0](https://github.com/ReventlessDev/reventless-core/commit/7db9ec0f186578ce0088973dba22da9257be6a61))
415
+
416
+
417
+ # 3.0.0-alpha.49 (2026-05-13)
418
+
419
+ * feat(spec)!: standardise event/command envelope (StoredEvent, optional meta, position, persisted DCB meta, causation) ([7ef3176](https://github.com/ReventlessDev/reventless-core/commit/7ef3176c6330810c817f43a52b881b5a0efee30e))
420
+
421
+ ### BREAKING CHANGES
422
+
423
+ * meta.ip / meta.user go from required `string` to optional
424
+ record fields (`?: string`). Code that did `meta.user == "unknown"` to
425
+ detect system messages must check for field absence. Storage tables built
426
+ before this change are not migrated (greenfield — recreate the EventLog /
427
+ DcbEventLog tables; DynamoDB range key renamed from `seq` to `position`,
428
+ SQLite dcb_event gains meta and recorded_at columns).
429
+
430
+
431
+
432
+ # 3.0.0-alpha.48 (2026-05-05)
433
+
434
+ ### Features
435
+
436
+ * **extension:** add PublishStateChangeSliceCommand for slice delegates ([0500b79](https://github.com/ReventlessDev/reventless-core/commit/0500b79d80632611e52ff0565e3e04472330a51e))
437
+
438
+
439
+ # 3.0.0-alpha.47 (2026-05-04)
440
+
441
+ ### Bug Fixes
442
+
443
+ * **aws:** drop empty Config functor args; thread per-spec metadata as direct params ([17837a3](https://github.com/ReventlessDev/reventless-core/commit/17837a3fde52581a06516c69c80e6a1ea5689d9a))
444
+
445
+
446
+ # 3.0.0-alpha.46 (2026-05-03)
447
+
448
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
449
+
450
+
451
+
452
+
453
+
454
+ # 3.0.0-alpha.45 (2026-05-03)
455
+
456
+ * feat(ppx)!: add @@reventless.mappings/extension/task; collapse AutomationSlice.Make to 2 args ([c0268ac](https://github.com/ReventlessDev/reventless-core/commit/c0268ac42c1c887fe25467af61b412ab2e27a5a7))
457
+ ### Features
458
+
459
+ * **logger:** prefix plugin-component logs with stable-color [PluginName] bracket ([ed61eaf](https://github.com/ReventlessDev/reventless-core/commit/ed61eaf5cf84d8b8925c148050a2c51ddb65226a))
460
+
461
+ ### BREAKING CHANGES
462
+
463
+ * Platform.AutomationSlice.Make is now 2-arg (Spec, Automation).
464
+ External callers must either rerun generate-plugin or merge their _Mappings
465
+ contents into _Automation (or add the same two-line bridge).
466
+
467
+ Verified: zero warnings, 1174/1175 tests pass — the single failing test
468
+ (OrderingE2ETest "after syncing missing product, PlaceOrder succeeds") was
469
+ confirmed pre-existing on alpha (the known testPromise concurrency race).
470
+
471
+
472
+
473
+ # 3.0.0-alpha.44 (2026-04-28)
474
+
475
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
476
+
477
+
478
+
479
+
480
+
481
+ # 3.0.0-alpha.43 (2026-04-27)
482
+
483
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
484
+
485
+
486
+
487
+
488
+
489
+ # 3.0.0-alpha.42 (2026-04-26)
490
+
491
+ * feat!: mixed-source AutomationSlice — Plan 04 ([fae3fbf](https://github.com/ReventlessDev/reventless-core/commit/fae3fbf93b12ecf62d0883fe7335ed73c6f52d67))
492
+ ### Features
493
+
494
+ * **core:** convert slice builders to two-arg (Spec, Impl) form — Phase 2 of Spec-First series ([4c994f3](https://github.com/ReventlessDev/reventless-core/commit/4c994f3d62003da26f5fc6a5b2a9fc9264dc241e))
495
+ * **spec:** split slice spec module types — Phase 1 of Spec-First series ([d3b1493](https://github.com/ReventlessDev/reventless-core/commit/d3b149300d09dbac45a5e316343cd79fe2a769e6))
496
+
497
+ ### BREAKING CHANGES
498
+
499
+ * AutomationSlice.Spec drops consumedEvent;
500
+ AutomationSlice_Builder.Make takes Mappings as 3rd arg; make signature
501
+ swaps ~dcbEventLog for ~allEventTopics + ~context; Plugin_Builder.Spec
502
+ gains platformName. Existing slices need a sibling _Mappings.res file
503
+ and updated Plugin.res (regenerate via prebuild hook).
504
+
505
+ Tests: 362/362 pass. Build clean, zero warnings.
506
+
507
+ Plan: docs/plans/done/mixed-source-automationslice.md
508
+ Guide: docs/guides/mixed-source-automationslice.md
509
+
510
+
511
+
512
+ # 3.0.0-alpha.41 (2026-04-24)
513
+
514
+ ### Bug Fixes
515
+
516
+ * **infra:** declare uuid as direct dependency ([0bbe589](https://github.com/ReventlessDev/reventless-core/commit/0bbe5892d6772e2993b976cfa32d9803d568f739))
517
+
518
+
519
+ # 3.0.0-alpha.40 (2026-04-22)
520
+
521
+ ### Bug Fixes
522
+
523
+ * **infra:** harmonize extension and extension-point logging ([ba01793](https://github.com/ReventlessDev/reventless-core/commit/ba0179311c4a5ac66dfa960ed819b1c70492549f))
524
+ ### Features
525
+
526
+ * add [@ref](https://github.com/ref) ppx annotation for explicit cross-entity field references ([079c732](https://github.com/ReventlessDev/reventless-core/commit/079c732e81b481e9b2836ea755e1610b13f828fc))
527
+ * **build:** migrate from npm to pnpm (hoisted layout) ([1de8b77](https://github.com/ReventlessDev/reventless-core/commit/1de8b7753b8f45c63ea3c8d9f64de2f27febd029))
528
+ * expose sourceNames on ReadModel.T for aggregate-to-read-model linking ([379f344](https://github.com/ReventlessDev/reventless-core/commit/379f3445cfd5d18b5d439dd9c6f3bd7d86bdc3d5))
529
+ * **logs:** bold event and command names in log output ([3b09f41](https://github.com/ReventlessDev/reventless-core/commit/3b09f41299bc1f851e15cfb7b8c4a8433f499c7d))
530
+ * **spec:** add Message.variantNameOfJson helper ([a9efb5f](https://github.com/ReventlessDev/reventless-core/commit/a9efb5f1d3ac6180ea8e04dc3c1c2f183d15a984))
531
+
532
+
533
+ # 3.0.0-alpha.39 (2026-04-20)
534
+
535
+ ### Features
536
+
537
+ * add automationSlices, translation slices, and extensions to pluginStructure ([631e2f3](https://github.com/ReventlessDev/reventless-core/commit/631e2f3636f0a422e58712f70106c0df8effc1e9))
538
+ * enrich MCP tool descriptions with linkedViews and consistencyRead from pluginStructure ([221aad4](https://github.com/ReventlessDev/reventless-core/commit/221aad40ae096d01a066d955be397bb29fc18c59))
539
+ * Platform_EventGraph StateViewSlice aggregating cross-plugin event graph ([718f0be](https://github.com/ReventlessDev/reventless-core/commit/718f0bed258da62c4ff5f2ab188e2d43b85e91b6))
540
+
541
+
542
+ # 3.0.0-alpha.38 (2026-04-19)
543
+
544
+ ### Dependency Updates
545
+
546
+ * **@reventlessdev/reventless-spec** updated to `^3.0.0-alpha.29`
547
+
548
+
549
+ # 3.0.0-alpha.37 (2026-04-18)
550
+
551
+ ### Features
552
+
553
+ * **core:** AutoUI definition — makeAutoUIDefinition, Platform_UIDefinitions query, generator support ([513ca53](https://github.com/ReventlessDev/reventless-core/commit/513ca5399b0b6e5ae6a982fd15693de2ea208b8d))
554
+ * **core:** uiFragments manifest — Phase 1 implementation with generic types ([1e73f62](https://github.com/ReventlessDev/reventless-core/commit/1e73f623984118081d2b985c48521812e4f8417e))
555
+
556
+
557
+ # 3.0.0-alpha.36 (2026-04-18)
558
+
559
+ ### Features
560
+
561
+ * **aws:** enable Source B state-change subscriptions (DynamoDB Stream → AppSync Events) ([960b203](https://github.com/ReventlessDev/reventless-core/commit/960b2035d843c2b97cf2014b05fb1a4f132e9984))
562
+
563
+
564
+ # 3.0.0-alpha.35 (2026-04-15)
565
+
566
+ ### Bug Fixes
567
+
568
+ * **schema:** make pluginDefinition.apiTarget JSON-safe for union variant payloads ([556457f](https://github.com/ReventlessDev/reventless-core/commit/556457fd2f09f3ae572fc18aefb3262d80582524))
569
+
570
+
571
+ # 3.0.0-alpha.34 (2026-04-15)
572
+
573
+ ### Dependency Updates
574
+
575
+ * **@reventlessdev/reventless-spec** updated to `^3.0.0-alpha.26`
576
+
577
+
578
+ # 3.0.0-alpha.33 (2026-04-15)
579
+
580
+ ### Features
581
+
582
+ * zero-touch plugin assembly — generate Plugin.res from folder structure ([73ea654](https://github.com/ReventlessDev/reventless-core/commit/73ea654ab9a73f15ea7e18631e8194bfe0f4580f))
583
+
584
+
585
+ # 3.0.0-alpha.32 (2026-04-13)
586
+
587
+ ### Features
588
+
589
+ * **api:** generate By{Index} query fields in SDL for GSI resolvers ([46681b3](https://github.com/ReventlessDev/reventless-core/commit/46681b3ecf2877a1cb6b8459547e014cba0c1f41))
590
+
591
+
592
+ # 3.0.0-alpha.31 (2026-04-12)
593
+
594
+ ### Features
595
+
596
+ * **platform:** MakeAsync opt-in for aggregates and DCB slices ([6970d88](https://github.com/ReventlessDev/reventless-core/commit/6970d889fa05e738dbda5d8e450a1dcf927b23b7))
597
+ * **platform:** symmetric domain/platform server architecture (Phase 6) ([4bbc88d](https://github.com/ReventlessDev/reventless-core/commit/4bbc88d2dac3b0d3a6099008f3814d6aedf03e29))
598
+
599
+
600
+ # 3.0.0-alpha.30 (2026-04-11)
601
+
602
+ ### Features
603
+
604
+ * **platform:** add apiTarget routing for deployPlugin (Phase 4a-4d) ([b9b2d75](https://github.com/ReventlessDev/reventless-core/commit/b9b2d754c2fb61854fc5bca8761a0d0acfb89009))
605
+
606
+
607
+ # 3.0.0-alpha.29 (2026-04-09)
608
+
609
+ ### Features
610
+
611
+ * **ppx:** implement [@no](https://github.com/no)Api to exclude commands from GraphQL/MCP exposure ([079b686](https://github.com/ReventlessDev/reventless-core/commit/079b68693976a53f8094f1233ebf8b67a86a65c0))
612
+
613
+
614
+ # 3.0.0-alpha.28 (2026-04-07)
615
+
616
+ ### Dependency Updates
617
+
618
+ * **@reventlessdev/reventless-spec** updated to `^3.0.0-alpha.23`
619
+
620
+
621
+ # 3.0.0-alpha.27 (2026-04-07)
622
+
623
+ ### Features
624
+
625
+ * **ppx+querydb:** annotation-driven key design and sort key queries ([dee6de8](https://github.com/ReventlessDev/reventless-core/commit/dee6de84c2d2de5431d064f18ac7132bc8c23110))
626
+
627
+
628
+ # 3.0.0-alpha.26 (2026-04-07)
629
+
630
+ ### Dependency Updates
631
+
632
+ * **@reventlessdev/reventless-spec** updated to `^3.0.0-alpha.21`
633
+
634
+
635
+ # 3.0.0-alpha.25 (2026-04-06)
636
+
637
+ ### Bug Fixes
638
+
639
+ * add package-specs to all rescript.json to prevent CJS .js output ([780f1e0](https://github.com/ReventlessDev/reventless-core/commit/780f1e035173b73b17b78466ad01fb69c7cca350))
640
+
641
+
642
+ # 3.0.0-alpha.24 (2026-04-06)
643
+
644
+ ### Dependency Updates
645
+
646
+ * **@reventlessdev/reventless-spec** updated to `^3.0.0-alpha.19`
647
+
648
+
649
+ # 3.0.0-alpha.23 (2026-04-04)
650
+
651
+ * feat!: add reventless-ppx with @@reventless.spec, @@reventless.behavior, @@reventless.dcbTags ([cb203ec](https://github.com/ReventlessDev/reventless-core/commit/cb203ece5ea3a1b92ba7d1a57d9e12bb6c4c2487))
652
+ * feat!: Extension Blueprint pattern with auto-merge and plugin naming ([0856d4d](https://github.com/ReventlessDev/reventless-core/commit/0856d4d2a23b8d5175fd091f90110d4c44927191))
653
+ ### Features
654
+
655
+ * add Relay server compliance to GraphQL API ([bd9245d](https://github.com/ReventlessDev/reventless-core/commit/bd9245da87023247643c5fa37cee21b0cde0f61e))
656
+
657
+ ### BREAKING CHANGES
658
+
659
+ * Example spec files no longer export manual moduleUrl/name/Id
660
+ declarations — these are now PPX-generated. Downstream code referencing these
661
+ exports is unaffected (same values, different source).
662
+ * Platform.Extension.Make returns Extension.Blueprint
663
+ instead of Extension.T. Plugin.make ~extensions param type changes
664
+ accordingly. Make2/Make3/MakeMulti removed from Platform.T.
665
+
666
+
667
+
668
+ # 3.0.0-alpha.22 (2026-04-03)
669
+
670
+ * feat!: support multi-command returns in InboundTranslationSlice ([eaac621](https://github.com/ReventlessDev/reventless-core/commit/eaac6213829b876db508b6a98db081ee40dc3e95))
671
+
672
+ ### BREAKING CHANGES
673
+
674
+ * All `translate` implementations must wrap returns in arrays.
675
+
676
+
677
+
678
+ # 3.0.0-alpha.21 (2026-04-02)
679
+
680
+ ### Features
681
+
682
+ * add tags field to resource and resolvedResource records ([18911e6](https://github.com/ReventlessDev/reventless-core/commit/18911e66aa94e60d4a9b72ba1d1ca84dd3fb1a9f))
683
+
684
+
685
+ # 3.0.0-alpha.20 (2026-04-02)
686
+
687
+ * feat!: add deploy lifecycle hooks, enrich resource metadata, and add Adapter.make factory ([0a171f4](https://github.com/ReventlessDev/reventless-core/commit/0a171f4b8aec0ee47fd7ee5069adf5d5b194548e))
688
+
689
+ ### BREAKING CHANGES
690
+
691
+ * Adapter.resource.info replaced with resourceInfo variant type.
692
+ Service field values now prefixed with provider namespace (e.g. "aws:DynamoDb").
693
+ New required fields on resource/resolvedResource: role, region, resourceType, configuration.
694
+
695
+
696
+
697
+ # 3.0.0-alpha.19 (2026-03-31)
698
+
699
+ ### Features
700
+
701
+ * return Plugin.outputs from deployPlugin ([22e59f7](https://github.com/ReventlessDev/reventless-core/commit/22e59f730c5c87dd0e3e8d4cf225d401298759f8))
702
+
703
+
704
+ # [3.0.0-alpha.18](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/reventless-infra@3.0.0-alpha.17...@reventlessdev/reventless-infra@3.0.0-alpha.18) (2026-03-30)
705
+
706
+ ### Features
707
+
708
+ * unified logging with structured output, colored levels, and CloudWatch detail ([7754cf1](https://github.com/ReventlessDev/reventless-core/commit/7754cf11037b17fce01ab65c2c906d9faf7ac4b6))
709
+
710
+
711
+ # [3.0.0-alpha.17](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/reventless-infra@3.0.0-alpha.15...@reventlessdev/reventless-infra@3.0.0-alpha.17) (2026-03-28)
712
+
713
+ * feat!: flatten DcbSpec module type into direct Plugin.make parameters ([1c0bc57](https://github.com/ReventlessDev/reventless-core/commit/1c0bc576fcd88b92510900c16f5f117e864d9d7f))
714
+
715
+ ### BREAKING CHANGES
716
+
717
+ * Plugin.make no longer accepts ~dcbSpec=module(DcbSpec).
718
+ Pass slice arrays directly instead. Empty arrays can be omitted.
719
+
720
+
721
+
722
+ # [3.0.0-alpha.16](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/reventless-infra@3.0.0-alpha.15...@reventlessdev/reventless-infra@3.0.0-alpha.16) (2026-03-27)
723
+
724
+ * feat!: flatten DcbSpec module type into direct Plugin.make parameters ([1c0bc57](https://github.com/ReventlessDev/reventless-core/commit/1c0bc576fcd88b92510900c16f5f117e864d9d7f))
725
+
726
+ ### BREAKING CHANGES
727
+
728
+ * Plugin.make no longer accepts ~dcbSpec=module(DcbSpec).
729
+ Pass slice arrays directly instead. Empty arrays can be omitted.
730
+
731
+
732
+
733
+ # [3.0.0-alpha.15](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/reventless-infra@3.0.0-alpha.12...@reventlessdev/reventless-infra@3.0.0-alpha.15) (2026-03-27)
734
+
735
+ * feat!: decouple DCB slices from shared event log union type ([2a40e8d](https://github.com/ReventlessDev/reventless-core/commit/2a40e8dd9babfb88440fcaccde6fb667b60e0ba9))
736
+
737
+ ### BREAKING CHANGES
738
+
739
+ * All DCB slice specs must use `producedEvent`/`consumedEvent`
740
+ instead of `module DcbEventLogSpec`. Plugin `DcbSpec` no longer has `type event`
741
+ or `with type dcbEvent` constraints.
742
+
743
+
744
+
745
+ # [3.0.0-alpha.14](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/reventless-infra@3.0.0-alpha.12...@reventlessdev/reventless-infra@3.0.0-alpha.14) (2026-03-26)
746
+
747
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
748
+
749
+
750
+
751
+
752
+
753
+ # [3.0.0-alpha.13](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/reventless-infra@3.0.0-alpha.12...@reventlessdev/reventless-infra@3.0.0-alpha.13) (2026-03-26)
754
+
755
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
756
+
757
+
758
+
759
+
760
+
761
+ # [3.0.0-alpha.12](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/reventless-infra@3.0.0-alpha.11...@reventlessdev/reventless-infra@3.0.0-alpha.12) (2026-03-23)
762
+
763
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
764
+
765
+ # [3.0.0-alpha.11](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/reventless-infra@3.0.0-alpha.10...@reventlessdev/reventless-infra@3.0.0-alpha.11) (2026-03-22)
766
+
767
+ * feat(reventless-aws)!: replace esbuild pipeline with compiled ReScript entry points ([6cb3133](https://github.com/ReventlessDev/reventless-core/commit/6cb313323c73a078d0922fa6b977466f61de74ea))
768
+
769
+ ### BREAKING CHANGES
770
+
771
+ * esbuild removed from dependencies, `makeBundled` and
772
+ `makeBundledFromEntryPoint` removed from RuntimeEnvironment_Lambda,
773
+ `BundledEnvironment` module type removed from Runtime.
774
+ # [3.0.0-alpha.10](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/reventless-infra@3.0.0-alpha.9...@reventlessdev/reventless-infra@3.0.0-alpha.10) (2026-03-20)
775
+
776
+ ### Features
777
+
778
+ * **aws:** expose api/apiRole in Platform.T and remove unused MakeBundled modules ([a3be4cc](https://github.com/ReventlessDev/reventless-core/commit/a3be4cc5dc6041fb70c8e44a9e48f0a4f730242a))
779
+ * **aws:** replace CallbackFunction with bundled Lambda handlers ([6f6200b](https://github.com/ReventlessDev/reventless-core/commit/6f6200b0796e5f414493f50fd2f13dd6c7871ef4))
780
+ # [3.0.0-alpha.9](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/reventless-infra@3.0.0-alpha.8...@reventlessdev/reventless-infra@3.0.0-alpha.9) (2026-03-17)
781
+
782
+ ### Bug Fixes
783
+
784
+ * add @aws-sdk/client-appsync dep and fix ESM Component import ([aec0dcd](https://github.com/ReventlessDev/reventless-core/commit/aec0dcd73787ed9d988223c72ffd82d423f834a5))
785
+ ### Features
786
+
787
+ * **reventless-aws:** implement per-plugin deployment with runtime schema stitching ([f16714c](https://github.com/ReventlessDev/reventless-core/commit/f16714c5d2b3ad869863ac30dc55ef3e1570bf4f))
788
+ # [3.0.0-alpha.8](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/reventless-infra@3.0.0-alpha.7...@reventlessdev/reventless-infra@3.0.0-alpha.8) (2026-03-16)
789
+
790
+ * feat!: auto-detect plugin version from package.json via V8 stack trace ([e172673](https://github.com/ReventlessDev/reventless-core/commit/e17267390c197fa34052cef8325c579bb781419f))
791
+ * feat!: replace Core component with Platform_Admin, rename schema prefix Core_ → Admin_ ([940263d](https://github.com/ReventlessDev/reventless-core/commit/940263d8b39e28f4c874af3b0335ae81444928c4))
792
+ ### Features
793
+
794
+ * differentiate ReadModel and StateViewSlice GraphQL query schemas ([62f6130](https://github.com/ReventlessDev/reventless-core/commit/62f6130d2ee34d65fe3eab1395d55c77c0309ddb))
795
+ * internalize scheduler, Core, and setup in Platform.makePlatform ([ce3e1b6](https://github.com/ReventlessDev/reventless-core/commit/ce3e1b60e8ffdbab1a6b5cd08d73f5e907726481))
796
+
797
+ ### BREAKING CHANGES
798
+
799
+ * Plugin.make no longer accepts ~version.
800
+
801
+ * GraphQL/MCP field names change from Core_ to Admin_
802
+ prefix (e.g. Core_Plugin → Admin_Plugin). makePlatform no longer accepts
803
+ ~extensionPoints, ~aggregates, ~readModels, ~dcbSpec parameters.
804
+ # [3.0.0-alpha.7](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/reventless-infra@3.0.0-alpha.6...@reventlessdev/reventless-infra@3.0.0-alpha.7) (2026-03-14)
805
+
806
+ ### Bug Fixes
807
+
808
+ * eliminate Obj.magic from Platform DcbSpec boundaries ([135888b](https://github.com/ReventlessDev/reventless-core/commit/135888b226727d7ed8cc1e364e242b12071e107a))
809
+ ### Features
810
+
811
+ * add optional DCB spec support to Core module and consolidate builder helpers ([06a5e6f](https://github.com/ReventlessDev/reventless-core/commit/06a5e6f2eeadbabd20fb7197318d760b91c34925))
812
+ # [3.0.0-alpha.6](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/reventless-infra@3.0.0-alpha.5...@reventlessdev/reventless-infra@3.0.0-alpha.6) (2026-03-12)
813
+
814
+ ### Features
815
+
816
+ * capitalize and prefix Core_ on GraphQL/MCP queries and mutations ([769420b](https://github.com/ReventlessDev/reventless-core/commit/769420b47ce35aba46d248d1529f7c72c7df9c0e))
817
+ * unify schema generation pipeline across GraphQL and MCP protocols ([84e05ae](https://github.com/ReventlessDev/reventless-core/commit/84e05aeca8c13000040d1230502b07350ab5daeb))
818
+ # [3.0.0-alpha.5](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/reventless-infra@3.0.0-alpha.4...@reventlessdev/reventless-infra@3.0.0-alpha.5) (2026-03-12)
819
+
820
+ ### Features
821
+
822
+ * **deps:** upgrade rescript to 12.2 and migrate Belt usages to stdlib ([eaa96ea](https://github.com/ReventlessDev/reventless-core/commit/eaa96ea61ca40d61573fb5fe2002a1f73d43ce3e))
823
+ # [3.0.0-alpha.4](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/reventless-infra@3.0.0-alpha.2...@reventlessdev/reventless-infra@3.0.0-alpha.4) (2026-03-08)
824
+
825
+ ### Bug Fixes
826
+
827
+ * remove 26 Obj.magic usages, improve type safety across codebase ([ebb8925](https://github.com/ReventlessDev/reventless-core/commit/ebb8925b760a0f070b1aaf3ef2d4bf3fdc7282a3))
828
+ ### Features
829
+
830
+ * add AutomationSlice component (TODO list pattern) ([4642688](https://github.com/ReventlessDev/reventless-core/commit/46426884727aff74db33b9289feca9878b0e3ed9))
831
+ * add MCP event history resources and fix QueryDb/MCP resource bugs ([3197d4f](https://github.com/ReventlessDev/reventless-core/commit/3197d4fb52a7b20bc68cd3088d9d6fac21a41f6f))
832
+ * add MCP server layer for AI-native access to Reventless ([4b288bc](https://github.com/ReventlessDev/reventless-core/commit/4b288bce2fc17c28c32c6778028becb0cde4c544))
833
+ * add TranslationSlice components with docs and webhook backlog plan ([7362a8f](https://github.com/ReventlessDev/reventless-core/commit/7362a8f26bca2eaad9d99488ec597c426635659d))
834
+ # [3.0.0-alpha.3](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/reventless-infra@3.0.0-alpha.2...@reventlessdev/reventless-infra@3.0.0-alpha.3) (2026-03-08)
835
+
836
+ ### Bug Fixes
837
+
838
+ * remove 26 Obj.magic usages, improve type safety across codebase ([ebb8925](https://github.com/ReventlessDev/reventless-core/commit/ebb8925b760a0f070b1aaf3ef2d4bf3fdc7282a3))
839
+ ### Features
840
+
841
+ * add AutomationSlice component (TODO list pattern) ([4642688](https://github.com/ReventlessDev/reventless-core/commit/46426884727aff74db33b9289feca9878b0e3ed9))
842
+ * add MCP event history resources and fix QueryDb/MCP resource bugs ([3197d4f](https://github.com/ReventlessDev/reventless-core/commit/3197d4fb52a7b20bc68cd3088d9d6fac21a41f6f))
843
+ * add MCP server layer for AI-native access to Reventless ([4b288bc](https://github.com/ReventlessDev/reventless-core/commit/4b288bce2fc17c28c32c6778028becb0cde4c544))
844
+ * add TranslationSlice components with docs and webhook backlog plan ([7362a8f](https://github.com/ReventlessDev/reventless-core/commit/7362a8f26bca2eaad9d99488ec597c426635659d))
845
+ # [3.0.0-alpha.2](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/reventless-infra@3.0.0-alpha.1...@reventlessdev/reventless-infra@3.0.0-alpha.2) (2026-03-03)
846
+
847
+ ### Features
848
+
849
+ * **api:** implement Api component with GraphQL fragment generation and schema stitching ([c882d3a](https://github.com/ReventlessDev/reventless-core/commit/c882d3aae8722cf6cbe9b4fbf9518d9f434ce06a))
850
+ * **platform:** expose Plugin, Core, makeScheduler, makePlatform via Platform.T ([0df4bf3](https://github.com/ReventlessDev/reventless-core/commit/0df4bf333ea4f9c0e51e96df1ad0da4ab471ffe8))
851
+ # 3.0.0-alpha.1 (2026-03-02)
852
+
853
+ **Note:** Version bump only for package @reventlessdev/reventless-infra