@reventlessdev/reventless-local 3.0.0-alpha.130 → 3.0.0-alpha.131
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,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.131 (2026-07-08)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **reventless-core:** composite DCB slices can read back their own events ([4604a91](https://github.com/ReventlessDev/reventless-core/commit/4604a9159fb8bf59b2191ad69fee6613c7f75cd9))
|
|
11
|
+
|
|
12
|
+
|
|
6
13
|
# 3.0.0-alpha.130 (2026-07-08)
|
|
7
14
|
|
|
8
15
|
### Features
|
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.131",
|
|
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": {
|
|
@@ -32,15 +32,15 @@
|
|
|
32
32
|
"sury": "11.0.0-alpha.4",
|
|
33
33
|
"ws": "^8.18.0",
|
|
34
34
|
"@reventlessdev/rescript-graphql-yoga": "1.0.0-alpha.18",
|
|
35
|
-
"@reventlessdev/rescript-mcp-sdk": "1.0.0-alpha.17",
|
|
36
35
|
"@reventlessdev/rescript-jest": "1.0.0-alpha.6",
|
|
37
|
-
"@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.14",
|
|
38
36
|
"@reventlessdev/rescript-effect": "0.1.0-alpha.25",
|
|
39
|
-
"@reventlessdev/
|
|
40
|
-
"@reventlessdev/
|
|
37
|
+
"@reventlessdev/rescript-mcp-sdk": "1.0.0-alpha.17",
|
|
38
|
+
"@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.14",
|
|
39
|
+
"@reventlessdev/reventless-core": "3.0.0-alpha.147",
|
|
40
|
+
"@reventlessdev/reventless-gwt": "1.0.0-alpha.92",
|
|
41
41
|
"@reventlessdev/reventless-infra": "3.0.0-alpha.91",
|
|
42
|
-
"@reventlessdev/reventless-
|
|
43
|
-
"@reventlessdev/reventless-
|
|
42
|
+
"@reventlessdev/reventless-spec": "3.0.0-alpha.69",
|
|
43
|
+
"@reventlessdev/reventless-postgres": "3.0.0-alpha.11"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"rescript": "^12.3.0",
|
|
@@ -54,7 +54,7 @@ let bridgeSourceA = (
|
|
|
54
54
|
let ps = getPubSub()
|
|
55
55
|
let yogaTopic = sourceATopic(displayName)
|
|
56
56
|
// Push the raw event JSON directly — it already contains the event data.
|
|
57
|
-
// In-memory events don't carry a separate position
|
|
57
|
+
// In-memory events don't carry a separate position envelope.
|
|
58
58
|
subscribeToEvents(busTopicName, async (_service, _meta, json) => {
|
|
59
59
|
ps->YG.pubSubPublish(yogaTopic, json)
|
|
60
60
|
})
|