@reventlessdev/reventless-gwt 1.0.0-alpha.74
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 +698 -0
- package/LICENSE +202 -0
- package/bin/reventless-dev.mjs +21 -0
- package/package.json +54 -0
- package/rescript.json +36 -0
- package/src/.gwtignore +10 -0
- package/src/Automation_GWT.res +207 -0
- package/src/Automation_GWT.res.mjs +160 -0
- package/src/Behavior_GWT.res +603 -0
- package/src/Behavior_GWT.res.mjs +426 -0
- package/src/Bind.res +29 -0
- package/src/Bind.res.mjs +22 -0
- package/src/BuildClassifier.res +137 -0
- package/src/BuildClassifier.res.mjs +136 -0
- package/src/Cancellation.res +31 -0
- package/src/Cancellation.res.mjs +45 -0
- package/src/ChildProcess.res +84 -0
- package/src/ChildProcess.res.mjs +92 -0
- package/src/Cli.res +671 -0
- package/src/Cli.res.mjs +754 -0
- package/src/Collector.res +201 -0
- package/src/Collector.res.mjs +215 -0
- package/src/ComponentMeta.res +104 -0
- package/src/ComponentMeta.res.mjs +120 -0
- package/src/ComponentScan.res +103 -0
- package/src/ComponentScan.res.mjs +105 -0
- package/src/Delegate_GWT.res +303 -0
- package/src/Delegate_GWT.res.mjs +372 -0
- package/src/Diff.res +91 -0
- package/src/Diff.res.mjs +98 -0
- package/src/Discovery.res +105 -0
- package/src/Discovery.res.mjs +103 -0
- package/src/DomainDeadCode.res +93 -0
- package/src/DomainDeadCode.res.mjs +69 -0
- package/src/DomainGraph.res +0 -0
- package/src/DomainGraph.res.mjs +0 -0
- package/src/EventMapping_GWT.res +29 -0
- package/src/EventMapping_GWT.res.mjs +44 -0
- package/src/Filter.res +36 -0
- package/src/Filter.res.mjs +40 -0
- package/src/Flow_GWT.res +664 -0
- package/src/Flow_GWT.res.mjs +604 -0
- package/src/FormatterHuman.res +138 -0
- package/src/FormatterHuman.res.mjs +122 -0
- package/src/FormatterJson.res +257 -0
- package/src/FormatterJson.res.mjs +320 -0
- package/src/FormatterJunit.res +93 -0
- package/src/FormatterJunit.res.mjs +90 -0
- package/src/FormatterTap.res +139 -0
- package/src/FormatterTap.res.mjs +149 -0
- package/src/FormatterVsCode.res +362 -0
- package/src/FormatterVsCode.res.mjs +564 -0
- package/src/Hint.res +119 -0
- package/src/Hint.res.mjs +124 -0
- package/src/InboundTranslation_GWT.res +83 -0
- package/src/InboundTranslation_GWT.res.mjs +94 -0
- package/src/JestBind.res +70 -0
- package/src/JestBind.res.mjs +63 -0
- package/src/Loader.res +24 -0
- package/src/Loader.res.mjs +23 -0
- package/src/LocalHost.res +135 -0
- package/src/LocalHost.res.mjs +127 -0
- package/src/Mapping_GWT.res +474 -0
- package/src/Mapping_GWT.res.mjs +322 -0
- package/src/MultiSourceProjection_GWT.res +316 -0
- package/src/MultiSourceProjection_GWT.res.mjs +354 -0
- package/src/OutboundTranslation_GWT.res +238 -0
- package/src/OutboundTranslation_GWT.res.mjs +186 -0
- package/src/Outcome.res +161 -0
- package/src/Outcome.res.mjs +140 -0
- package/src/PackageScan.res +80 -0
- package/src/PackageScan.res.mjs +81 -0
- package/src/PlatformRunner.res +160 -0
- package/src/PlatformRunner.res.mjs +155 -0
- package/src/PlatformScan.res +138 -0
- package/src/PlatformScan.res.mjs +131 -0
- package/src/ProcessManager.res +91 -0
- package/src/ProcessManager.res.mjs +80 -0
- package/src/Projection_GWT.res +312 -0
- package/src/Projection_GWT.res.mjs +332 -0
- package/src/Query_GWT.res +379 -0
- package/src/Query_GWT.res.mjs +367 -0
- package/src/RenderRescript.res +125 -0
- package/src/RenderRescript.res.mjs +141 -0
- package/src/RunnerTypes.res +68 -0
- package/src/RunnerTypes.res.mjs +60 -0
- package/src/SideEffect_GWT.res +157 -0
- package/src/SideEffect_GWT.res.mjs +113 -0
- package/src/StateChange/ExternalAddCategorySlice.res +25 -0
- package/src/StateChange/ExternalAddCategorySlice.res.mjs +34 -0
- package/src/StateChange/ExternalAddCategorySlice_Behavior.res +19 -0
- package/src/StateChange/ExternalAddCategorySlice_Behavior.res.mjs +46 -0
- package/src/StateChange/WithFixtures.res +22 -0
- package/src/StateChange/WithFixtures.res.mjs +31 -0
- package/src/StateChange/WithFixtures_Behavior.res +17 -0
- package/src/StateChange/WithFixtures_Behavior.res.mjs +37 -0
- package/src/StateChange/WithManualOpen.res +23 -0
- package/src/StateChange/WithManualOpen.res.mjs +31 -0
- package/src/StateChange/WithManualOpen_Behavior.res +17 -0
- package/src/StateChange/WithManualOpen_Behavior.res.mjs +37 -0
- package/src/StubRuntime.res +53 -0
- package/src/StubRuntime.res.mjs +54 -0
- package/src/TestFixtures.res +16 -0
- package/src/TestFixtures.res.mjs +34 -0
- package/src/Watch.res +92 -0
- package/src/Watch.res.mjs +83 -0
- package/src/WatcherProbe.res +48 -0
- package/src/WatcherProbe.res.mjs +46 -0
- package/tests/AutomationGwtTest.res +71 -0
- package/tests/AutomationGwtTest.res.mjs +189 -0
- package/tests/BuildClassifierTest.res +94 -0
- package/tests/BuildClassifierTest.res.mjs +132 -0
- package/tests/ComponentMetaTest.res +52 -0
- package/tests/ComponentMetaTest.res.mjs +57 -0
- package/tests/DelegateGwtTest.res +487 -0
- package/tests/DelegateGwtTest.res.mjs +891 -0
- package/tests/DiscoveryTest.res +42 -0
- package/tests/DiscoveryTest.res.mjs +43 -0
- package/tests/DomainDeadCodeTest.res +116 -0
- package/tests/DomainDeadCodeTest.res.mjs +155 -0
- package/tests/DomainGraphTest.res +365 -0
- package/tests/DomainGraphTest.res.mjs +413 -0
- package/tests/FlowAggregateGwtTest.res +169 -0
- package/tests/FlowAggregateGwtTest.res.mjs +269 -0
- package/tests/FlowCrossPluginGwtTest.res +340 -0
- package/tests/FlowCrossPluginGwtTest.res.mjs +798 -0
- package/tests/FlowGwtTest.res +222 -0
- package/tests/FlowGwtTest.res.mjs +432 -0
- package/tests/FormatterVsCodeMessageTest.res +41 -0
- package/tests/FormatterVsCodeMessageTest.res.mjs +42 -0
- package/tests/InboundTranslationGwtTest.res +34 -0
- package/tests/InboundTranslationGwtTest.res.mjs +98 -0
- package/tests/LocalHostIntegration.res +70 -0
- package/tests/LocalHostIntegration.res.mjs +64 -0
- package/tests/LocalHostTest.res +71 -0
- package/tests/LocalHostTest.res.mjs +63 -0
- package/tests/MappingGwtTest.res +348 -0
- package/tests/MappingGwtTest.res.mjs +592 -0
- package/tests/OutboundTranslationGwtTest.res +59 -0
- package/tests/OutboundTranslationGwtTest.res.mjs +138 -0
- package/tests/PlatformRunnerTest.res +66 -0
- package/tests/PlatformRunnerTest.res.mjs +85 -0
- package/tests/PlatformScanTest.res +61 -0
- package/tests/PlatformScanTest.res.mjs +56 -0
- package/tests/QueryGwtTest.res +161 -0
- package/tests/QueryGwtTest.res.mjs +314 -0
- package/tests/QueryResolverGwtTest.res +71 -0
- package/tests/QueryResolverGwtTest.res.mjs +136 -0
- package/tests/RunnerUnitTest.res +219 -0
- package/tests/RunnerUnitTest.res.mjs +244 -0
- package/tests/SideEffect/FakeOrderNotification.res +23 -0
- package/tests/SideEffect/FakeOrderNotification.res.mjs +36 -0
- package/tests/SideEffect/FakeOrderNotificationGwtTest.res +35 -0
- package/tests/SideEffect/FakeOrderNotificationGwtTest.res.mjs +73 -0
- package/tests/SideEffect/MockEmail.res +18 -0
- package/tests/SideEffect/MockEmail.res.mjs +47 -0
- package/tests/StateChange/ExternalAddCategorySlice_GWT.res +27 -0
- package/tests/StateChange/ExternalAddCategorySlice_GWT.res.mjs +70 -0
- package/tests/StateChange/WithFixtures_Fixtures.res +9 -0
- package/tests/StateChange/WithFixtures_Fixtures.res.mjs +20 -0
- package/tests/StateChange/WithFixtures_GWT.res +23 -0
- package/tests/StateChange/WithFixtures_GWT.res.mjs +56 -0
- package/tests/StateChange/WithManualOpen_Fixtures.res +7 -0
- package/tests/StateChange/WithManualOpen_Fixtures.res.mjs +20 -0
- package/tests/StateChange/WithManualOpen_GWT.res +17 -0
- package/tests/StateChange/WithManualOpen_GWT.res.mjs +56 -0
- package/tests/StateChangeSliceGwtTest.res +160 -0
- package/tests/StateChangeSliceGwtTest.res.mjs +280 -0
- package/tests/StateViewSliceGwtTest.res +64 -0
- package/tests/StateViewSliceGwtTest.res.mjs +161 -0
- package/tests/WatchDebounceTest.res +78 -0
- package/tests/WatchDebounceTest.res.mjs +97 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,698 @@
|
|
|
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
|
+
# 1.0.0-alpha.74 (2026-06-27)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **dcb:** infer cross-partition scope; drop [@cross](https://github.com/cross)Partition from hybrid catalog ([268c57b](https://github.com/ReventlessDev/reventless-core/commit/268c57b1620b6075d2259f3a312efd04ecd735d5))
|
|
11
|
+
* **gwt:** add `todo` binding for spec-less slice scaffolds ([c8ecf02](https://github.com/ReventlessDev/reventless-core/commit/c8ecf0255b324afc4d2bb7258f7e9fd2a4c820be))
|
|
12
|
+
* **gwt:** catch unreachable cross-entity reads in per-slice Behavior GWT ([9666033](https://github.com/ReventlessDev/reventless-core/commit/96660335e8b5642b0798fde2231fb0ddad8f90d7))
|
|
13
|
+
* verify category exists in AddProduct via cross-partition DCB read ([074d4fa](https://github.com/ReventlessDev/reventless-core/commit/074d4faecf694164f2e0c789c4d94cae402b03e1))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
# 1.0.0-alpha.73 (2026-06-22)
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **domain-graph:** route EP commands only with a real inbound protocol ([647d1fa](https://github.com/ReventlessDev/reventless-core/commit/647d1fa0194189f4d53cf5fca0f2ef4045b983f9))
|
|
21
|
+
* **reflection:** surface payload-less commands & events in the event graph ([71819cf](https://github.com/ReventlessDev/reventless-core/commit/71819cf71fc7b0b0e1fc64fb7dce23f84f69b38d))
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
* **domain-graph:** draw the commands reacting slices raise on their target ([b990be2](https://github.com/ReventlessDev/reventless-core/commit/b990be293305544385abf7c2093161fc9a75c78c))
|
|
25
|
+
* **gwt:** pin local platform to fixed ports via --ui-ports ([ee60259](https://github.com/ReventlessDev/reventless-core/commit/ee602590b37908747f6e41c718861720efac61a0))
|
|
26
|
+
* **structure:** mark API-exposed commands for the event-graph badge ([8cd6faa](https://github.com/ReventlessDev/reventless-core/commit/8cd6faa0a66c6cf1b4b5eea26df6f70c540b67a4))
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
# 1.0.0-alpha.72 (2026-06-21)
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
* **dcb:** cross-partition secondary-tag reads (Phase 7) ([9e1f8b3](https://github.com/ReventlessDev/reventless-core/commit/9e1f8b3595004b92148dd053aae380078baa42a3))
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
# 1.0.0-alpha.71 (2026-06-21)
|
|
37
|
+
|
|
38
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
# 1.0.0-alpha.70 (2026-06-21)
|
|
45
|
+
|
|
46
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
# 1.0.0-alpha.69 (2026-06-20)
|
|
53
|
+
|
|
54
|
+
### Features
|
|
55
|
+
|
|
56
|
+
* **dcb:** narrow query clauses to types that can carry each tag (Issue 14) ([6bceae6](https://github.com/ReventlessDev/reventless-core/commit/6bceae675b91154b5a1abf73a6aaca56533cbbe8))
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
# 1.0.0-alpha.68 (2026-06-20)
|
|
60
|
+
|
|
61
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
# 1.0.0-alpha.67 (2026-06-20)
|
|
68
|
+
|
|
69
|
+
### Bug Fixes
|
|
70
|
+
|
|
71
|
+
* **packaging:** publish rescript packages source-only via .npmignore ([e831c37](https://github.com/ReventlessDev/reventless-core/commit/e831c372b6347d997da1e876c12b6770414f5f41))
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
# 1.0.0-alpha.66 (2026-06-20)
|
|
75
|
+
|
|
76
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
# 1.0.0-alpha.65 (2026-06-20)
|
|
83
|
+
|
|
84
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
# 1.0.0-alpha.64 (2026-06-18)
|
|
91
|
+
|
|
92
|
+
### Features
|
|
93
|
+
|
|
94
|
+
* **domain-graph:** extension point routes to its delegate's commands ([8226b4b](https://github.com/ReventlessDev/reventless-core/commit/8226b4bbfb98a066cfc2fe200c890916af2306a3))
|
|
95
|
+
* **gwt:** clean-rebuild a package when a source module is relocated (Phase 12) ([e6a4843](https://github.com/ReventlessDev/reventless-core/commit/e6a4843af036f900f50ca4f16c82616cff06298f))
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
# 1.0.0-alpha.63 (2026-06-18)
|
|
99
|
+
|
|
100
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
# 1.0.0-alpha.62 (2026-06-18)
|
|
107
|
+
|
|
108
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
# 1.0.0-alpha.61 (2026-06-18)
|
|
115
|
+
|
|
116
|
+
### Bug Fixes
|
|
117
|
+
|
|
118
|
+
* **graph:** route extension edges to the commands they create ([31c8d50](https://github.com/ReventlessDev/reventless-core/commit/31c8d5031c87258d68af20e738d091f7011836b3))
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
# 1.0.0-alpha.60 (2026-06-17)
|
|
122
|
+
|
|
123
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
# 1.0.0-alpha.59 (2026-06-17)
|
|
130
|
+
|
|
131
|
+
### Bug Fixes
|
|
132
|
+
|
|
133
|
+
* **packaging:** executable ppx binaries + promote phantom deps for standalone installs ([9b6bea2](https://github.com/ReventlessDev/reventless-core/commit/9b6bea24570b0b0654c825d560ef781c0295512a))
|
|
134
|
+
* feat!: rename Call directive to HandleDirective for naming consistency ([3fdf84a](https://github.com/ReventlessDev/reventless-core/commit/3fdf84a503b8ee9b07d0774e34c911f5d90d45d0))
|
|
135
|
+
### Features
|
|
136
|
+
|
|
137
|
+
* **core:** carry emitted-event field schemas in pluginStructure (Phase 6.3) ([693d452](https://github.com/ReventlessDev/reventless-core/commit/693d4529ee4c66a2a4a4b0d4d7efb104cf94bcab))
|
|
138
|
+
* **gwt:** add Flow_GWT.AggregateCommandStep ([3be5afe](https://github.com/ReventlessDev/reventless-core/commit/3be5afe19458dbdf4a37b680f18870e2abc8bda5))
|
|
139
|
+
* **gwt:** add SideEffect_GWT for aggregate-style egress ([cb6e88d](https://github.com/ReventlessDev/reventless-core/commit/cb6e88dfa73c7772f7519b6fece9cd10771ff30a))
|
|
140
|
+
* **gwt:** assert handled directives in Delegate_GWT ([b4ca27e](https://github.com/ReventlessDev/reventless-core/commit/b4ca27e3aa0e2588610aefc62ad927da935a6a08))
|
|
141
|
+
* **gwt:** bidirectional Delegate_GWT drivers with direction-named verbs ([bb5de9e](https://github.com/ReventlessDev/reventless-core/commit/bb5de9eff2b06cedd72bc6c70747c8159937044e))
|
|
142
|
+
* **gwt:** cross-plugin AggregatesFlow_GWT + close hybrid-parity plan ([e223566](https://github.com/ReventlessDev/reventless-core/commit/e223566c54938ed6dcb8d8bd4570e0fd0f30ca07))
|
|
143
|
+
* **reventless-dev:** emit component definitions over the NDJSON protocol (Phase 6.3) ([a327084](https://github.com/ReventlessDev/reventless-core/commit/a327084d247d1600c4f9e92624f2b59e856913f7))
|
|
144
|
+
|
|
145
|
+
### BREAKING CHANGES
|
|
146
|
+
|
|
147
|
+
* out-of-tree plugins emitting Call(handler, msg) from
|
|
148
|
+
commandAction / eventAction / incomingCommandAction / outgoingCommandAction
|
|
149
|
+
must rename to HandleDirective(handler, directive). The callHandler<'msg>
|
|
150
|
+
type alias is now directiveHandler<'directive>.
|
|
151
|
+
|
|
152
|
+
Plan: docs/plans/done/directive-naming-consistency.md
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
# 1.0.0-alpha.58 (2026-06-12)
|
|
157
|
+
|
|
158
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
# 1.0.0-alpha.57 (2026-06-12)
|
|
165
|
+
|
|
166
|
+
### Features
|
|
167
|
+
|
|
168
|
+
* **vscode:** jump from event-graph nodes to source + show Internal components in the dev graph ([6a6e5e4](https://github.com/ReventlessDev/reventless-core/commit/6a6e5e466c6ea5c0c7315ccc37a538e0b496c99a))
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
# 1.0.0-alpha.56 (2026-06-11)
|
|
172
|
+
|
|
173
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
# 1.0.0-alpha.55 (2026-06-10)
|
|
180
|
+
|
|
181
|
+
### Bug Fixes
|
|
182
|
+
|
|
183
|
+
* **reventless-gwt,reventless-vscode:** clear stuck build-status spinner when a watcher dies or hangs ([1a6c1aa](https://github.com/ReventlessDev/reventless-core/commit/1a6c1aa624f5b740bd826a0b7d82bd8d58d4e342))
|
|
184
|
+
* **reventless-gwt,reventless-vscode:** render platform log in a Pseudoterminal (ANSI colors) ([b3a848f](https://github.com/ReventlessDev/reventless-core/commit/b3a848f457c7144a9d3156888e64fcfd8cf8b29d))
|
|
185
|
+
* **reventless-gwt:** adopt rescript watch (watch.lock) so the engine coexists with rescript-vscode ([464d127](https://github.com/ReventlessDev/reventless-core/commit/464d127c774a08bb6366aab10bb5772f427a890a))
|
|
186
|
+
* **reventless-gwt:** prune the GWT DSL modules in src/ from discovery ([849ea0a](https://github.com/ReventlessDev/reventless-core/commit/849ea0add03edd42b5f08f4e64d96468fe57058c))
|
|
187
|
+
* **reventless-gwt:** render inline-record variant payloads in GWT diffs ([fe78c9d](https://github.com/ReventlessDev/reventless-core/commit/fe78c9de6a50417ded5103c1cb1974ba0a80459e))
|
|
188
|
+
* **reventless-gwt:** strip ANSI from platform runner log lines ([28786d2](https://github.com/ReventlessDev/reventless-core/commit/28786d2062488dd71aba62eb40477774c4c73942))
|
|
189
|
+
* **reventless-gwt:** surface ReScript exception messages in test runner ([f73dbc3](https://github.com/ReventlessDev/reventless-core/commit/f73dbc3a721fb2671b4099ceb86e9bcf107703ff))
|
|
190
|
+
* **reventless-vscode:** repair cross-package genType bridge and verify the shared NDJSON contract end-to-end ([f9d2e15](https://github.com/ReventlessDev/reventless-core/commit/f9d2e15ec70ea3def88818cb3acd7a17ba2d240e))
|
|
191
|
+
### Features
|
|
192
|
+
|
|
193
|
+
* **reventless-core:** extension-point source events in pluginStructure ([9c47a0e](https://github.com/ReventlessDev/reventless-core/commit/9c47a0ea9a1643ac12fbe8dc1c43244e580de024))
|
|
194
|
+
* **reventless-gwt,reventless-vscode:** runner Phase 6 — Sqlite toggle, replay, export ([43356f7](https://github.com/ReventlessDev/reventless-core/commit/43356f7b453a9dd3ed03eced16cc95b8b70309e6))
|
|
195
|
+
* **reventless-gwt:** carry component source files on the components event ([64c7057](https://github.com/ReventlessDev/reventless-core/commit/64c705745a7f3606b64aa08f824ea58f7b539681))
|
|
196
|
+
* **reventless-gwt:** CLI-managed watch engine for zero-config editor testing ([4f6445f](https://github.com/ReventlessDev/reventless-core/commit/4f6445f6942972e62ee4e34a4ec4e98e9eb41a3e))
|
|
197
|
+
* **reventless-gwt:** component-aware discovery — component field + components inventory (protocol 2) ([564c583](https://github.com/ReventlessDev/reventless-core/commit/564c583c3707b82ce2538bd76dd9996e313cef8d))
|
|
198
|
+
* **reventless-gwt:** emit mismatch kind on testFail (protocol 3) ([8269878](https://github.com/ReventlessDev/reventless-core/commit/826987818d506a5fc1aac21e0b46d776c313395b))
|
|
199
|
+
* **reventless-gwt:** event-modeling graph event (Phase 6), protocol 6 ([a36d7f2](https://github.com/ReventlessDev/reventless-core/commit/a36d7f25e55c500164879ebbe0274d6989c8cf7e))
|
|
200
|
+
* **reventless-gwt:** local platform runner CLI (reventless-gwt platform) ([1be0be7](https://github.com/ReventlessDev/reventless-core/commit/1be0be7eca04acf4876d9e71e20d9ccdd049151c))
|
|
201
|
+
* **reventless-gwt:** local-host foundation + domain dead-code (Phases 4.5, 5) ([23c368a](https://github.com/ReventlessDev/reventless-core/commit/23c368a1b171dd14bc70d277d6d75bd2ac048a46))
|
|
202
|
+
* **reventless-gwt:** prune .gwtignore subtrees from discovery and component scan ([51ab8b1](https://github.com/ReventlessDev/reventless-core/commit/51ab8b180df9a6cb6a68b3c9203ab385d215b29d))
|
|
203
|
+
* **reventless-vscode:** port watchRegistry to ReScript + share the StreamEvent NDJSON contract with the CLI (Phase 3 + Stretch) ([9f9ee8d](https://github.com/ReventlessDev/reventless-core/commit/9f9ee8d73cf754863d364ddae3f899320fed46c0))
|
|
204
|
+
* **vscode:** scope views to an active app + continue local event numbering across restarts ([59336f3](https://github.com/ReventlessDev/reventless-core/commit/59336f3ccb30028e1702e29f7941468f67180ff3)), closes [#1](https://github.com/ReventlessDev/reventless-core/issues/1)
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
# 1.0.0-alpha.54 (2026-06-08)
|
|
208
|
+
|
|
209
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
# 1.0.0-alpha.53 (2026-06-08)
|
|
216
|
+
|
|
217
|
+
### Bug Fixes
|
|
218
|
+
|
|
219
|
+
* **reventless-vscode:** repair cross-package genType bridge and verify the shared NDJSON contract end-to-end ([71d5512](https://github.com/ReventlessDev/reventless-core/commit/71d5512c244739ced99c0cbe4083509174d3273e))
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
# 1.0.0-alpha.52 (2026-06-08)
|
|
223
|
+
|
|
224
|
+
### Features
|
|
225
|
+
|
|
226
|
+
* **reventless-vscode:** port watchRegistry to ReScript + share the StreamEvent NDJSON contract with the CLI (Phase 3 + Stretch) ([a7b0c31](https://github.com/ReventlessDev/reventless-core/commit/a7b0c31b9fc8f25af65aeafa51a0a0a3a9ea1f15))
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
# 1.0.0-alpha.51 (2026-06-08)
|
|
230
|
+
|
|
231
|
+
### Bug Fixes
|
|
232
|
+
|
|
233
|
+
* **reventless-gwt,reventless-vscode:** render platform log in a Pseudoterminal (ANSI colors) ([1838de5](https://github.com/ReventlessDev/reventless-core/commit/1838de58f23946c8ee99058e110f0d56acc590f8))
|
|
234
|
+
* **reventless-gwt:** strip ANSI from platform runner log lines ([99bbab4](https://github.com/ReventlessDev/reventless-core/commit/99bbab46b1b9a9c1b6bab634c8c6647323a2ba7d))
|
|
235
|
+
### Features
|
|
236
|
+
|
|
237
|
+
* **reventless-core:** extension-point source events in pluginStructure ([1e1d925](https://github.com/ReventlessDev/reventless-core/commit/1e1d9258b5a228b9fdfa003348a5367281573b3c))
|
|
238
|
+
* **reventless-gwt,reventless-vscode:** runner Phase 6 — Sqlite toggle, replay, export ([3c6e7c9](https://github.com/ReventlessDev/reventless-core/commit/3c6e7c93aa4e5ae8cd0a5d385362c1aaacb76587))
|
|
239
|
+
* **reventless-gwt:** event-modeling graph event (Phase 6), protocol 6 ([0a78913](https://github.com/ReventlessDev/reventless-core/commit/0a78913d21ad348660f1b190603e4c511dd292e6))
|
|
240
|
+
* **reventless-gwt:** local platform runner CLI (reventless-gwt platform) ([a5a8b6c](https://github.com/ReventlessDev/reventless-core/commit/a5a8b6c93b722e1c6249a538a64159af6ebfe6ad))
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
# 1.0.0-alpha.50 (2026-06-07)
|
|
244
|
+
|
|
245
|
+
### Bug Fixes
|
|
246
|
+
|
|
247
|
+
* **reventless-gwt,reventless-vscode:** clear stuck build-status spinner when a watcher dies or hangs ([3ee777e](https://github.com/ReventlessDev/reventless-core/commit/3ee777e03591443b81bbdfe423bf009d48c9d084))
|
|
248
|
+
### Features
|
|
249
|
+
|
|
250
|
+
* **reventless-gwt:** local-host foundation + domain dead-code (Phases 4.5, 5) ([1e5242a](https://github.com/ReventlessDev/reventless-core/commit/1e5242ae8c9cf60ce23342b2bdeb8be45667cee6))
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
# 1.0.0-alpha.49 (2026-06-06)
|
|
254
|
+
|
|
255
|
+
### Bug Fixes
|
|
256
|
+
|
|
257
|
+
* **reventless-gwt:** adopt rescript watch (watch.lock) so the engine coexists with rescript-vscode ([efbbbd2](https://github.com/ReventlessDev/reventless-core/commit/efbbbd2dd52ddf0df025e02dbbe9b7b87b3169ac))
|
|
258
|
+
* **reventless-gwt:** prune the GWT DSL modules in src/ from discovery ([494f244](https://github.com/ReventlessDev/reventless-core/commit/494f24442c2ceec01751faaa65b22730e6541983))
|
|
259
|
+
* **reventless-gwt:** render inline-record variant payloads in GWT diffs ([5fbcebd](https://github.com/ReventlessDev/reventless-core/commit/5fbcebd080c447836c719c6b0015af35b3c801cb))
|
|
260
|
+
* **reventless-gwt:** surface ReScript exception messages in test runner ([4e3faf9](https://github.com/ReventlessDev/reventless-core/commit/4e3faf942e98d7e6e968f993726a0214ea6c0a14))
|
|
261
|
+
### Features
|
|
262
|
+
|
|
263
|
+
* **reventless-gwt:** carry component source files on the components event ([0c7f794](https://github.com/ReventlessDev/reventless-core/commit/0c7f79405d24444ed8e35bde774965ab24829712))
|
|
264
|
+
* **reventless-gwt:** CLI-managed watch engine for zero-config editor testing ([706360c](https://github.com/ReventlessDev/reventless-core/commit/706360c0cfd80d8044e100fbd6480e4e4cc35d95))
|
|
265
|
+
* **reventless-gwt:** component-aware discovery — component field + components inventory (protocol 2) ([de427a1](https://github.com/ReventlessDev/reventless-core/commit/de427a132b4760b6c61c61413bb38cdbad74e519))
|
|
266
|
+
* **reventless-gwt:** emit mismatch kind on testFail (protocol 3) ([e248a6e](https://github.com/ReventlessDev/reventless-core/commit/e248a6e58a13529b911157cd76513e9f63ee5bac))
|
|
267
|
+
* **reventless-gwt:** prune .gwtignore subtrees from discovery and component scan ([e7194be](https://github.com/ReventlessDev/reventless-core/commit/e7194be826a92fd78d68928a7515ee4a2a58d175))
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
# 1.0.0-alpha.48 (2026-06-04)
|
|
271
|
+
|
|
272
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
# 1.0.0-alpha.47 (2026-06-04)
|
|
279
|
+
|
|
280
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
# 1.0.0-alpha.46 (2026-06-04)
|
|
287
|
+
|
|
288
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
# 1.0.0-alpha.45 (2026-06-04)
|
|
295
|
+
|
|
296
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
# 1.0.0-alpha.44 (2026-06-04)
|
|
303
|
+
|
|
304
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
# 1.0.0-alpha.43 (2026-05-28)
|
|
311
|
+
|
|
312
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
# 1.0.0-alpha.42 (2026-05-28)
|
|
319
|
+
|
|
320
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
# 1.0.0-alpha.41 (2026-05-27)
|
|
327
|
+
|
|
328
|
+
### Bug Fixes
|
|
329
|
+
|
|
330
|
+
* **framework:** wire plugin ExtensionPoints into EventCollector runtime context ([2ce8dff](https://github.com/ReventlessDev/reventless-core/commit/2ce8dff426b576811a28c012934d77ecba8a33c0))
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
# 1.0.0-alpha.40 (2026-05-27)
|
|
334
|
+
|
|
335
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
# 1.0.0-alpha.39 (2026-05-27)
|
|
342
|
+
|
|
343
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
# 1.0.0-alpha.38 (2026-05-27)
|
|
350
|
+
|
|
351
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
# 1.0.0-alpha.37 (2026-05-26)
|
|
358
|
+
|
|
359
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
# 1.0.0-alpha.36 (2026-05-26)
|
|
366
|
+
|
|
367
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
# 1.0.0-alpha.35 (2026-05-25)
|
|
374
|
+
|
|
375
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
# 1.0.0-alpha.34 (2026-05-25)
|
|
382
|
+
|
|
383
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
# 1.0.0-alpha.33 (2026-05-25)
|
|
390
|
+
|
|
391
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
# 1.0.0-alpha.32 (2026-05-21)
|
|
398
|
+
|
|
399
|
+
### Features
|
|
400
|
+
|
|
401
|
+
* **gwt:** add Delegate_GWT + Flow_GWT cross-slice/cross-plugin test kinds ([19f89a6](https://github.com/ReventlessDev/reventless-core/commit/19f89a6baba3acddb683c81952692fb1a695681d))
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
# 1.0.0-alpha.31 (2026-05-21)
|
|
405
|
+
|
|
406
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
# 1.0.0-alpha.30 (2026-05-21)
|
|
413
|
+
|
|
414
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
# 1.0.0-alpha.29 (2026-05-20)
|
|
421
|
+
|
|
422
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
# 1.0.0-alpha.28 (2026-05-20)
|
|
429
|
+
|
|
430
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
# 1.0.0-alpha.27 (2026-05-20)
|
|
437
|
+
|
|
438
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
# 1.0.0-alpha.26 (2026-05-19)
|
|
445
|
+
|
|
446
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
# 1.0.0-alpha.25 (2026-05-19)
|
|
453
|
+
|
|
454
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
# 1.0.0-alpha.24 (2026-05-19)
|
|
461
|
+
|
|
462
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
# 1.0.0-alpha.23 (2026-05-19)
|
|
469
|
+
|
|
470
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
# 1.0.0-alpha.22 (2026-05-18)
|
|
477
|
+
|
|
478
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
# 1.0.0-alpha.21 (2026-05-18)
|
|
485
|
+
|
|
486
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
# 1.0.0-alpha.20 (2026-05-17)
|
|
493
|
+
|
|
494
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
# 1.0.0-alpha.19 (2026-05-17)
|
|
501
|
+
|
|
502
|
+
### Bug Fixes
|
|
503
|
+
|
|
504
|
+
* **deps:** pin sury-ppx to 11.0.0-alpha.2 to prevent prerelease drift ([c9d05fe](https://github.com/ReventlessDev/reventless-core/commit/c9d05fe5118a9c0442ca3e071f2606b3a139fc81))
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
# 1.0.0-alpha.18 (2026-05-17)
|
|
508
|
+
|
|
509
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
# 1.0.0-alpha.17 (2026-05-17)
|
|
516
|
+
|
|
517
|
+
### Bug Fixes
|
|
518
|
+
|
|
519
|
+
* **deps:** pin sury to 11.0.0-alpha.4 to unblock Lambda Layer deploys ([643d925](https://github.com/ReventlessDev/reventless-core/commit/643d92527fa9d092da9bef8547591e39a4c609dd))
|
|
520
|
+
|
|
521
|
+
|
|
522
|
+
# 1.0.0-alpha.16 (2026-05-17)
|
|
523
|
+
|
|
524
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
|
|
529
|
+
|
|
530
|
+
# 1.0.0-alpha.15 (2026-05-17)
|
|
531
|
+
|
|
532
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
533
|
+
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
# 1.0.0-alpha.14 (2026-05-16)
|
|
539
|
+
|
|
540
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
541
|
+
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
|
|
546
|
+
# 1.0.0-alpha.13 (2026-05-16)
|
|
547
|
+
|
|
548
|
+
### Features
|
|
549
|
+
|
|
550
|
+
* **ppx:** add @[@reventless](https://github.com/reventless).visibility to hide components from AutoUI ([bd302cf](https://github.com/ReventlessDev/reventless-core/commit/bd302cfc5bd5d4dfe50c8e1bf8596ab67e36c74e))
|
|
551
|
+
|
|
552
|
+
|
|
553
|
+
# 1.0.0-alpha.12 (2026-05-16)
|
|
554
|
+
|
|
555
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
# 1.0.0-alpha.11 (2026-05-16)
|
|
562
|
+
|
|
563
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
|
|
569
|
+
# 1.0.0-alpha.10 (2026-05-14)
|
|
570
|
+
|
|
571
|
+
### Features
|
|
572
|
+
|
|
573
|
+
* **ppx:** inline-spec walk + Spec module types require authorization ([7db9ec0](https://github.com/ReventlessDev/reventless-core/commit/7db9ec0f186578ce0088973dba22da9257be6a61))
|
|
574
|
+
|
|
575
|
+
|
|
576
|
+
# 1.0.0-alpha.9 (2026-05-13)
|
|
577
|
+
|
|
578
|
+
* feat(spec)!: standardise event/command envelope (StoredEvent, optional meta, position, persisted DCB meta, causation) ([7ef3176](https://github.com/ReventlessDev/reventless-core/commit/7ef3176c6330810c817f43a52b881b5a0efee30e))
|
|
579
|
+
|
|
580
|
+
### BREAKING CHANGES
|
|
581
|
+
|
|
582
|
+
* meta.ip / meta.user go from required `string` to optional
|
|
583
|
+
record fields (`?: string`). Code that did `meta.user == "unknown"` to
|
|
584
|
+
detect system messages must check for field absence. Storage tables built
|
|
585
|
+
before this change are not migrated (greenfield — recreate the EventLog /
|
|
586
|
+
DcbEventLog tables; DynamoDB range key renamed from `seq` to `position`,
|
|
587
|
+
SQLite dcb_event gains meta and recorded_at columns).
|
|
588
|
+
|
|
589
|
+
|
|
590
|
+
|
|
591
|
+
# 1.0.0-alpha.8 (2026-05-10)
|
|
592
|
+
|
|
593
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
594
|
+
|
|
595
|
+
|
|
596
|
+
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
# 1.0.0-alpha.7 (2026-05-05)
|
|
600
|
+
|
|
601
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
602
|
+
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
# 1.0.0-alpha.6 (2026-05-04)
|
|
608
|
+
|
|
609
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
|
|
615
|
+
# 1.0.0-alpha.5 (2026-05-03)
|
|
616
|
+
|
|
617
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
618
|
+
|
|
619
|
+
|
|
620
|
+
|
|
621
|
+
|
|
622
|
+
|
|
623
|
+
# 1.0.0-alpha.4 (2026-05-03)
|
|
624
|
+
|
|
625
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
626
|
+
|
|
627
|
+
|
|
628
|
+
|
|
629
|
+
|
|
630
|
+
|
|
631
|
+
# 1.0.0-alpha.3 (2026-05-03)
|
|
632
|
+
|
|
633
|
+
### Bug Fixes
|
|
634
|
+
|
|
635
|
+
* three follow-ups from the GWT-coverage migration ([3be14a4](https://github.com/ReventlessDev/reventless-core/commit/3be14a4cab276a989ae4a93aa650a6086ec118cf))
|
|
636
|
+
|
|
637
|
+
|
|
638
|
+
# 1.0.0-alpha.2 (2026-04-28)
|
|
639
|
+
|
|
640
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
641
|
+
|
|
642
|
+
|
|
643
|
+
|
|
644
|
+
|
|
645
|
+
|
|
646
|
+
# 1.0.0-alpha.1 (2026-04-27)
|
|
647
|
+
|
|
648
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
649
|
+
|
|
650
|
+
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
|
|
654
|
+
# 1.0.0-alpha.0 (2026-04-26)
|
|
655
|
+
|
|
656
|
+
### Bug Fixes
|
|
657
|
+
|
|
658
|
+
* **gwt:** respect [@sub](https://github.com/sub)Id in StateViewSlice_GWT save function ([7173648](https://github.com/ReventlessDev/reventless-core/commit/71736483f84d6c66b24f3a5361aedad12e3135be))
|
|
659
|
+
* feat(gwt)!: rename slice GWT DSLs to short kind names ([4b2e457](https://github.com/ReventlessDev/reventless-core/commit/4b2e45743a777aa85898763db0c5042443b31c97))
|
|
660
|
+
### Features
|
|
661
|
+
|
|
662
|
+
* **spec:** split slice spec module types — Phase 1 of Spec-First series ([d3b1493](https://github.com/ReventlessDev/reventless-core/commit/d3b149300d09dbac45a5e316343cd79fe2a769e6))
|
|
663
|
+
|
|
664
|
+
### BREAKING CHANGES
|
|
665
|
+
|
|
666
|
+
* AutomationSlice_GWT, InboundTranslationSlice_GWT, and
|
|
667
|
+
OutboundTranslationSlice_GWT are renamed without deprecation shims.
|
|
668
|
+
Update explicit include ReventlessGwt.<Old>.Make(...) lines to the new
|
|
669
|
+
short names.
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
|
|
673
|
+
# 0.1.0-alpha.2 (2026-04-24)
|
|
674
|
+
|
|
675
|
+
### Features
|
|
676
|
+
|
|
677
|
+
* **ppx:** auto-open companion `<Stem>_Fixtures` in @[@reventless](https://github.com/reventless).gwt ([c429e43](https://github.com/ReventlessDev/reventless-core/commit/c429e43383360968cb70cd2c73316445d33c8bcc))
|
|
678
|
+
* **ppx:** infer external Spec from path in @[@reventless](https://github.com/reventless).gwt ([54735d1](https://github.com/ReventlessDev/reventless-core/commit/54735d1727932f3dff249a551d40b9861f3996ed))
|
|
679
|
+
|
|
680
|
+
|
|
681
|
+
# 0.1.0-alpha.1 (2026-04-24)
|
|
682
|
+
|
|
683
|
+
### Bug Fixes
|
|
684
|
+
|
|
685
|
+
* **gwt:** clear stale failed state in VS Code continuous run ([155f0ac](https://github.com/ReventlessDev/reventless-core/commit/155f0ac14dc60fad39f10d3dd700d7ff5a7ade40))
|
|
686
|
+
### Features
|
|
687
|
+
|
|
688
|
+
* **gwt:** add @[@reventless](https://github.com/reventless).gwt PPX annotation (Stage 9) ([f6c3a65](https://github.com/ReventlessDev/reventless-core/commit/f6c3a65e0906b4fa09688c3c9907245701dca3da))
|
|
689
|
+
* **gwt:** add 5 DCB slice DSLs and thread slice name into hints (Stage 3) ([62b59fd](https://github.com/ReventlessDev/reventless-core/commit/62b59fdaa745d7799209ec3c24c50a8d443670b5))
|
|
690
|
+
* **gwt:** add CLI runner with 5 output formats (Stage 7) ([e90a01a](https://github.com/ReventlessDev/reventless-core/commit/e90a01a46deeb955cedb343001a4a544ca8ff3b5))
|
|
691
|
+
* **gwt:** add Outcome algebra and JestBind adapter (Stage 2) ([4a2d783](https://github.com/ReventlessDev/reventless-core/commit/4a2d783bee3812743c0a3583869b69b27207125c))
|
|
692
|
+
* **gwt:** add Query_GWT for ReadModel + StateViewSlice queries (Stage 6) ([0f239f4](https://github.com/ReventlessDev/reventless-core/commit/0f239f4cad80f5a3f1f47135fa4599898d9214b8))
|
|
693
|
+
* **gwt:** add reventless-vscode extension (Stage 8) ([731008c](https://github.com/ReventlessDev/reventless-core/commit/731008c961f670aaa699fb53d74d6d5a41578942))
|
|
694
|
+
* **gwt:** add Stage 4 AppendConditionMismatch + Stage 5 Mapping_GWT ([24fa835](https://github.com/ReventlessDev/reventless-core/commit/24fa8353657329e73a04cfed8e0a390806ff3395))
|
|
695
|
+
* **gwt:** extract GWT test DSLs into @reventlessdev/reventless-gwt package ([dd64b4e](https://github.com/ReventlessDev/reventless-core/commit/dd64b4e1fd0bb203821d055b6743a52aec1836fb))
|
|
696
|
+
* **gwt:** resolve vscode test clicks to .res and add continuous run ([7409e76](https://github.com/ReventlessDev/reventless-core/commit/7409e7602da0e5faaf1232c356ab05c146bc24a6))
|
|
697
|
+
* **gwt:** shorten file labels in CLI human output and VS Code Testing panel ([b99e093](https://github.com/ReventlessDev/reventless-core/commit/b99e093e6179b67ef073ea8c3087b6de70cda246))
|
|
698
|
+
* **gwt:** silence CLI logs by default; add vscode testing guide ([9f124da](https://github.com/ReventlessDev/reventless-core/commit/9f124dac32a408ca88011d9b15e4de6bde624c74))
|