@reventlessdev/reventless-gwt 1.0.0-alpha.102 → 1.0.0-alpha.103
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 +7 -0
- package/package.json +4 -4
- package/src/StubRuntime.res +0 -1
- package/src/StubRuntime.res.mjs +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,13 @@
|
|
|
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.103 (2026-07-12)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **admin:** retire the Plugin-aggregate UI-fragment path in favour of the registry slices ([1dbc708](https://github.com/ReventlessDev/reventless-core/commit/1dbc708e7439b34ff970cc3d963d7835a8c6fd48))
|
|
11
|
+
|
|
12
|
+
|
|
6
13
|
# 1.0.0-alpha.102 (2026-07-11)
|
|
7
14
|
|
|
8
15
|
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
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.103",
|
|
4
4
|
"description": "Given-When-Then DSLs and CLI runner for Reventless slice testing",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"bin": {
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"sury": "11.0.0-alpha.4",
|
|
23
23
|
"@reventlessdev/rescript-effect": "0.1.0-alpha.27",
|
|
24
24
|
"@reventlessdev/rescript-jest": "1.0.0-alpha.7",
|
|
25
|
-
"@reventlessdev/reventless-core": "3.0.0-alpha.
|
|
26
|
-
"@reventlessdev/reventless-infra": "3.0.0-alpha.97",
|
|
25
|
+
"@reventlessdev/reventless-core": "3.0.0-alpha.157",
|
|
27
26
|
"@reventlessdev/reventless-domain-protocol": "1.0.0-alpha.20",
|
|
28
|
-
"@reventlessdev/reventless-
|
|
27
|
+
"@reventlessdev/reventless-infra": "3.0.0-alpha.98",
|
|
28
|
+
"@reventlessdev/reventless-spec": "3.0.0-alpha.76"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"rescript": "^12.3.0",
|
package/src/StubRuntime.res
CHANGED