@kungfu-tech/buildchain 2.10.3 → 2.10.4
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 +1 -0
- package/actions/promote-buildchain-ref/README.md +10 -7
- package/dist/site/badge-endpoint-registry.json +160 -0
- package/dist/site/badges/v1/kfd-4/aligned.json +14 -0
- package/dist/site/badges/v1/kfd-4/declared.json +14 -0
- package/dist/site/badges/v1/kfd-4/downgraded.json +14 -0
- package/dist/site/badges/v1/kfd-4/draft.json +14 -0
- package/dist/site/badges/v1/kfd-4/failed.json +14 -0
- package/dist/site/badges/v1/kfd-4/missing.json +14 -0
- package/dist/site/badges/v1/kfd-4/passed.json +14 -0
- package/dist/site/badges/v1/kfd-4/planned.json +14 -0
- package/dist/site/buildchain-contract.json +13 -13
- package/dist/site/buildchain-site.json +24 -24
- package/dist/site/capability-registry.json +1 -1
- package/dist/site/kfd-claims.json +4 -4
- package/dist/site/manual-registry.json +5 -5
- package/dist/site/node-api-registry.json +9 -9
- package/dist/site/page-registry.json +14 -14
- package/dist/site/public-surface-audit.json +1 -1
- package/dist/site/site-manifest.json +9 -9
- package/docs/readme-badges.md +14 -10
- package/docs/release-candidate.md +4 -1
- package/docs/release-governance.md +5 -2
- package/docs/release-passport.md +5 -2
- package/docs/reusable-build-surface.md +5 -2
- package/package.json +2 -2
- package/packages/core/artifact-passport.js +37 -11
- package/packages/core/badges.js +1 -0
- package/packages/core/buildchain-contract.js +1 -1
- package/packages/core/buildchain-kfd-claims.js +1 -1
- package/packages/core/index.js +1 -0
- package/packages/core/readme-badges.js +98 -39
- package/packages/core/release-passport.js +1 -0
- package/scripts/check-inventory.mjs +2 -0
- package/scripts/generate-site-bundle.mjs +11 -6
- package/scripts/web-surface-production-release-pr.mjs +88 -3
- package/scripts/web-surface.mjs +39 -1
package/README.md
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
[](https://github.com/kungfu-systems/buildchain/releases/latest/download/buildchain.release.json)
|
|
5
5
|
[](https://github.com/kungfu-systems/buildchain/releases/latest/download/buildchain.release.json)
|
|
6
6
|
[](https://github.com/kungfu-systems/buildchain/releases/latest/download/buildchain.release.json)
|
|
7
|
+
[](https://github.com/kungfu-systems/buildchain/releases/latest/download/buildchain.release.json)
|
|
7
8
|
[](https://github.com/kungfu-systems/buildchain/releases/latest/download/buildchain.release.json)
|
|
8
9
|
[](https://github.com/kungfu-systems/buildchain/blob/HEAD/LICENSE)
|
|
9
10
|
[](https://github.com/kungfu-systems/buildchain/releases/latest/download/buildchain.release.json)
|
|
@@ -215,9 +215,9 @@ BUILDCHAIN_PUBLISH_EVIDENCE
|
|
|
215
215
|
```
|
|
216
216
|
|
|
217
217
|
The action outputs `transaction-id`, `transaction-state`,
|
|
218
|
-
`transaction-exact-tag`, `
|
|
219
|
-
`transaction-state-
|
|
220
|
-
`release-passport-path`, `release-passport-output-dir`,
|
|
218
|
+
`transaction-exact-tag`, `public-release-tag`, `transaction-release-sha`,
|
|
219
|
+
`transaction-state-ref`, `transaction-state-sha`, `transaction-state-path`,
|
|
220
|
+
`publish-evidence-path`, and `release-passport-path`, `release-passport-output-dir`,
|
|
221
221
|
`release-passport-state-sha`, and `finalization-needed`.
|
|
222
222
|
`transaction-state-ref` is the durable recovery location.
|
|
223
223
|
`release-passport-state-sha` is the durable ref commit after the generated
|
|
@@ -228,13 +228,16 @@ finalization, Buildchain may create a same-repository generated version-state
|
|
|
228
228
|
PR when GitHub rejects the direct protected ref update; that PR is Buildchain
|
|
229
229
|
bookkeeping, not a consumer-authored release change.
|
|
230
230
|
Set `github-release: "true"` when the semver promotion should also publish the
|
|
231
|
-
|
|
231
|
+
public GitHub Release. After the release transaction reaches `complete` and
|
|
232
232
|
`finalization-needed` is false, the action creates or updates the GitHub Release
|
|
233
|
-
for `
|
|
233
|
+
for `public-release-tag`, applies deterministic semver metadata
|
|
234
234
|
(`prerelease=true` and `make_latest=false` for prerelease tags, latest for stable
|
|
235
235
|
tags), and uploads the publish evidence file plus generated release passport
|
|
236
|
-
assets.
|
|
237
|
-
|
|
236
|
+
assets. For anchored/manual package releases, `public-release-tag` is derived
|
|
237
|
+
from the published package version, while `transaction-exact-tag` remains the
|
|
238
|
+
internal Buildchain transaction ref for recovery and audit. If the transaction is
|
|
239
|
+
not complete yet, the action defers GitHub Release publication to the next
|
|
240
|
+
idempotent promotion run.
|
|
238
241
|
|
|
239
242
|
After a publish transaction reaches `complete`, the action generates the unified
|
|
240
243
|
`buildchain-release-passport` in `.buildchain/release-passport` by default and
|
|
@@ -495,6 +495,166 @@
|
|
|
495
495
|
}
|
|
496
496
|
]
|
|
497
497
|
},
|
|
498
|
+
{
|
|
499
|
+
"id": "kfd-4",
|
|
500
|
+
"label": "KFD-4",
|
|
501
|
+
"messageTemplate": "observer perspective {state}",
|
|
502
|
+
"linkRole": "repository-release-passport",
|
|
503
|
+
"states": [
|
|
504
|
+
{
|
|
505
|
+
"state": "passed",
|
|
506
|
+
"path": "badges/v1/kfd-4/passed.json",
|
|
507
|
+
"svgPath": "badges/v1/kfd-4/passed.svg",
|
|
508
|
+
"payload": {
|
|
509
|
+
"schemaVersion": 1,
|
|
510
|
+
"label": "KFD-4",
|
|
511
|
+
"message": "observer perspective passed",
|
|
512
|
+
"color": "2ea44f",
|
|
513
|
+
"logoPolicy": {
|
|
514
|
+
"contract": "kungfu-buildchain-badge-logo-policy",
|
|
515
|
+
"mode": "hosted-placeholder",
|
|
516
|
+
"placeholder": "buildchain-monogram",
|
|
517
|
+
"futureLogoUpdateRequiresConsumerAction": false,
|
|
518
|
+
"owner": "Buildchain site badge endpoint",
|
|
519
|
+
"note": "README image URLs point at stable Buildchain-hosted badge endpoints; the rendered logo is controlled by the endpoint, not by consumer README text."
|
|
520
|
+
}
|
|
521
|
+
}
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
"state": "aligned",
|
|
525
|
+
"path": "badges/v1/kfd-4/aligned.json",
|
|
526
|
+
"svgPath": "badges/v1/kfd-4/aligned.svg",
|
|
527
|
+
"payload": {
|
|
528
|
+
"schemaVersion": 1,
|
|
529
|
+
"label": "KFD-4",
|
|
530
|
+
"message": "observer perspective aligned",
|
|
531
|
+
"color": "0969da",
|
|
532
|
+
"logoPolicy": {
|
|
533
|
+
"contract": "kungfu-buildchain-badge-logo-policy",
|
|
534
|
+
"mode": "hosted-placeholder",
|
|
535
|
+
"placeholder": "buildchain-monogram",
|
|
536
|
+
"futureLogoUpdateRequiresConsumerAction": false,
|
|
537
|
+
"owner": "Buildchain site badge endpoint",
|
|
538
|
+
"note": "README image URLs point at stable Buildchain-hosted badge endpoints; the rendered logo is controlled by the endpoint, not by consumer README text."
|
|
539
|
+
}
|
|
540
|
+
}
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"state": "declared",
|
|
544
|
+
"path": "badges/v1/kfd-4/declared.json",
|
|
545
|
+
"svgPath": "badges/v1/kfd-4/declared.svg",
|
|
546
|
+
"payload": {
|
|
547
|
+
"schemaVersion": 1,
|
|
548
|
+
"label": "KFD-4",
|
|
549
|
+
"message": "observer perspective declared",
|
|
550
|
+
"color": "6e7781",
|
|
551
|
+
"logoPolicy": {
|
|
552
|
+
"contract": "kungfu-buildchain-badge-logo-policy",
|
|
553
|
+
"mode": "hosted-placeholder",
|
|
554
|
+
"placeholder": "buildchain-monogram",
|
|
555
|
+
"futureLogoUpdateRequiresConsumerAction": false,
|
|
556
|
+
"owner": "Buildchain site badge endpoint",
|
|
557
|
+
"note": "README image URLs point at stable Buildchain-hosted badge endpoints; the rendered logo is controlled by the endpoint, not by consumer README text."
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
"state": "planned",
|
|
563
|
+
"path": "badges/v1/kfd-4/planned.json",
|
|
564
|
+
"svgPath": "badges/v1/kfd-4/planned.svg",
|
|
565
|
+
"payload": {
|
|
566
|
+
"schemaVersion": 1,
|
|
567
|
+
"label": "KFD-4",
|
|
568
|
+
"message": "observer perspective planned",
|
|
569
|
+
"color": "bf8700",
|
|
570
|
+
"logoPolicy": {
|
|
571
|
+
"contract": "kungfu-buildchain-badge-logo-policy",
|
|
572
|
+
"mode": "hosted-placeholder",
|
|
573
|
+
"placeholder": "buildchain-monogram",
|
|
574
|
+
"futureLogoUpdateRequiresConsumerAction": false,
|
|
575
|
+
"owner": "Buildchain site badge endpoint",
|
|
576
|
+
"note": "README image URLs point at stable Buildchain-hosted badge endpoints; the rendered logo is controlled by the endpoint, not by consumer README text."
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"state": "draft",
|
|
582
|
+
"path": "badges/v1/kfd-4/draft.json",
|
|
583
|
+
"svgPath": "badges/v1/kfd-4/draft.svg",
|
|
584
|
+
"payload": {
|
|
585
|
+
"schemaVersion": 1,
|
|
586
|
+
"label": "KFD-4",
|
|
587
|
+
"message": "observer perspective draft",
|
|
588
|
+
"color": "8250df",
|
|
589
|
+
"logoPolicy": {
|
|
590
|
+
"contract": "kungfu-buildchain-badge-logo-policy",
|
|
591
|
+
"mode": "hosted-placeholder",
|
|
592
|
+
"placeholder": "buildchain-monogram",
|
|
593
|
+
"futureLogoUpdateRequiresConsumerAction": false,
|
|
594
|
+
"owner": "Buildchain site badge endpoint",
|
|
595
|
+
"note": "README image URLs point at stable Buildchain-hosted badge endpoints; the rendered logo is controlled by the endpoint, not by consumer README text."
|
|
596
|
+
}
|
|
597
|
+
}
|
|
598
|
+
},
|
|
599
|
+
{
|
|
600
|
+
"state": "downgraded",
|
|
601
|
+
"path": "badges/v1/kfd-4/downgraded.json",
|
|
602
|
+
"svgPath": "badges/v1/kfd-4/downgraded.svg",
|
|
603
|
+
"payload": {
|
|
604
|
+
"schemaVersion": 1,
|
|
605
|
+
"label": "KFD-4",
|
|
606
|
+
"message": "observer perspective downgraded",
|
|
607
|
+
"color": "bf8700",
|
|
608
|
+
"logoPolicy": {
|
|
609
|
+
"contract": "kungfu-buildchain-badge-logo-policy",
|
|
610
|
+
"mode": "hosted-placeholder",
|
|
611
|
+
"placeholder": "buildchain-monogram",
|
|
612
|
+
"futureLogoUpdateRequiresConsumerAction": false,
|
|
613
|
+
"owner": "Buildchain site badge endpoint",
|
|
614
|
+
"note": "README image URLs point at stable Buildchain-hosted badge endpoints; the rendered logo is controlled by the endpoint, not by consumer README text."
|
|
615
|
+
}
|
|
616
|
+
}
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
"state": "failed",
|
|
620
|
+
"path": "badges/v1/kfd-4/failed.json",
|
|
621
|
+
"svgPath": "badges/v1/kfd-4/failed.svg",
|
|
622
|
+
"payload": {
|
|
623
|
+
"schemaVersion": 1,
|
|
624
|
+
"label": "KFD-4",
|
|
625
|
+
"message": "observer perspective failed",
|
|
626
|
+
"color": "cf222e",
|
|
627
|
+
"logoPolicy": {
|
|
628
|
+
"contract": "kungfu-buildchain-badge-logo-policy",
|
|
629
|
+
"mode": "hosted-placeholder",
|
|
630
|
+
"placeholder": "buildchain-monogram",
|
|
631
|
+
"futureLogoUpdateRequiresConsumerAction": false,
|
|
632
|
+
"owner": "Buildchain site badge endpoint",
|
|
633
|
+
"note": "README image URLs point at stable Buildchain-hosted badge endpoints; the rendered logo is controlled by the endpoint, not by consumer README text."
|
|
634
|
+
}
|
|
635
|
+
}
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"state": "missing",
|
|
639
|
+
"path": "badges/v1/kfd-4/missing.json",
|
|
640
|
+
"svgPath": "badges/v1/kfd-4/missing.svg",
|
|
641
|
+
"payload": {
|
|
642
|
+
"schemaVersion": 1,
|
|
643
|
+
"label": "KFD-4",
|
|
644
|
+
"message": "observer perspective missing",
|
|
645
|
+
"color": "6e7781",
|
|
646
|
+
"logoPolicy": {
|
|
647
|
+
"contract": "kungfu-buildchain-badge-logo-policy",
|
|
648
|
+
"mode": "hosted-placeholder",
|
|
649
|
+
"placeholder": "buildchain-monogram",
|
|
650
|
+
"futureLogoUpdateRequiresConsumerAction": false,
|
|
651
|
+
"owner": "Buildchain site badge endpoint",
|
|
652
|
+
"note": "README image URLs point at stable Buildchain-hosted badge endpoints; the rendered logo is controlled by the endpoint, not by consumer README text."
|
|
653
|
+
}
|
|
654
|
+
}
|
|
655
|
+
}
|
|
656
|
+
]
|
|
657
|
+
},
|
|
498
658
|
{
|
|
499
659
|
"id": "buildchain-release-passport",
|
|
500
660
|
"label": "buildchain",
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"label": "KFD-4",
|
|
4
|
+
"message": "observer perspective aligned",
|
|
5
|
+
"color": "0969da",
|
|
6
|
+
"logoPolicy": {
|
|
7
|
+
"contract": "kungfu-buildchain-badge-logo-policy",
|
|
8
|
+
"mode": "hosted-placeholder",
|
|
9
|
+
"placeholder": "buildchain-monogram",
|
|
10
|
+
"futureLogoUpdateRequiresConsumerAction": false,
|
|
11
|
+
"owner": "Buildchain site badge endpoint",
|
|
12
|
+
"note": "README image URLs point at stable Buildchain-hosted badge endpoints; the rendered logo is controlled by the endpoint, not by consumer README text."
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"label": "KFD-4",
|
|
4
|
+
"message": "observer perspective declared",
|
|
5
|
+
"color": "6e7781",
|
|
6
|
+
"logoPolicy": {
|
|
7
|
+
"contract": "kungfu-buildchain-badge-logo-policy",
|
|
8
|
+
"mode": "hosted-placeholder",
|
|
9
|
+
"placeholder": "buildchain-monogram",
|
|
10
|
+
"futureLogoUpdateRequiresConsumerAction": false,
|
|
11
|
+
"owner": "Buildchain site badge endpoint",
|
|
12
|
+
"note": "README image URLs point at stable Buildchain-hosted badge endpoints; the rendered logo is controlled by the endpoint, not by consumer README text."
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"label": "KFD-4",
|
|
4
|
+
"message": "observer perspective downgraded",
|
|
5
|
+
"color": "bf8700",
|
|
6
|
+
"logoPolicy": {
|
|
7
|
+
"contract": "kungfu-buildchain-badge-logo-policy",
|
|
8
|
+
"mode": "hosted-placeholder",
|
|
9
|
+
"placeholder": "buildchain-monogram",
|
|
10
|
+
"futureLogoUpdateRequiresConsumerAction": false,
|
|
11
|
+
"owner": "Buildchain site badge endpoint",
|
|
12
|
+
"note": "README image URLs point at stable Buildchain-hosted badge endpoints; the rendered logo is controlled by the endpoint, not by consumer README text."
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"label": "KFD-4",
|
|
4
|
+
"message": "observer perspective draft",
|
|
5
|
+
"color": "8250df",
|
|
6
|
+
"logoPolicy": {
|
|
7
|
+
"contract": "kungfu-buildchain-badge-logo-policy",
|
|
8
|
+
"mode": "hosted-placeholder",
|
|
9
|
+
"placeholder": "buildchain-monogram",
|
|
10
|
+
"futureLogoUpdateRequiresConsumerAction": false,
|
|
11
|
+
"owner": "Buildchain site badge endpoint",
|
|
12
|
+
"note": "README image URLs point at stable Buildchain-hosted badge endpoints; the rendered logo is controlled by the endpoint, not by consumer README text."
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"label": "KFD-4",
|
|
4
|
+
"message": "observer perspective failed",
|
|
5
|
+
"color": "cf222e",
|
|
6
|
+
"logoPolicy": {
|
|
7
|
+
"contract": "kungfu-buildchain-badge-logo-policy",
|
|
8
|
+
"mode": "hosted-placeholder",
|
|
9
|
+
"placeholder": "buildchain-monogram",
|
|
10
|
+
"futureLogoUpdateRequiresConsumerAction": false,
|
|
11
|
+
"owner": "Buildchain site badge endpoint",
|
|
12
|
+
"note": "README image URLs point at stable Buildchain-hosted badge endpoints; the rendered logo is controlled by the endpoint, not by consumer README text."
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"label": "KFD-4",
|
|
4
|
+
"message": "observer perspective missing",
|
|
5
|
+
"color": "6e7781",
|
|
6
|
+
"logoPolicy": {
|
|
7
|
+
"contract": "kungfu-buildchain-badge-logo-policy",
|
|
8
|
+
"mode": "hosted-placeholder",
|
|
9
|
+
"placeholder": "buildchain-monogram",
|
|
10
|
+
"futureLogoUpdateRequiresConsumerAction": false,
|
|
11
|
+
"owner": "Buildchain site badge endpoint",
|
|
12
|
+
"note": "README image URLs point at stable Buildchain-hosted badge endpoints; the rendered logo is controlled by the endpoint, not by consumer README text."
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"label": "KFD-4",
|
|
4
|
+
"message": "observer perspective passed",
|
|
5
|
+
"color": "2ea44f",
|
|
6
|
+
"logoPolicy": {
|
|
7
|
+
"contract": "kungfu-buildchain-badge-logo-policy",
|
|
8
|
+
"mode": "hosted-placeholder",
|
|
9
|
+
"placeholder": "buildchain-monogram",
|
|
10
|
+
"futureLogoUpdateRequiresConsumerAction": false,
|
|
11
|
+
"owner": "Buildchain site badge endpoint",
|
|
12
|
+
"note": "README image URLs point at stable Buildchain-hosted badge endpoints; the rendered logo is controlled by the endpoint, not by consumer README text."
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"label": "KFD-4",
|
|
4
|
+
"message": "observer perspective planned",
|
|
5
|
+
"color": "bf8700",
|
|
6
|
+
"logoPolicy": {
|
|
7
|
+
"contract": "kungfu-buildchain-badge-logo-policy",
|
|
8
|
+
"mode": "hosted-placeholder",
|
|
9
|
+
"placeholder": "buildchain-monogram",
|
|
10
|
+
"futureLogoUpdateRequiresConsumerAction": false,
|
|
11
|
+
"owner": "Buildchain site badge endpoint",
|
|
12
|
+
"note": "README image URLs point at stable Buildchain-hosted badge endpoints; the rendered logo is controlled by the endpoint, not by consumer README text."
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"product": {
|
|
5
5
|
"name": "Buildchain",
|
|
6
6
|
"package": "@kungfu-tech/buildchain",
|
|
7
|
-
"version": "2.10.
|
|
7
|
+
"version": "2.10.4",
|
|
8
8
|
"repository": "https://github.com/kungfu-systems/buildchain"
|
|
9
9
|
},
|
|
10
10
|
"majorLine": "v2",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"GitHub Release passport and evidence publication is delegated to promote-buildchain-ref after the semver release transaction completes"
|
|
93
93
|
],
|
|
94
94
|
"breakingDigest": "sha256:403d2fcdb0c5eabe749e89102defad69745f70a1556707bec7831fcc2e9fa8f8",
|
|
95
|
-
"auditDigest": "sha256:
|
|
95
|
+
"auditDigest": "sha256:377c48c5991c0bc8c0d7874596c2ecb83f8fd61837c8cbc37439058d1f97e71f"
|
|
96
96
|
},
|
|
97
97
|
{
|
|
98
98
|
"contractVersion": 1,
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
"breaking contract drift fails closed before rendering, deployment, or release publication"
|
|
135
135
|
],
|
|
136
136
|
"breakingDigest": "sha256:82ee63cb336e40d832dfff4a1c5e6cbfa221a4fc8b2359990033bc931bffc43a",
|
|
137
|
-
"auditDigest": "sha256:
|
|
137
|
+
"auditDigest": "sha256:c7ccd61dcad7420276d5c13549ccbbd7f9afee30eab28ff09fe3d59b2a3f638f"
|
|
138
138
|
},
|
|
139
139
|
{
|
|
140
140
|
"contractVersion": 1,
|
|
@@ -173,10 +173,10 @@
|
|
|
173
173
|
"protected release refs and durable release-state are finalized by Buildchain",
|
|
174
174
|
"release passport finalization is idempotent after publish side effects",
|
|
175
175
|
"publish transactions can require a resolved publish-gate source lock to prevent floating-ref drift",
|
|
176
|
-
"semver GitHub Releases are created or updated only after transaction completion, with prerelease/latest metadata derived from the
|
|
176
|
+
"semver GitHub Releases are created or updated only after transaction completion, with prerelease/latest metadata derived from the public release tag"
|
|
177
177
|
],
|
|
178
|
-
"breakingDigest": "sha256:
|
|
179
|
-
"auditDigest": "sha256:
|
|
178
|
+
"breakingDigest": "sha256:0c5896590c8c9a44dfecbe060bcef1b43d3a9556737309dbe7e5f2bf83bfee6c",
|
|
179
|
+
"auditDigest": "sha256:a2d78432dae8488b0b3a2359eb0daa8f605910689529ea4d0f1b46b7613f00db"
|
|
180
180
|
},
|
|
181
181
|
{
|
|
182
182
|
"contractVersion": 1,
|
|
@@ -235,7 +235,7 @@
|
|
|
235
235
|
"release-state SHA is recorded as a durable audit entrance"
|
|
236
236
|
],
|
|
237
237
|
"breakingDigest": "sha256:b627e1b2ece9b6049517a942c5139e342e6077cdd3d8962d61cef8481b1f70ad",
|
|
238
|
-
"auditDigest": "sha256:
|
|
238
|
+
"auditDigest": "sha256:e4218271c4e24ea9b4a5bab04b4d0364c92774075a07d474e05a234eaceae2b1"
|
|
239
239
|
},
|
|
240
240
|
{
|
|
241
241
|
"contractVersion": 1,
|
|
@@ -284,7 +284,7 @@
|
|
|
284
284
|
"prose-only public claims downgrade the release trust passport audit"
|
|
285
285
|
],
|
|
286
286
|
"breakingDigest": "sha256:f0b636eb925ddbf45ff1a8872454ab7b4dd98857cac12bb75217830130e62a16",
|
|
287
|
-
"auditDigest": "sha256:
|
|
287
|
+
"auditDigest": "sha256:e4218271c4e24ea9b4a5bab04b4d0364c92774075a07d474e05a234eaceae2b1"
|
|
288
288
|
},
|
|
289
289
|
{
|
|
290
290
|
"contractVersion": 1,
|
|
@@ -412,7 +412,7 @@
|
|
|
412
412
|
"CLI and JavaScript callers use the same Node API implementation"
|
|
413
413
|
],
|
|
414
414
|
"breakingDigest": "sha256:bcd72ad6dfba8013c96f8b2f7b0a307d2e7713972a1219348f0d5ecc493939a0",
|
|
415
|
-
"auditDigest": "sha256:
|
|
415
|
+
"auditDigest": "sha256:13914ebabbc92ed49dd842c2aa51cc99d72b0732423c0b53a030c6458a0cd9d8"
|
|
416
416
|
},
|
|
417
417
|
{
|
|
418
418
|
"contractVersion": 1,
|
|
@@ -434,7 +434,7 @@
|
|
|
434
434
|
"manual entries carry source file digests so downstream sites and agents can detect stale hand-written documentation"
|
|
435
435
|
],
|
|
436
436
|
"breakingDigest": "sha256:7d0d2819e3a3e72989d9c57b5efe9d0bc0a79bc0f2c82a0c7b9d6c5a211a91f2",
|
|
437
|
-
"auditDigest": "sha256:
|
|
437
|
+
"auditDigest": "sha256:e48299d248fbea70481f03d7d3ce200e59ac0d8667cfb78b34307821cfe220d2"
|
|
438
438
|
},
|
|
439
439
|
{
|
|
440
440
|
"contractVersion": 1,
|
|
@@ -456,9 +456,9 @@
|
|
|
456
456
|
"agents can discover supported Node APIs without importing internal file paths"
|
|
457
457
|
],
|
|
458
458
|
"breakingDigest": "sha256:48f925608d3e2131d90936b07dc2a30341204cae3e6e785c0f77d61ad755c945",
|
|
459
|
-
"auditDigest": "sha256:
|
|
459
|
+
"auditDigest": "sha256:2f9d529de163b590729dd01cda95eff0ebaed8152fab6502a26bfa32984b7d8a"
|
|
460
460
|
}
|
|
461
461
|
],
|
|
462
|
-
"compatibilityDigest": "sha256:
|
|
463
|
-
"contractDigest": "sha256:
|
|
462
|
+
"compatibilityDigest": "sha256:967df7e854fdf582294ddfb6403eff25c00db9518a24051e7d47cbd75527c785",
|
|
463
|
+
"contractDigest": "sha256:657034ebc39315b3450cd4c4356af2529b6a2ad03d0df680ec6010f3396df52d"
|
|
464
464
|
}
|