@reventlessdev/reventless-local 3.0.0-alpha.162 → 3.0.0-alpha.163
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,22 @@
|
|
|
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.163 (2026-07-22)
|
|
7
|
+
|
|
8
|
+
* refactor!: retire the stale "core" vocabulary for platform things ([34e7480](https://github.com/ReventlessDev/reventless-core/commit/34e7480992bd58906a250b0a1ce6ff2c5ba45260))
|
|
9
|
+
|
|
10
|
+
### BREAKING CHANGES
|
|
11
|
+
|
|
12
|
+
* the built-in extension point is renamed Core.Plugin ->
|
|
13
|
+
Platform.Plugin. This replaces the CorePluginExtPointCmdTopic SQS queue
|
|
14
|
+
with PlatformPluginExtPointCmdTopic (a replacement, not an update) and
|
|
15
|
+
breaks every already-deployed plugin's connection until redeployed.
|
|
16
|
+
Wipe the alpha stack and redeploy fresh rather than migrating.
|
|
17
|
+
|
|
18
|
+
Build clean; 1349 tests green (interop 50, core 518, local 501, aws 280).
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# 3.0.0-alpha.162 (2026-07-22)
|
|
7
23
|
|
|
8
24
|
### Bug Fixes
|
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.163",
|
|
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": {
|
|
@@ -31,17 +31,17 @@
|
|
|
31
31
|
"graphql-yoga": "^5.21.0",
|
|
32
32
|
"sury": "11.0.0-alpha.4",
|
|
33
33
|
"ws": "^8.18.0",
|
|
34
|
-
"@reventlessdev/rescript-jest": "1.0.0-alpha.9",
|
|
35
34
|
"@reventlessdev/rescript-effect": "0.1.0-alpha.30",
|
|
36
|
-
"@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.17",
|
|
37
|
-
"@reventlessdev/rescript-mcp-sdk": "1.0.0-alpha.20",
|
|
38
|
-
"@reventlessdev/reventless-graphql-server": "1.0.0-alpha.22",
|
|
39
|
-
"@reventlessdev/reventless-core": "3.0.0-alpha.175",
|
|
40
35
|
"@reventlessdev/rescript-graphql-yoga": "1.0.0-alpha.24",
|
|
41
|
-
"@reventlessdev/
|
|
42
|
-
"@reventlessdev/
|
|
43
|
-
"@reventlessdev/
|
|
44
|
-
"@reventlessdev/reventless-
|
|
36
|
+
"@reventlessdev/rescript-mcp-sdk": "1.0.0-alpha.20",
|
|
37
|
+
"@reventlessdev/rescript-jest": "1.0.0-alpha.9",
|
|
38
|
+
"@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.17",
|
|
39
|
+
"@reventlessdev/reventless-graphql-server": "1.0.0-alpha.23",
|
|
40
|
+
"@reventlessdev/reventless-core": "3.0.0-alpha.176",
|
|
41
|
+
"@reventlessdev/reventless-gwt": "1.0.0-alpha.123",
|
|
42
|
+
"@reventlessdev/reventless-infra": "3.0.0-alpha.104",
|
|
43
|
+
"@reventlessdev/reventless-postgres": "3.0.0-alpha.40",
|
|
44
|
+
"@reventlessdev/reventless-spec": "3.0.0-alpha.80"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"rescript": "12.3.0",
|
|
@@ -7,7 +7,9 @@ let pluginDefinition: Reventless.Plugin.pluginDefinition = {
|
|
|
7
7
|
name: "name",
|
|
8
8
|
version: "1",
|
|
9
9
|
extensionPoints: [],
|
|
10
|
-
extensions: [
|
|
10
|
+
extensions: [
|
|
11
|
+
{name: "Platform.Plugin.Test", extensionPointName: "Platform.Plugin", dcbSources: []},
|
|
12
|
+
],
|
|
11
13
|
eventCollector: "eventCollector",
|
|
12
14
|
extensionProtocols: [],
|
|
13
15
|
apiSchemaFragment: None,
|
|
@@ -9,8 +9,8 @@ let pluginDefinition = {
|
|
|
9
9
|
version: "1",
|
|
10
10
|
extensionPoints: [],
|
|
11
11
|
extensions: [{
|
|
12
|
-
name: "
|
|
13
|
-
extensionPointName: "
|
|
12
|
+
name: "Platform.Plugin.Test",
|
|
13
|
+
extensionPointName: "Platform.Plugin",
|
|
14
14
|
dcbSources: []
|
|
15
15
|
}],
|
|
16
16
|
eventCollector: "eventCollector",
|