@reventlessdev/reventless-infra 3.0.0-alpha.92 → 3.0.0-alpha.94

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,20 @@
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.94 (2026-07-10)
7
+
8
+ ### Features
9
+
10
+ * **plugin-structure:** capture per-component chapter grouping for the deployed graph ([f9c88a9](https://github.com/ReventlessDev/reventless-core/commit/f9c88a9a48d8c032ffe23f9e5277caf12c29e85c))
11
+
12
+
13
+ # 3.0.0-alpha.93 (2026-07-10)
14
+
15
+ ### Bug Fixes
16
+
17
+ * **plugin-lifecycle:** backfill plugin kind onto existing rows via deploy-time RedetectPlugin ([502dbd6](https://github.com/ReventlessDev/reventless-core/commit/502dbd65d1fdd5b8beae8a7b96df06dcfa32fe3e))
18
+
19
+
6
20
  # 3.0.0-alpha.92 (2026-07-10)
7
21
 
8
22
  **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.94",
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.72"
14
14
  },
15
15
  "devDependencies": {
16
16
  "rescript": "^12.3.0"
@@ -88,5 +88,6 @@ module type T = {
88
88
  ~inboundTranslationSlices: array<module(InboundTranslationSlice.T)>=?,
89
89
  ~extensions: array<module(Extension.Blueprint)>=?,
90
90
  ~extensionPoints: array<module(ExtensionPointMapping.Mapping)>=?,
91
+ ~componentChapters: dict<string>=?,
91
92
  ) => Reventless.Plugin.pluginStructure
92
93
  }
@@ -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