@reventlessdev/reventless-seed-aws 1.0.0-alpha.21 → 1.0.0-alpha.23
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 +15 -0
- package/lib/bs/.compiler.log +2 -2
- package/lib/bs/compiler-info.json +1 -1
- package/lib/bs/src/ReventlessSeedAws.cmi +0 -0
- package/lib/bs/src/ReventlessSeedAws.cmt +0 -0
- package/lib/bs/src/ReventlessSeedAws.res.mjs +1 -1
- package/lib/bs/src/ReventlessSeedAws_Quiesce.cmi +0 -0
- package/lib/bs/src/ReventlessSeedAws_Quiesce.cmt +0 -0
- package/lib/bs/src/ReventlessSeedAws_Reconcile.cmi +0 -0
- package/lib/bs/src/ReventlessSeedAws_Reconcile.cmt +0 -0
- package/lib/bs/src/ReventlessSeedAws_Reset.cmi +0 -0
- package/lib/bs/src/ReventlessSeedAws_Reset.cmt +0 -0
- package/lib/bs/src/ReventlessSeedAws_Reset.res.mjs +1 -1
- package/lib/bs/tests/EndpointResolutionTest.cmi +0 -0
- package/lib/bs/tests/EndpointResolutionTest.cmt +0 -0
- package/lib/bs/tests/ObjectStoreReconcileTest.cmi +0 -0
- package/lib/bs/tests/ObjectStoreReconcileTest.cmt +0 -0
- package/lib/bs/tests/ObjectStoreResetTest.cmi +0 -0
- package/lib/bs/tests/ObjectStoreResetTest.cmt +0 -0
- package/lib/bs/tests/QuiesceResetTest.cmi +0 -0
- package/lib/bs/tests/QuiesceResetTest.cmt +0 -0
- package/lib/ocaml/.compiler.log +2 -2
- package/lib/ocaml/EndpointResolutionTest.cmi +0 -0
- package/lib/ocaml/EndpointResolutionTest.cmt +0 -0
- package/lib/ocaml/ObjectStoreReconcileTest.cmi +0 -0
- package/lib/ocaml/ObjectStoreReconcileTest.cmt +0 -0
- package/lib/ocaml/ObjectStoreResetTest.cmi +0 -0
- package/lib/ocaml/ObjectStoreResetTest.cmt +0 -0
- package/lib/ocaml/QuiesceResetTest.cmi +0 -0
- package/lib/ocaml/QuiesceResetTest.cmt +0 -0
- package/lib/ocaml/ReventlessSeedAws.cmi +0 -0
- package/lib/ocaml/ReventlessSeedAws.cmt +0 -0
- package/lib/ocaml/ReventlessSeedAws_Quiesce.cmi +0 -0
- package/lib/ocaml/ReventlessSeedAws_Quiesce.cmt +0 -0
- package/lib/ocaml/ReventlessSeedAws_Reconcile.cmi +0 -0
- package/lib/ocaml/ReventlessSeedAws_Reconcile.cmt +0 -0
- package/lib/ocaml/ReventlessSeedAws_Reset.cmi +0 -0
- package/lib/ocaml/ReventlessSeedAws_Reset.cmt +0 -0
- package/package.json +4 -4
- package/src/ReventlessSeedAws.res.mjs +1 -1
- package/src/ReventlessSeedAws_Reset.res.mjs +1 -1
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
|
+
# 1.0.0-alpha.23 (2026-08-20)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **seed:** choose the login from the platform's users.yaml ([74e61de](https://github.com/ReventlessDev/reventless-core/commit/74e61de8fba3ee4cc62b368ff12010f162d49db7))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
# 1.0.0-alpha.22 (2026-08-18)
|
|
14
|
+
|
|
15
|
+
**Note:** Version bump only for package @reventlessdev/reventless-seed-aws
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
6
21
|
# 1.0.0-alpha.21 (2026-08-16)
|
|
7
22
|
|
|
8
23
|
**Note:** Version bump only for package @reventlessdev/reventless-seed-aws
|
package/lib/bs/.compiler.log
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#Start(
|
|
2
|
-
#Done(
|
|
1
|
+
#Start(1787252810534)
|
|
2
|
+
#Done(1787252810576)
|
|
@@ -4,5 +4,5 @@
|
|
|
4
4
|
"bsc_hash": "75e3a59c95cc953608fd3dd6ea6ed68141bba4414a20a52f114261b8a48385fa",
|
|
5
5
|
"rescript_config_hash": "c18a0067c363fd1290f6e7f6fe6212d2e16e201c1702fac667962047f88ed468",
|
|
6
6
|
"runtime_path": "/home/runner/work/reventless-core/reventless-core/node_modules/@rescript/runtime",
|
|
7
|
-
"generated_at": "
|
|
7
|
+
"generated_at": "1787252810582"
|
|
8
8
|
}
|
|
Binary file
|
|
Binary file
|
|
@@ -108,7 +108,7 @@ async function resolveStack(projectDir, backend, stack) {
|
|
|
108
108
|
return await Seed_Prompt$ReventlessSeed.select("Stack:", stacks.map(s => [
|
|
109
109
|
s,
|
|
110
110
|
s
|
|
111
|
-
]), undefined);
|
|
111
|
+
]), undefined, undefined);
|
|
112
112
|
}
|
|
113
113
|
|
|
114
114
|
async function fetchConfig(hostShellUrl) {
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -531,7 +531,7 @@ async function chooseScope(targets) {
|
|
|
531
531
|
targets
|
|
532
532
|
]);
|
|
533
533
|
}
|
|
534
|
-
return await Seed_Prompt$ReventlessSeed.select("Reset scope:", options, undefined);
|
|
534
|
+
return await Seed_Prompt$ReventlessSeed.select("Reset scope:", options, undefined, undefined);
|
|
535
535
|
}
|
|
536
536
|
}
|
|
537
537
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/lib/ocaml/.compiler.log
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#Start(
|
|
2
|
-
#Done(
|
|
1
|
+
#Start(1787252810534)
|
|
2
|
+
#Done(1787252810576)
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reventlessdev/reventless-seed-aws",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.23",
|
|
4
4
|
"description": "AWS connect + guarded reset for the Reventless seed harness — stack discovery, Cognito login, and a tag-scoped, allowlisted store wipe",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@reventlessdev/rescript-aws-sdk": "3.0.0-alpha.
|
|
8
|
-
"@reventlessdev/rescript-node": "2.0.0-alpha.
|
|
9
|
-
"@reventlessdev/reventless-seed": "1.0.0-alpha.
|
|
7
|
+
"@reventlessdev/rescript-aws-sdk": "3.0.0-alpha.12",
|
|
8
|
+
"@reventlessdev/rescript-node": "2.0.0-alpha.8",
|
|
9
|
+
"@reventlessdev/reventless-seed": "1.0.0-alpha.17"
|
|
10
10
|
},
|
|
11
11
|
"devDependencies": {
|
|
12
12
|
"rescript": "12.3.0",
|
|
@@ -108,7 +108,7 @@ async function resolveStack(projectDir, backend, stack) {
|
|
|
108
108
|
return await Seed_Prompt$ReventlessSeed.select("Stack:", stacks.map(s => [
|
|
109
109
|
s,
|
|
110
110
|
s
|
|
111
|
-
]), undefined);
|
|
111
|
+
]), undefined, undefined);
|
|
112
112
|
}
|
|
113
113
|
|
|
114
114
|
async function fetchConfig(hostShellUrl) {
|
|
@@ -531,7 +531,7 @@ async function chooseScope(targets) {
|
|
|
531
531
|
targets
|
|
532
532
|
]);
|
|
533
533
|
}
|
|
534
|
-
return await Seed_Prompt$ReventlessSeed.select("Reset scope:", options, undefined);
|
|
534
|
+
return await Seed_Prompt$ReventlessSeed.select("Reset scope:", options, undefined, undefined);
|
|
535
535
|
}
|
|
536
536
|
}
|
|
537
537
|
|