@modernedi/configuration-runner 0.3.0 → 0.3.2
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/README.md +6 -6
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -9,12 +9,12 @@ The runner works in any CI system that can run Node.js 20 or later. Vendor-speci
|
|
|
9
9
|
Use an exact package version in protected automation. The examples below use the aggregate scenario-capable release:
|
|
10
10
|
|
|
11
11
|
```sh
|
|
12
|
-
npx --yes @modernedi/configuration-runner@0.3.
|
|
12
|
+
npx --yes @modernedi/configuration-runner@0.3.2 plan \
|
|
13
13
|
--bundle ./modernedi \
|
|
14
14
|
--plan-out ./artifacts/plan.json
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
The package depends on the exact `@modernedi/sdk@0.4.
|
|
17
|
+
The package depends on the exact `@modernedi/sdk@0.4.2` API contract, including scenario bindings for Production or Test traffic.
|
|
18
18
|
|
|
19
19
|
Set these environment variables through your CI secret store:
|
|
20
20
|
|
|
@@ -42,7 +42,7 @@ ModernEDI remains authoritative for document shape, mapping compilation, semanti
|
|
|
42
42
|
Run with a read-capable key on a proposed bundle:
|
|
43
43
|
|
|
44
44
|
```sh
|
|
45
|
-
npx --yes @modernedi/configuration-runner@0.3.
|
|
45
|
+
npx --yes @modernedi/configuration-runner@0.3.2 plan \
|
|
46
46
|
--bundle ./modernedi \
|
|
47
47
|
--plan-out ./artifacts/plan.json
|
|
48
48
|
```
|
|
@@ -58,7 +58,7 @@ Mappings can carry optional `spec.regressionCases`; author them in the browser o
|
|
|
58
58
|
After reviewing a plan, execute its saved cases on ModernEDI's server:
|
|
59
59
|
|
|
60
60
|
```sh
|
|
61
|
-
modernedi-
|
|
61
|
+
npx --yes @modernedi/configuration-runner@0.3.2 verify \
|
|
62
62
|
--bundle ./modernedi \
|
|
63
63
|
--reviewed-plan ./artifacts/plan.json \
|
|
64
64
|
--request-id 43c4a774-911c-47b6-a9f5-5bf2cde68157 \
|
|
@@ -82,7 +82,7 @@ Download the reviewed `plan.json`, check out the exact protected revision, and s
|
|
|
82
82
|
```sh
|
|
83
83
|
export MODERNEDI_IDEMPOTENCY_KEY="production:configuration:build-1842"
|
|
84
84
|
|
|
85
|
-
npx --yes @modernedi/configuration-runner@0.3.
|
|
85
|
+
npx --yes @modernedi/configuration-runner@0.3.2 apply-reviewed \
|
|
86
86
|
--bundle ./modernedi \
|
|
87
87
|
--reviewed-plan ./artifacts/plan.json \
|
|
88
88
|
--result-out ./artifacts/result.json \
|
|
@@ -104,7 +104,7 @@ As soon as the server accepts the apply, `result.json` is written atomically wit
|
|
|
104
104
|
Use the stored result artifact and a read-capable key:
|
|
105
105
|
|
|
106
106
|
```sh
|
|
107
|
-
npx --yes @modernedi/configuration-runner@0.3.
|
|
107
|
+
npx --yes @modernedi/configuration-runner@0.3.2 wait \
|
|
108
108
|
--result ./artifacts/result.json \
|
|
109
109
|
--timeout-seconds 900
|
|
110
110
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@modernedi/configuration-runner",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Vendor-neutral CI runner for reviewed ModernEDI configuration plans",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"prepublishOnly": "npm run verify"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@modernedi/sdk": "0.4.
|
|
50
|
+
"@modernedi/sdk": "0.4.2"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@types/node": "20.19.43",
|