@reventlessdev/reventless-local 3.0.0-alpha.177 → 3.0.0-alpha.178
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 +8 -8
- package/src/Platform.res +8 -1
- package/src/Platform.res.mjs +4 -2
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
|
+
# 3.0.0-alpha.178 (2026-07-28)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **platform:** provision object stores from the fields that declare them ([b5e2a1e](https://github.com/ReventlessDev/reventless-core/commit/b5e2a1ec88099941c113e4963f9c4b346b96b0d6))
|
|
11
|
+
|
|
12
|
+
|
|
6
13
|
# 3.0.0-alpha.177 (2026-07-28)
|
|
7
14
|
|
|
8
15
|
**Note:** Version bump only for package @reventlessdev/reventless-local
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reventlessdev/reventless-local",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.178",
|
|
4
4
|
"description": "Local platform for Reventless (in-memory or SQLite backend, for development and testing without AWS)",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"jest": {
|
|
@@ -34,14 +34,14 @@
|
|
|
34
34
|
"@reventlessdev/rescript-graphql-yoga": "1.0.0-alpha.25",
|
|
35
35
|
"@reventlessdev/rescript-jest": "1.0.0-alpha.9",
|
|
36
36
|
"@reventlessdev/rescript-effect": "0.1.0-alpha.31",
|
|
37
|
-
"@reventlessdev/rescript-mcp-sdk": "1.0.0-alpha.20",
|
|
38
37
|
"@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.17",
|
|
39
|
-
"@reventlessdev/
|
|
40
|
-
"@reventlessdev/reventless-
|
|
41
|
-
"@reventlessdev/reventless-
|
|
42
|
-
"@reventlessdev/reventless-
|
|
43
|
-
"@reventlessdev/reventless-postgres": "3.0.0-alpha.
|
|
44
|
-
"@reventlessdev/reventless-
|
|
38
|
+
"@reventlessdev/rescript-mcp-sdk": "1.0.0-alpha.20",
|
|
39
|
+
"@reventlessdev/reventless-core": "3.0.0-alpha.190",
|
|
40
|
+
"@reventlessdev/reventless-graphql-server": "1.0.0-alpha.38",
|
|
41
|
+
"@reventlessdev/reventless-gwt": "1.0.0-alpha.137",
|
|
42
|
+
"@reventlessdev/reventless-postgres": "3.0.0-alpha.54",
|
|
43
|
+
"@reventlessdev/reventless-infra": "3.0.0-alpha.108",
|
|
44
|
+
"@reventlessdev/reventless-spec": "3.0.0-alpha.83"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"rescript": "12.3.0",
|
package/src/Platform.res
CHANGED
|
@@ -1937,7 +1937,14 @@ module MakeWithConfig = (
|
|
|
1937
1937
|
geocoderPlaceIndex?: ReventlessInfra.Platform.geocoderIndex,
|
|
1938
1938
|
uploadBucket?: ReventlessInfra.Platform.objectStore,
|
|
1939
1939
|
}
|
|
1940
|
-
let deployPlatform = (
|
|
1940
|
+
let deployPlatform = (
|
|
1941
|
+
~version,
|
|
1942
|
+
~hostUiBundle as _: option<hostUiBundleConfig>=?,
|
|
1943
|
+
// Declared stores are provisioned infrastructure; the in-memory platform
|
|
1944
|
+
// provisions none and serves uploads from the dev server, so the list is
|
|
1945
|
+
// carried to satisfy the shared Platform.T signature and ignored.
|
|
1946
|
+
~capabilities as _: array<ReventlessInfra.Platform.capability>=[],
|
|
1947
|
+
) => {
|
|
1941
1948
|
log.info(~comp="Platform", `deployPlatform v${version}`)
|
|
1942
1949
|
let scheduler = makeScheduler()
|
|
1943
1950
|
hooks.scheduler := Some(scheduler)
|
package/src/Platform.res.mjs
CHANGED
|
@@ -1552,7 +1552,8 @@ function MakeWithConfig(Config) {
|
|
|
1552
1552
|
return DomainMCP_Server$ReventlessLocal.start(undefined, undefined);
|
|
1553
1553
|
}
|
|
1554
1554
|
};
|
|
1555
|
-
let deployPlatform = (version, param) => {
|
|
1555
|
+
let deployPlatform = (version, param, $staropt$star) => {
|
|
1556
|
+
$staropt$star !== undefined;
|
|
1556
1557
|
log.info("Platform", undefined, `deployPlatform v` + version);
|
|
1557
1558
|
let scheduler = makeScheduler();
|
|
1558
1559
|
hooks_scheduler.contents = scheduler;
|
|
@@ -3214,7 +3215,8 @@ function Make($star) {
|
|
|
3214
3215
|
PlatformGraphQL_Server$ReventlessLocal.registerTypes(GraphQL_Stitcher$ReventlessCore.relayBaseTypes);
|
|
3215
3216
|
currentDeployTarget.contents = "Domain";
|
|
3216
3217
|
};
|
|
3217
|
-
let deployPlatform = (version, param) => {
|
|
3218
|
+
let deployPlatform = (version, param, $staropt$star) => {
|
|
3219
|
+
$staropt$star !== undefined;
|
|
3218
3220
|
log.info("Platform", undefined, `deployPlatform v` + version);
|
|
3219
3221
|
let scheduler = makeScheduler();
|
|
3220
3222
|
hooks_scheduler.contents = scheduler;
|