@reventlessdev/reventless-infra 3.0.0-alpha.92 → 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,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.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
+
6
13
  # 3.0.0-alpha.92 (2026-07-10)
7
14
 
8
15
  **Note:** Version bump only for package @reventlessdev/reventless-infra
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reventlessdev/reventless-infra",
3
- "version": "3.0.0-alpha.92",
3
+ "version": "3.0.0-alpha.93",
4
4
  "description": "Infrastructure types for Reventless framework",
5
5
  "license": "Apache-2.0",
6
6
  "dependencies": {
@@ -9,8 +9,8 @@
9
9
  "uuid": "^13.0.0",
10
10
  "@reventlessdev/rescript-effect": "0.1.0-alpha.25",
11
11
  "@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.14",
12
- "@reventlessdev/reventless-spec": "3.0.0-alpha.70",
13
- "@reventlessdev/rescript-uuid": "1.1.0-alpha.14"
12
+ "@reventlessdev/rescript-uuid": "1.1.0-alpha.14",
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 =
@@ -22,6 +22,10 @@ let commandSchema = S.union([
22
22
  S.schema(s => ({
23
23
  TAG: "ForwardCommand",
24
24
  _0: s.m(forwardCommandSchema)
25
+ })),
26
+ S.schema(s => ({
27
+ TAG: "RedetectPlugin",
28
+ _0: s.m(S.int)
25
29
  }))
26
30
  ]);
27
31