@reventlessdev/reventless-infra 3.0.0-alpha.91 → 3.0.0-alpha.93
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,21 @@
|
|
|
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.93 (2026-07-10)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **plugin-lifecycle:** backfill plugin kind onto existing rows via deploy-time RedetectPlugin ([502dbd6](https://github.com/ReventlessDev/reventless-core/commit/502dbd65d1fdd5b8beae8a7b96df06dcfa32fe3e))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
# 3.0.0-alpha.92 (2026-07-10)
|
|
14
|
+
|
|
15
|
+
**Note:** Version bump only for package @reventlessdev/reventless-infra
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
6
21
|
# 3.0.0-alpha.91 (2026-07-08)
|
|
7
22
|
|
|
8
23
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reventlessdev/reventless-infra",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.93",
|
|
4
4
|
"description": "Infrastructure types for Reventless framework",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"dependencies": {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"@reventlessdev/rescript-effect": "0.1.0-alpha.25",
|
|
11
11
|
"@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.14",
|
|
12
12
|
"@reventlessdev/rescript-uuid": "1.1.0-alpha.14",
|
|
13
|
-
"@reventlessdev/reventless-spec": "3.0.0-alpha.
|
|
13
|
+
"@reventlessdev/reventless-spec": "3.0.0-alpha.71"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"rescript": "^12.3.0"
|
|
@@ -18,6 +18,12 @@ type command =
|
|
|
18
18
|
| ConnectPlugin(pluginDefinition)
|
|
19
19
|
| DisconnectPlugin
|
|
20
20
|
| ForwardCommand(forwardCommand)
|
|
21
|
+
// Deploy-time re-detect: fired once by `deployPlugin` on every (re)deploy. Unlike
|
|
22
|
+
// a keep-alive `Heartbeat`, this forces the connect handshake to run again for an
|
|
23
|
+
// already-connected version so its current definition (e.g. a newly added `kind`,
|
|
24
|
+
// updated uiFragments/protocols) is re-serialized onto the lifecycle row. Carries
|
|
25
|
+
// the timeout so it also re-arms the disconnect schedule like a heartbeat.
|
|
26
|
+
| RedetectPlugin(timeout)
|
|
21
27
|
|
|
22
28
|
@schema
|
|
23
29
|
type event =
|