@reventlessdev/reventless-infra 3.0.0-alpha.90 → 3.0.0-alpha.91
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.91 (2026-07-08)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **reventless-core:** classify plugins by kind in the lifecycle read model ([64e3f22](https://github.com/ReventlessDev/reventless-core/commit/64e3f22b8114a771886b7c8ec023e95971413c0b))
|
|
11
|
+
|
|
12
|
+
|
|
6
13
|
# 3.0.0-alpha.90 (2026-07-07)
|
|
7
14
|
|
|
8
15
|
**Note:** Version bump only for package @reventlessdev/reventless-infra
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reventlessdev/reventless-infra",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.91",
|
|
4
4
|
"description": "Infrastructure types for Reventless framework",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"sury": "11.0.0-alpha.4",
|
|
8
8
|
"sury-ppx": "11.0.0-alpha.2",
|
|
9
9
|
"uuid": "^13.0.0",
|
|
10
|
-
"@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.14",
|
|
11
10
|
"@reventlessdev/rescript-effect": "0.1.0-alpha.25",
|
|
12
|
-
"@reventlessdev/
|
|
13
|
-
"@reventlessdev/rescript-uuid": "1.1.0-alpha.14"
|
|
11
|
+
"@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.14",
|
|
12
|
+
"@reventlessdev/rescript-uuid": "1.1.0-alpha.14",
|
|
13
|
+
"@reventlessdev/reventless-spec": "3.0.0-alpha.69"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"rescript": "^12.3.0"
|
|
@@ -89,6 +89,8 @@ let nameSchema = Plugin$Reventless.nameSchema;
|
|
|
89
89
|
|
|
90
90
|
let versionSchema = Plugin$Reventless.versionSchema;
|
|
91
91
|
|
|
92
|
+
let pluginKindSchema = Plugin$Reventless.pluginKindSchema;
|
|
93
|
+
|
|
92
94
|
let extensionPointDefinitionSchema = Plugin$Reventless.extensionPointDefinitionSchema;
|
|
93
95
|
|
|
94
96
|
let extensionDefinitionSchema = Plugin$Reventless.extensionDefinitionSchema;
|
|
@@ -161,6 +163,7 @@ export {
|
|
|
161
163
|
name,
|
|
162
164
|
nameSchema,
|
|
163
165
|
versionSchema,
|
|
166
|
+
pluginKindSchema,
|
|
164
167
|
extensionPointDefinitionSchema,
|
|
165
168
|
extensionDefinitionSchema,
|
|
166
169
|
dcbEventLogDefinitionSchema,
|