@reventlessdev/reventless-gwt 1.0.0-alpha.193 → 1.0.0-alpha.195
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
|
@@ -3,6 +3,29 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# 1.0.0-alpha.195 (2026-08-23)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# 1.0.0-alpha.194 (2026-08-22)
|
|
15
|
+
|
|
16
|
+
* feat(core)!: a slice that has given up says so ([f5559ab](https://github.com/ReventlessDev/reventless-core/commit/f5559abede3a9cf2c9a48aadc69a666c46cc75bf))
|
|
17
|
+
|
|
18
|
+
### BREAKING CHANGES
|
|
19
|
+
|
|
20
|
+
* `onExhausted` is required on the Translation and Automation
|
|
21
|
+
module types. ReScript has no optional module-type fields, so the alternative
|
|
22
|
+
was a PPX-injected default — and defaulting this one to silence is the bug.
|
|
23
|
+
A slice now states what abandonment means for its domain, `None` included.
|
|
24
|
+
GeocodeCustomerAddress answers with MarkAddressUnresolvable; the others say
|
|
25
|
+
nothing, on purpose.
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
6
29
|
# 1.0.0-alpha.193 (2026-08-21)
|
|
7
30
|
|
|
8
31
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reventlessdev/reventless-gwt",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.195",
|
|
4
4
|
"description": "Given-When-Then DSLs and test harness for Reventless slice testing",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"jest": {
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"sury": "11.0.0-rc.2",
|
|
17
17
|
"@reventlessdev/rescript-effect": "0.1.0-alpha.32",
|
|
18
|
-
"@reventlessdev/rescript-jest": "1.0.0-alpha.10",
|
|
19
18
|
"@reventlessdev/rescript-node": "2.0.0-alpha.8",
|
|
20
|
-
"@reventlessdev/
|
|
21
|
-
"@reventlessdev/reventless-core": "3.0.0-alpha.
|
|
22
|
-
"@reventlessdev/reventless-
|
|
19
|
+
"@reventlessdev/rescript-jest": "1.0.0-alpha.10",
|
|
20
|
+
"@reventlessdev/reventless-core": "3.0.0-alpha.248",
|
|
21
|
+
"@reventlessdev/reventless-infra": "3.0.0-alpha.150",
|
|
22
|
+
"@reventlessdev/reventless-spec": "3.0.0-alpha.122"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"rescript": "12.3.0",
|
|
@@ -60,6 +60,10 @@ function process(_id, item) {
|
|
|
60
60
|
];
|
|
61
61
|
}
|
|
62
62
|
|
|
63
|
+
function onExhausted(_id, _item) {
|
|
64
|
+
|
|
65
|
+
}
|
|
66
|
+
|
|
63
67
|
function commandAuthorization(param) {
|
|
64
68
|
return "AllowAuthenticated";
|
|
65
69
|
}
|
|
@@ -72,6 +76,7 @@ let ShipOrderSlice = {
|
|
|
72
76
|
collect: collect,
|
|
73
77
|
resolve: resolve,
|
|
74
78
|
process: process,
|
|
79
|
+
onExhausted: onExhausted,
|
|
75
80
|
commandAuthorization: commandAuthorization
|
|
76
81
|
};
|
|
77
82
|
|
package/tests/FlowGwtTest.res
CHANGED
|
@@ -123,6 +123,10 @@ function process(id, _todo) {
|
|
|
123
123
|
];
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
+
function onExhausted(_id, _todo) {
|
|
127
|
+
|
|
128
|
+
}
|
|
129
|
+
|
|
126
130
|
function commandAuthorization$1(param) {
|
|
127
131
|
return "AllowAuthenticated";
|
|
128
132
|
}
|
|
@@ -135,6 +139,7 @@ let AutoShipSlice = {
|
|
|
135
139
|
collect: collect,
|
|
136
140
|
resolve: resolve,
|
|
137
141
|
process: process,
|
|
142
|
+
onExhausted: onExhausted,
|
|
138
143
|
commandAuthorization: commandAuthorization$1
|
|
139
144
|
};
|
|
140
145
|
|