@planu/cli 5.0.0 → 5.1.1
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 +49 -1
- package/dist/cli/commands/spec.js +10 -1
- package/dist/core/spec-validator.js +32 -18
- package/dist/engine/evidence-gates/artifact-reader.d.ts +2 -0
- package/dist/engine/evidence-gates/artifact-reader.js +59 -2
- package/dist/engine/evidence-gates/evidence-autofill.d.ts +10 -0
- package/dist/engine/evidence-gates/evidence-autofill.js +148 -0
- package/dist/engine/evidence-gates/evidence-skeletons.d.ts +19 -0
- package/dist/engine/evidence-gates/evidence-skeletons.js +69 -0
- package/dist/engine/execution/operation-journal.js +10 -4
- package/dist/engine/minimality/policy-loader.js +247 -6
- package/dist/engine/planu-core.darwin-arm64.node.manifest.json +7 -7
- package/dist/engine/planu-core.darwin-arm64.node.sbom.json +14 -14
- package/dist/engine/planu-core.darwin-x64.node.manifest.json +7 -7
- package/dist/engine/planu-core.darwin-x64.node.sbom.json +14 -14
- package/dist/engine/planu-core.linux-arm64-gnu.node.manifest.json +7 -7
- package/dist/engine/planu-core.linux-arm64-gnu.node.sbom.json +14 -14
- package/dist/engine/planu-core.linux-arm64-musl.node.manifest.json +7 -7
- package/dist/engine/planu-core.linux-arm64-musl.node.sbom.json +14 -14
- package/dist/engine/planu-core.linux-x64-gnu.node.manifest.json +7 -7
- package/dist/engine/planu-core.linux-x64-gnu.node.sbom.json +14 -14
- package/dist/engine/planu-core.linux-x64-musl.node.manifest.json +7 -7
- package/dist/engine/planu-core.linux-x64-musl.node.sbom.json +14 -14
- package/dist/engine/planu-core.win32-arm64-msvc.node.manifest.json +7 -7
- package/dist/engine/planu-core.win32-arm64-msvc.node.sbom.json +14 -14
- package/dist/engine/planu-core.win32-x64-msvc.node.manifest.json +7 -7
- package/dist/engine/planu-core.win32-x64-msvc.node.sbom.json +14 -14
- package/dist/engine/reverse-engineer/api-detector.js +2 -13
- package/dist/engine/reverse-engineer/complexity-analyzer.js +2 -13
- package/dist/engine/reverse-engineer/config-analyzer.js +2 -13
- package/dist/engine/reverse-engineer/dependency-graph.js +2 -13
- package/dist/engine/reverse-engineer/test-analyzer.js +2 -13
- package/dist/engine/reverse-engineer/walk-ignore.d.ts +3 -0
- package/dist/engine/reverse-engineer/walk-ignore.js +26 -0
- package/dist/engine/spec-format/acceptance-criteria.js +13 -12
- package/dist/engine/spec-format/text-fences.js +20 -2
- package/dist/engine/spec-state-syncer.js +1 -1
- package/dist/engine/timing/budget.js +5 -1
- package/dist/server/routes/specs.js +7 -5
- package/dist/tools/challenge-spec-helpers.d.ts +10 -1
- package/dist/tools/challenge-spec-helpers.js +63 -22
- package/dist/tools/challenge-spec.js +18 -3
- package/dist/tools/check-readiness.js +37 -13
- package/dist/tools/create-spec/spec-builder.d.ts +7 -0
- package/dist/tools/create-spec/spec-builder.js +19 -4
- package/dist/tools/create-spec.js +156 -86
- package/dist/tools/register-spec-tools/core-spec-tools.js +13 -12
- package/dist/tools/sync-spec-state-handler.js +49 -1
- package/dist/tools/update-status/batch.d.ts +6 -2
- package/dist/tools/update-status/batch.js +58 -1
- package/dist/tools/update-status/dod-gates.d.ts +16 -1
- package/dist/tools/update-status/dod-gates.js +191 -1
- package/dist/tools/update-status/done-receipt-verifier.d.ts +8 -0
- package/dist/tools/update-status/done-receipt-verifier.js +37 -2
- package/dist/tools/update-status/evidence-gate.d.ts +4 -0
- package/dist/tools/update-status/evidence-gate.js +67 -2
- package/dist/tools/update-status/file-sync.d.ts +2 -2
- package/dist/tools/update-status/index.d.ts +23 -1
- package/dist/tools/update-status/index.js +201 -24
- package/dist/tools/update-status/transition-guard.js +13 -1
- package/dist/tools/workspace-dashboard-handler.js +38 -0
- package/dist/types/evidence-autofill.d.ts +34 -0
- package/dist/types/evidence-autofill.js +2 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.js +1 -0
- package/dist/types/spec/core.d.ts +6 -0
- package/dist/types/spec/inputs.d.ts +7 -2
- package/dist/types/spec-format.d.ts +1 -1
- package/dist/types/transition-log.d.ts +1 -1
- package/dist/types/validation.d.ts +8 -2
- package/package.json +11 -10
- package/planu-native.json +1 -1
- package/planu-plugin.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 2,
|
|
3
|
-
"cliVersion": "5.
|
|
4
|
-
"engineVersion": "5.
|
|
5
|
-
"buildId": "1-5.
|
|
3
|
+
"cliVersion": "5.1.1",
|
|
4
|
+
"engineVersion": "5.1.1",
|
|
5
|
+
"buildId": "1-5.1.1-aarch64-unknown-linux-musl",
|
|
6
6
|
"protocolAbi": 1,
|
|
7
7
|
"capabilityAbi": 2,
|
|
8
8
|
"nodeApiAbi": 4,
|
|
@@ -16,15 +16,15 @@
|
|
|
16
16
|
"platform": "linux",
|
|
17
17
|
"arch": "arm64",
|
|
18
18
|
"libc": "musl",
|
|
19
|
-
"artifactSha256": "
|
|
19
|
+
"artifactSha256": "27daadea51d3517b399d38b202581d8305a9d8c5e70ce9610cabd7c17c0829e0",
|
|
20
20
|
"sbom": {
|
|
21
21
|
"format": "CycloneDX-1.5",
|
|
22
22
|
"path": "planu-core.linux-arm64-musl.node.sbom.json",
|
|
23
|
-
"sha256": "
|
|
23
|
+
"sha256": "8e530dc7631981619d307b862f92c5080d30c660a2f33161a58046c5231ea283"
|
|
24
24
|
},
|
|
25
25
|
"provenance": {
|
|
26
26
|
"builder": "scripts/build-rust-local.sh",
|
|
27
|
-
"sourceCommit": "
|
|
27
|
+
"sourceCommit": "5046eff43d23641fe60bd1c01e8c34277172db16",
|
|
28
28
|
"sourceTreeDirty": false,
|
|
29
29
|
"sourceDateEpoch": 1,
|
|
30
30
|
"rustToolchain": "rustc 1.95.0 (59807616e 2026-04-14)",
|
|
@@ -33,6 +33,6 @@
|
|
|
33
33
|
"signature": {
|
|
34
34
|
"algorithm": "Ed25519",
|
|
35
35
|
"keyId": "e2ee765cb5ad9fbdc433ece332bce26d746d5e350b3acde0721a4c8c6337ff7b",
|
|
36
|
-
"value": "
|
|
36
|
+
"value": "n5TSEXesZev/RV5YkPBgs7tAan7bHgicPP6qBiQBcdb2bxsv29MnR379peX7Y3yzzC7SXPeReY/qTqmqAvhYBg=="
|
|
37
37
|
}
|
|
38
38
|
}
|
|
@@ -4,14 +4,14 @@
|
|
|
4
4
|
"version": 1,
|
|
5
5
|
"metadata": {
|
|
6
6
|
"component": {
|
|
7
|
-
"bom-ref": "pkg:cargo/planu-core@5.
|
|
7
|
+
"bom-ref": "pkg:cargo/planu-core@5.1.1",
|
|
8
8
|
"type": "library",
|
|
9
9
|
"name": "planu-core",
|
|
10
|
-
"version": "5.
|
|
10
|
+
"version": "5.1.1",
|
|
11
11
|
"hashes": [
|
|
12
12
|
{
|
|
13
13
|
"alg": "SHA-256",
|
|
14
|
-
"content": "
|
|
14
|
+
"content": "27daadea51d3517b399d38b202581d8305a9d8c5e70ce9610cabd7c17c0829e0"
|
|
15
15
|
}
|
|
16
16
|
]
|
|
17
17
|
}
|
|
@@ -291,9 +291,9 @@
|
|
|
291
291
|
},
|
|
292
292
|
{
|
|
293
293
|
"type": "library",
|
|
294
|
-
"bom-ref": "pkg:cargo/globset@0.4.
|
|
294
|
+
"bom-ref": "pkg:cargo/globset@0.4.20",
|
|
295
295
|
"name": "globset",
|
|
296
|
-
"version": "0.4.
|
|
296
|
+
"version": "0.4.20",
|
|
297
297
|
"externalReferences": [
|
|
298
298
|
{
|
|
299
299
|
"type": "distribution",
|
|
@@ -529,9 +529,9 @@
|
|
|
529
529
|
},
|
|
530
530
|
{
|
|
531
531
|
"type": "library",
|
|
532
|
-
"bom-ref": "pkg:cargo/regex-automata@0.4.
|
|
532
|
+
"bom-ref": "pkg:cargo/regex-automata@0.4.18",
|
|
533
533
|
"name": "regex-automata",
|
|
534
|
-
"version": "0.4.
|
|
534
|
+
"version": "0.4.18",
|
|
535
535
|
"externalReferences": [
|
|
536
536
|
{
|
|
537
537
|
"type": "distribution",
|
|
@@ -1046,12 +1046,12 @@
|
|
|
1046
1046
|
]
|
|
1047
1047
|
},
|
|
1048
1048
|
{
|
|
1049
|
-
"ref": "pkg:cargo/globset@0.4.
|
|
1049
|
+
"ref": "pkg:cargo/globset@0.4.20",
|
|
1050
1050
|
"dependsOn": [
|
|
1051
1051
|
"pkg:cargo/aho-corasick@1.1.5",
|
|
1052
1052
|
"pkg:cargo/bstr@1.13.0",
|
|
1053
1053
|
"pkg:cargo/log@0.4.33",
|
|
1054
|
-
"pkg:cargo/regex-automata@0.4.
|
|
1054
|
+
"pkg:cargo/regex-automata@0.4.18",
|
|
1055
1055
|
"pkg:cargo/regex-syntax@0.8.11"
|
|
1056
1056
|
]
|
|
1057
1057
|
},
|
|
@@ -1069,10 +1069,10 @@
|
|
|
1069
1069
|
"ref": "pkg:cargo/ignore@0.4.25",
|
|
1070
1070
|
"dependsOn": [
|
|
1071
1071
|
"pkg:cargo/crossbeam-deque@0.8.7",
|
|
1072
|
-
"pkg:cargo/globset@0.4.
|
|
1072
|
+
"pkg:cargo/globset@0.4.20",
|
|
1073
1073
|
"pkg:cargo/log@0.4.33",
|
|
1074
1074
|
"pkg:cargo/memchr@2.8.3",
|
|
1075
|
-
"pkg:cargo/regex-automata@0.4.
|
|
1075
|
+
"pkg:cargo/regex-automata@0.4.18",
|
|
1076
1076
|
"pkg:cargo/same-file@1.0.6",
|
|
1077
1077
|
"pkg:cargo/walkdir@2.5.0",
|
|
1078
1078
|
"pkg:cargo/winapi-util@0.1.11"
|
|
@@ -1106,7 +1106,7 @@
|
|
|
1106
1106
|
"dependsOn": []
|
|
1107
1107
|
},
|
|
1108
1108
|
{
|
|
1109
|
-
"ref": "pkg:cargo/planu-core@5.
|
|
1109
|
+
"ref": "pkg:cargo/planu-core@5.1.1",
|
|
1110
1110
|
"dependsOn": [
|
|
1111
1111
|
"pkg:cargo/core-foundation@0.10.1",
|
|
1112
1112
|
"pkg:cargo/hmac@0.12.1",
|
|
@@ -1151,7 +1151,7 @@
|
|
|
1151
1151
|
]
|
|
1152
1152
|
},
|
|
1153
1153
|
{
|
|
1154
|
-
"ref": "pkg:cargo/regex-automata@0.4.
|
|
1154
|
+
"ref": "pkg:cargo/regex-automata@0.4.18",
|
|
1155
1155
|
"dependsOn": [
|
|
1156
1156
|
"pkg:cargo/aho-corasick@1.1.5",
|
|
1157
1157
|
"pkg:cargo/memchr@2.8.3",
|
|
@@ -1167,7 +1167,7 @@
|
|
|
1167
1167
|
"dependsOn": [
|
|
1168
1168
|
"pkg:cargo/aho-corasick@1.1.5",
|
|
1169
1169
|
"pkg:cargo/memchr@2.8.3",
|
|
1170
|
-
"pkg:cargo/regex-automata@0.4.
|
|
1170
|
+
"pkg:cargo/regex-automata@0.4.18",
|
|
1171
1171
|
"pkg:cargo/regex-syntax@0.8.11"
|
|
1172
1172
|
]
|
|
1173
1173
|
},
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 2,
|
|
3
|
-
"cliVersion": "5.
|
|
4
|
-
"engineVersion": "5.
|
|
5
|
-
"buildId": "1-5.
|
|
3
|
+
"cliVersion": "5.1.1",
|
|
4
|
+
"engineVersion": "5.1.1",
|
|
5
|
+
"buildId": "1-5.1.1-x86_64-unknown-linux-gnu",
|
|
6
6
|
"protocolAbi": 1,
|
|
7
7
|
"capabilityAbi": 2,
|
|
8
8
|
"nodeApiAbi": 4,
|
|
@@ -16,15 +16,15 @@
|
|
|
16
16
|
"platform": "linux",
|
|
17
17
|
"arch": "x64",
|
|
18
18
|
"libc": "glibc",
|
|
19
|
-
"artifactSha256": "
|
|
19
|
+
"artifactSha256": "ea63379c34998117ea301e635aa3654859b6ad91a0b905833b3bc11374cf84c9",
|
|
20
20
|
"sbom": {
|
|
21
21
|
"format": "CycloneDX-1.5",
|
|
22
22
|
"path": "planu-core.linux-x64-gnu.node.sbom.json",
|
|
23
|
-
"sha256": "
|
|
23
|
+
"sha256": "656e983e468fdc2428180bd064ba8cb93db5cf895cf87a44a056552e280f3641"
|
|
24
24
|
},
|
|
25
25
|
"provenance": {
|
|
26
26
|
"builder": "scripts/build-rust-local.sh",
|
|
27
|
-
"sourceCommit": "
|
|
27
|
+
"sourceCommit": "5046eff43d23641fe60bd1c01e8c34277172db16",
|
|
28
28
|
"sourceTreeDirty": false,
|
|
29
29
|
"sourceDateEpoch": 1,
|
|
30
30
|
"rustToolchain": "rustc 1.95.0 (59807616e 2026-04-14)",
|
|
@@ -33,6 +33,6 @@
|
|
|
33
33
|
"signature": {
|
|
34
34
|
"algorithm": "Ed25519",
|
|
35
35
|
"keyId": "e2ee765cb5ad9fbdc433ece332bce26d746d5e350b3acde0721a4c8c6337ff7b",
|
|
36
|
-
"value": "
|
|
36
|
+
"value": "OWDWv7CxpzTCEf/CRLzLJeQKwtRiL/0SU3UfIs7gJ+oi+c6r9LllBSgrIi58woPLny0lZAa1jYHDNT6NqUJMAg=="
|
|
37
37
|
}
|
|
38
38
|
}
|
|
@@ -4,14 +4,14 @@
|
|
|
4
4
|
"version": 1,
|
|
5
5
|
"metadata": {
|
|
6
6
|
"component": {
|
|
7
|
-
"bom-ref": "pkg:cargo/planu-core@5.
|
|
7
|
+
"bom-ref": "pkg:cargo/planu-core@5.1.1",
|
|
8
8
|
"type": "library",
|
|
9
9
|
"name": "planu-core",
|
|
10
|
-
"version": "5.
|
|
10
|
+
"version": "5.1.1",
|
|
11
11
|
"hashes": [
|
|
12
12
|
{
|
|
13
13
|
"alg": "SHA-256",
|
|
14
|
-
"content": "
|
|
14
|
+
"content": "ea63379c34998117ea301e635aa3654859b6ad91a0b905833b3bc11374cf84c9"
|
|
15
15
|
}
|
|
16
16
|
]
|
|
17
17
|
}
|
|
@@ -291,9 +291,9 @@
|
|
|
291
291
|
},
|
|
292
292
|
{
|
|
293
293
|
"type": "library",
|
|
294
|
-
"bom-ref": "pkg:cargo/globset@0.4.
|
|
294
|
+
"bom-ref": "pkg:cargo/globset@0.4.20",
|
|
295
295
|
"name": "globset",
|
|
296
|
-
"version": "0.4.
|
|
296
|
+
"version": "0.4.20",
|
|
297
297
|
"externalReferences": [
|
|
298
298
|
{
|
|
299
299
|
"type": "distribution",
|
|
@@ -529,9 +529,9 @@
|
|
|
529
529
|
},
|
|
530
530
|
{
|
|
531
531
|
"type": "library",
|
|
532
|
-
"bom-ref": "pkg:cargo/regex-automata@0.4.
|
|
532
|
+
"bom-ref": "pkg:cargo/regex-automata@0.4.18",
|
|
533
533
|
"name": "regex-automata",
|
|
534
|
-
"version": "0.4.
|
|
534
|
+
"version": "0.4.18",
|
|
535
535
|
"externalReferences": [
|
|
536
536
|
{
|
|
537
537
|
"type": "distribution",
|
|
@@ -1046,12 +1046,12 @@
|
|
|
1046
1046
|
]
|
|
1047
1047
|
},
|
|
1048
1048
|
{
|
|
1049
|
-
"ref": "pkg:cargo/globset@0.4.
|
|
1049
|
+
"ref": "pkg:cargo/globset@0.4.20",
|
|
1050
1050
|
"dependsOn": [
|
|
1051
1051
|
"pkg:cargo/aho-corasick@1.1.5",
|
|
1052
1052
|
"pkg:cargo/bstr@1.13.0",
|
|
1053
1053
|
"pkg:cargo/log@0.4.33",
|
|
1054
|
-
"pkg:cargo/regex-automata@0.4.
|
|
1054
|
+
"pkg:cargo/regex-automata@0.4.18",
|
|
1055
1055
|
"pkg:cargo/regex-syntax@0.8.11"
|
|
1056
1056
|
]
|
|
1057
1057
|
},
|
|
@@ -1069,10 +1069,10 @@
|
|
|
1069
1069
|
"ref": "pkg:cargo/ignore@0.4.25",
|
|
1070
1070
|
"dependsOn": [
|
|
1071
1071
|
"pkg:cargo/crossbeam-deque@0.8.7",
|
|
1072
|
-
"pkg:cargo/globset@0.4.
|
|
1072
|
+
"pkg:cargo/globset@0.4.20",
|
|
1073
1073
|
"pkg:cargo/log@0.4.33",
|
|
1074
1074
|
"pkg:cargo/memchr@2.8.3",
|
|
1075
|
-
"pkg:cargo/regex-automata@0.4.
|
|
1075
|
+
"pkg:cargo/regex-automata@0.4.18",
|
|
1076
1076
|
"pkg:cargo/same-file@1.0.6",
|
|
1077
1077
|
"pkg:cargo/walkdir@2.5.0",
|
|
1078
1078
|
"pkg:cargo/winapi-util@0.1.11"
|
|
@@ -1106,7 +1106,7 @@
|
|
|
1106
1106
|
"dependsOn": []
|
|
1107
1107
|
},
|
|
1108
1108
|
{
|
|
1109
|
-
"ref": "pkg:cargo/planu-core@5.
|
|
1109
|
+
"ref": "pkg:cargo/planu-core@5.1.1",
|
|
1110
1110
|
"dependsOn": [
|
|
1111
1111
|
"pkg:cargo/core-foundation@0.10.1",
|
|
1112
1112
|
"pkg:cargo/hmac@0.12.1",
|
|
@@ -1151,7 +1151,7 @@
|
|
|
1151
1151
|
]
|
|
1152
1152
|
},
|
|
1153
1153
|
{
|
|
1154
|
-
"ref": "pkg:cargo/regex-automata@0.4.
|
|
1154
|
+
"ref": "pkg:cargo/regex-automata@0.4.18",
|
|
1155
1155
|
"dependsOn": [
|
|
1156
1156
|
"pkg:cargo/aho-corasick@1.1.5",
|
|
1157
1157
|
"pkg:cargo/memchr@2.8.3",
|
|
@@ -1167,7 +1167,7 @@
|
|
|
1167
1167
|
"dependsOn": [
|
|
1168
1168
|
"pkg:cargo/aho-corasick@1.1.5",
|
|
1169
1169
|
"pkg:cargo/memchr@2.8.3",
|
|
1170
|
-
"pkg:cargo/regex-automata@0.4.
|
|
1170
|
+
"pkg:cargo/regex-automata@0.4.18",
|
|
1171
1171
|
"pkg:cargo/regex-syntax@0.8.11"
|
|
1172
1172
|
]
|
|
1173
1173
|
},
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 2,
|
|
3
|
-
"cliVersion": "5.
|
|
4
|
-
"engineVersion": "5.
|
|
5
|
-
"buildId": "1-5.
|
|
3
|
+
"cliVersion": "5.1.1",
|
|
4
|
+
"engineVersion": "5.1.1",
|
|
5
|
+
"buildId": "1-5.1.1-x86_64-unknown-linux-musl",
|
|
6
6
|
"protocolAbi": 1,
|
|
7
7
|
"capabilityAbi": 2,
|
|
8
8
|
"nodeApiAbi": 4,
|
|
@@ -16,15 +16,15 @@
|
|
|
16
16
|
"platform": "linux",
|
|
17
17
|
"arch": "x64",
|
|
18
18
|
"libc": "musl",
|
|
19
|
-
"artifactSha256": "
|
|
19
|
+
"artifactSha256": "f987d5d169ccd0326adcfbb03f78f87896f1e15dfd6db5484d0c7129d5ef0ce9",
|
|
20
20
|
"sbom": {
|
|
21
21
|
"format": "CycloneDX-1.5",
|
|
22
22
|
"path": "planu-core.linux-x64-musl.node.sbom.json",
|
|
23
|
-
"sha256": "
|
|
23
|
+
"sha256": "0ac824e4122bfd76300ca92e059687bbab4c2bd9c1fc95feaf69de7f90b3e129"
|
|
24
24
|
},
|
|
25
25
|
"provenance": {
|
|
26
26
|
"builder": "scripts/build-rust-local.sh",
|
|
27
|
-
"sourceCommit": "
|
|
27
|
+
"sourceCommit": "5046eff43d23641fe60bd1c01e8c34277172db16",
|
|
28
28
|
"sourceTreeDirty": false,
|
|
29
29
|
"sourceDateEpoch": 1,
|
|
30
30
|
"rustToolchain": "rustc 1.95.0 (59807616e 2026-04-14)",
|
|
@@ -33,6 +33,6 @@
|
|
|
33
33
|
"signature": {
|
|
34
34
|
"algorithm": "Ed25519",
|
|
35
35
|
"keyId": "e2ee765cb5ad9fbdc433ece332bce26d746d5e350b3acde0721a4c8c6337ff7b",
|
|
36
|
-
"value": "
|
|
36
|
+
"value": "rqKJhE/atBoQnOkGJFjjk5mkYyw00+XTkNJH2vpnTA09fTPQ3K19wrRxVULioQYYkRNB/6W3JSCGZcRv4EeJCQ=="
|
|
37
37
|
}
|
|
38
38
|
}
|
|
@@ -4,14 +4,14 @@
|
|
|
4
4
|
"version": 1,
|
|
5
5
|
"metadata": {
|
|
6
6
|
"component": {
|
|
7
|
-
"bom-ref": "pkg:cargo/planu-core@5.
|
|
7
|
+
"bom-ref": "pkg:cargo/planu-core@5.1.1",
|
|
8
8
|
"type": "library",
|
|
9
9
|
"name": "planu-core",
|
|
10
|
-
"version": "5.
|
|
10
|
+
"version": "5.1.1",
|
|
11
11
|
"hashes": [
|
|
12
12
|
{
|
|
13
13
|
"alg": "SHA-256",
|
|
14
|
-
"content": "
|
|
14
|
+
"content": "f987d5d169ccd0326adcfbb03f78f87896f1e15dfd6db5484d0c7129d5ef0ce9"
|
|
15
15
|
}
|
|
16
16
|
]
|
|
17
17
|
}
|
|
@@ -291,9 +291,9 @@
|
|
|
291
291
|
},
|
|
292
292
|
{
|
|
293
293
|
"type": "library",
|
|
294
|
-
"bom-ref": "pkg:cargo/globset@0.4.
|
|
294
|
+
"bom-ref": "pkg:cargo/globset@0.4.20",
|
|
295
295
|
"name": "globset",
|
|
296
|
-
"version": "0.4.
|
|
296
|
+
"version": "0.4.20",
|
|
297
297
|
"externalReferences": [
|
|
298
298
|
{
|
|
299
299
|
"type": "distribution",
|
|
@@ -529,9 +529,9 @@
|
|
|
529
529
|
},
|
|
530
530
|
{
|
|
531
531
|
"type": "library",
|
|
532
|
-
"bom-ref": "pkg:cargo/regex-automata@0.4.
|
|
532
|
+
"bom-ref": "pkg:cargo/regex-automata@0.4.18",
|
|
533
533
|
"name": "regex-automata",
|
|
534
|
-
"version": "0.4.
|
|
534
|
+
"version": "0.4.18",
|
|
535
535
|
"externalReferences": [
|
|
536
536
|
{
|
|
537
537
|
"type": "distribution",
|
|
@@ -1046,12 +1046,12 @@
|
|
|
1046
1046
|
]
|
|
1047
1047
|
},
|
|
1048
1048
|
{
|
|
1049
|
-
"ref": "pkg:cargo/globset@0.4.
|
|
1049
|
+
"ref": "pkg:cargo/globset@0.4.20",
|
|
1050
1050
|
"dependsOn": [
|
|
1051
1051
|
"pkg:cargo/aho-corasick@1.1.5",
|
|
1052
1052
|
"pkg:cargo/bstr@1.13.0",
|
|
1053
1053
|
"pkg:cargo/log@0.4.33",
|
|
1054
|
-
"pkg:cargo/regex-automata@0.4.
|
|
1054
|
+
"pkg:cargo/regex-automata@0.4.18",
|
|
1055
1055
|
"pkg:cargo/regex-syntax@0.8.11"
|
|
1056
1056
|
]
|
|
1057
1057
|
},
|
|
@@ -1069,10 +1069,10 @@
|
|
|
1069
1069
|
"ref": "pkg:cargo/ignore@0.4.25",
|
|
1070
1070
|
"dependsOn": [
|
|
1071
1071
|
"pkg:cargo/crossbeam-deque@0.8.7",
|
|
1072
|
-
"pkg:cargo/globset@0.4.
|
|
1072
|
+
"pkg:cargo/globset@0.4.20",
|
|
1073
1073
|
"pkg:cargo/log@0.4.33",
|
|
1074
1074
|
"pkg:cargo/memchr@2.8.3",
|
|
1075
|
-
"pkg:cargo/regex-automata@0.4.
|
|
1075
|
+
"pkg:cargo/regex-automata@0.4.18",
|
|
1076
1076
|
"pkg:cargo/same-file@1.0.6",
|
|
1077
1077
|
"pkg:cargo/walkdir@2.5.0",
|
|
1078
1078
|
"pkg:cargo/winapi-util@0.1.11"
|
|
@@ -1106,7 +1106,7 @@
|
|
|
1106
1106
|
"dependsOn": []
|
|
1107
1107
|
},
|
|
1108
1108
|
{
|
|
1109
|
-
"ref": "pkg:cargo/planu-core@5.
|
|
1109
|
+
"ref": "pkg:cargo/planu-core@5.1.1",
|
|
1110
1110
|
"dependsOn": [
|
|
1111
1111
|
"pkg:cargo/core-foundation@0.10.1",
|
|
1112
1112
|
"pkg:cargo/hmac@0.12.1",
|
|
@@ -1151,7 +1151,7 @@
|
|
|
1151
1151
|
]
|
|
1152
1152
|
},
|
|
1153
1153
|
{
|
|
1154
|
-
"ref": "pkg:cargo/regex-automata@0.4.
|
|
1154
|
+
"ref": "pkg:cargo/regex-automata@0.4.18",
|
|
1155
1155
|
"dependsOn": [
|
|
1156
1156
|
"pkg:cargo/aho-corasick@1.1.5",
|
|
1157
1157
|
"pkg:cargo/memchr@2.8.3",
|
|
@@ -1167,7 +1167,7 @@
|
|
|
1167
1167
|
"dependsOn": [
|
|
1168
1168
|
"pkg:cargo/aho-corasick@1.1.5",
|
|
1169
1169
|
"pkg:cargo/memchr@2.8.3",
|
|
1170
|
-
"pkg:cargo/regex-automata@0.4.
|
|
1170
|
+
"pkg:cargo/regex-automata@0.4.18",
|
|
1171
1171
|
"pkg:cargo/regex-syntax@0.8.11"
|
|
1172
1172
|
]
|
|
1173
1173
|
},
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 2,
|
|
3
|
-
"cliVersion": "5.
|
|
4
|
-
"engineVersion": "5.
|
|
5
|
-
"buildId": "1-5.
|
|
3
|
+
"cliVersion": "5.1.1",
|
|
4
|
+
"engineVersion": "5.1.1",
|
|
5
|
+
"buildId": "1-5.1.1-aarch64-pc-windows-msvc",
|
|
6
6
|
"protocolAbi": 1,
|
|
7
7
|
"capabilityAbi": 2,
|
|
8
8
|
"nodeApiAbi": 4,
|
|
@@ -16,15 +16,15 @@
|
|
|
16
16
|
"platform": "win32",
|
|
17
17
|
"arch": "arm64",
|
|
18
18
|
"libc": null,
|
|
19
|
-
"artifactSha256": "
|
|
19
|
+
"artifactSha256": "44db6066ed29aedfdc6e4f2a940ec75a5bb38b47963cd83024f465293bfedc98",
|
|
20
20
|
"sbom": {
|
|
21
21
|
"format": "CycloneDX-1.5",
|
|
22
22
|
"path": "planu-core.win32-arm64-msvc.node.sbom.json",
|
|
23
|
-
"sha256": "
|
|
23
|
+
"sha256": "5e6b815fce1aa7af3eb8ece295e1f0e6a0bac84615811c461cd54bf12e5a30f7"
|
|
24
24
|
},
|
|
25
25
|
"provenance": {
|
|
26
26
|
"builder": "scripts/build-rust-local.sh",
|
|
27
|
-
"sourceCommit": "
|
|
27
|
+
"sourceCommit": "5046eff43d23641fe60bd1c01e8c34277172db16",
|
|
28
28
|
"sourceTreeDirty": false,
|
|
29
29
|
"sourceDateEpoch": 1,
|
|
30
30
|
"rustToolchain": "rustc 1.95.0 (59807616e 2026-04-14)",
|
|
@@ -33,6 +33,6 @@
|
|
|
33
33
|
"signature": {
|
|
34
34
|
"algorithm": "Ed25519",
|
|
35
35
|
"keyId": "e2ee765cb5ad9fbdc433ece332bce26d746d5e350b3acde0721a4c8c6337ff7b",
|
|
36
|
-
"value": "
|
|
36
|
+
"value": "YneMkC+5A2C6ux44tKvBSk9t48xGIc383BY62DpJ6SIdBMwdFZlScMLFAOIXI4vd77ZrHFVI90QCeIHgbspJBQ=="
|
|
37
37
|
}
|
|
38
38
|
}
|
|
@@ -4,14 +4,14 @@
|
|
|
4
4
|
"version": 1,
|
|
5
5
|
"metadata": {
|
|
6
6
|
"component": {
|
|
7
|
-
"bom-ref": "pkg:cargo/planu-core@5.
|
|
7
|
+
"bom-ref": "pkg:cargo/planu-core@5.1.1",
|
|
8
8
|
"type": "library",
|
|
9
9
|
"name": "planu-core",
|
|
10
|
-
"version": "5.
|
|
10
|
+
"version": "5.1.1",
|
|
11
11
|
"hashes": [
|
|
12
12
|
{
|
|
13
13
|
"alg": "SHA-256",
|
|
14
|
-
"content": "
|
|
14
|
+
"content": "44db6066ed29aedfdc6e4f2a940ec75a5bb38b47963cd83024f465293bfedc98"
|
|
15
15
|
}
|
|
16
16
|
]
|
|
17
17
|
}
|
|
@@ -291,9 +291,9 @@
|
|
|
291
291
|
},
|
|
292
292
|
{
|
|
293
293
|
"type": "library",
|
|
294
|
-
"bom-ref": "pkg:cargo/globset@0.4.
|
|
294
|
+
"bom-ref": "pkg:cargo/globset@0.4.20",
|
|
295
295
|
"name": "globset",
|
|
296
|
-
"version": "0.4.
|
|
296
|
+
"version": "0.4.20",
|
|
297
297
|
"externalReferences": [
|
|
298
298
|
{
|
|
299
299
|
"type": "distribution",
|
|
@@ -529,9 +529,9 @@
|
|
|
529
529
|
},
|
|
530
530
|
{
|
|
531
531
|
"type": "library",
|
|
532
|
-
"bom-ref": "pkg:cargo/regex-automata@0.4.
|
|
532
|
+
"bom-ref": "pkg:cargo/regex-automata@0.4.18",
|
|
533
533
|
"name": "regex-automata",
|
|
534
|
-
"version": "0.4.
|
|
534
|
+
"version": "0.4.18",
|
|
535
535
|
"externalReferences": [
|
|
536
536
|
{
|
|
537
537
|
"type": "distribution",
|
|
@@ -1046,12 +1046,12 @@
|
|
|
1046
1046
|
]
|
|
1047
1047
|
},
|
|
1048
1048
|
{
|
|
1049
|
-
"ref": "pkg:cargo/globset@0.4.
|
|
1049
|
+
"ref": "pkg:cargo/globset@0.4.20",
|
|
1050
1050
|
"dependsOn": [
|
|
1051
1051
|
"pkg:cargo/aho-corasick@1.1.5",
|
|
1052
1052
|
"pkg:cargo/bstr@1.13.0",
|
|
1053
1053
|
"pkg:cargo/log@0.4.33",
|
|
1054
|
-
"pkg:cargo/regex-automata@0.4.
|
|
1054
|
+
"pkg:cargo/regex-automata@0.4.18",
|
|
1055
1055
|
"pkg:cargo/regex-syntax@0.8.11"
|
|
1056
1056
|
]
|
|
1057
1057
|
},
|
|
@@ -1069,10 +1069,10 @@
|
|
|
1069
1069
|
"ref": "pkg:cargo/ignore@0.4.25",
|
|
1070
1070
|
"dependsOn": [
|
|
1071
1071
|
"pkg:cargo/crossbeam-deque@0.8.7",
|
|
1072
|
-
"pkg:cargo/globset@0.4.
|
|
1072
|
+
"pkg:cargo/globset@0.4.20",
|
|
1073
1073
|
"pkg:cargo/log@0.4.33",
|
|
1074
1074
|
"pkg:cargo/memchr@2.8.3",
|
|
1075
|
-
"pkg:cargo/regex-automata@0.4.
|
|
1075
|
+
"pkg:cargo/regex-automata@0.4.18",
|
|
1076
1076
|
"pkg:cargo/same-file@1.0.6",
|
|
1077
1077
|
"pkg:cargo/walkdir@2.5.0",
|
|
1078
1078
|
"pkg:cargo/winapi-util@0.1.11"
|
|
@@ -1106,7 +1106,7 @@
|
|
|
1106
1106
|
"dependsOn": []
|
|
1107
1107
|
},
|
|
1108
1108
|
{
|
|
1109
|
-
"ref": "pkg:cargo/planu-core@5.
|
|
1109
|
+
"ref": "pkg:cargo/planu-core@5.1.1",
|
|
1110
1110
|
"dependsOn": [
|
|
1111
1111
|
"pkg:cargo/core-foundation@0.10.1",
|
|
1112
1112
|
"pkg:cargo/hmac@0.12.1",
|
|
@@ -1151,7 +1151,7 @@
|
|
|
1151
1151
|
]
|
|
1152
1152
|
},
|
|
1153
1153
|
{
|
|
1154
|
-
"ref": "pkg:cargo/regex-automata@0.4.
|
|
1154
|
+
"ref": "pkg:cargo/regex-automata@0.4.18",
|
|
1155
1155
|
"dependsOn": [
|
|
1156
1156
|
"pkg:cargo/aho-corasick@1.1.5",
|
|
1157
1157
|
"pkg:cargo/memchr@2.8.3",
|
|
@@ -1167,7 +1167,7 @@
|
|
|
1167
1167
|
"dependsOn": [
|
|
1168
1168
|
"pkg:cargo/aho-corasick@1.1.5",
|
|
1169
1169
|
"pkg:cargo/memchr@2.8.3",
|
|
1170
|
-
"pkg:cargo/regex-automata@0.4.
|
|
1170
|
+
"pkg:cargo/regex-automata@0.4.18",
|
|
1171
1171
|
"pkg:cargo/regex-syntax@0.8.11"
|
|
1172
1172
|
]
|
|
1173
1173
|
},
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 2,
|
|
3
|
-
"cliVersion": "5.
|
|
4
|
-
"engineVersion": "5.
|
|
5
|
-
"buildId": "1-5.
|
|
3
|
+
"cliVersion": "5.1.1",
|
|
4
|
+
"engineVersion": "5.1.1",
|
|
5
|
+
"buildId": "1-5.1.1-x86_64-pc-windows-msvc",
|
|
6
6
|
"protocolAbi": 1,
|
|
7
7
|
"capabilityAbi": 2,
|
|
8
8
|
"nodeApiAbi": 4,
|
|
@@ -16,15 +16,15 @@
|
|
|
16
16
|
"platform": "win32",
|
|
17
17
|
"arch": "x64",
|
|
18
18
|
"libc": null,
|
|
19
|
-
"artifactSha256": "
|
|
19
|
+
"artifactSha256": "301863177ab4858bbbcd6f1d5ac86af8f98c424512a54c28b5343c01c1bd377b",
|
|
20
20
|
"sbom": {
|
|
21
21
|
"format": "CycloneDX-1.5",
|
|
22
22
|
"path": "planu-core.win32-x64-msvc.node.sbom.json",
|
|
23
|
-
"sha256": "
|
|
23
|
+
"sha256": "e8005e98ac68f02b8c8617c6dff112dd868f7cc6b5b8d9b9b67513bf58d1d201"
|
|
24
24
|
},
|
|
25
25
|
"provenance": {
|
|
26
26
|
"builder": "scripts/build-rust-local.sh",
|
|
27
|
-
"sourceCommit": "
|
|
27
|
+
"sourceCommit": "5046eff43d23641fe60bd1c01e8c34277172db16",
|
|
28
28
|
"sourceTreeDirty": false,
|
|
29
29
|
"sourceDateEpoch": 1,
|
|
30
30
|
"rustToolchain": "rustc 1.95.0 (59807616e 2026-04-14)",
|
|
@@ -33,6 +33,6 @@
|
|
|
33
33
|
"signature": {
|
|
34
34
|
"algorithm": "Ed25519",
|
|
35
35
|
"keyId": "e2ee765cb5ad9fbdc433ece332bce26d746d5e350b3acde0721a4c8c6337ff7b",
|
|
36
|
-
"value": "
|
|
36
|
+
"value": "6tB0t8ghclHvFBbyGKGHG4QZ8TQ+xmAVm01BBbzC9MzVT/Cmy2Cf/KArHCK6Dsmur08z//zSNCLakiXShjRsDQ=="
|
|
37
37
|
}
|
|
38
38
|
}
|