@kungfu-tech/buildchain 3.0.1-alpha.3 → 3.0.1-alpha.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/AGENTS.md +5 -5
- package/README.md +15 -17
- package/actions/promote-buildchain-ref/README.md +8 -8
- package/actions/report-buildchain-issue/README.md +2 -2
- package/actions/run-lifecycle/README.md +1 -1
- package/actions/validate-config/README.md +1 -1
- package/bin/buildchain.mjs +4 -4
- package/dist/site/buildchain-contract.json +54 -19
- package/dist/site/buildchain-site.json +75 -80
- package/dist/site/controller-registry.json +30 -2
- package/dist/site/kfd-claims.json +12 -5
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +17 -17
- package/dist/site/node-api-registry.json +3 -3
- package/dist/site/page-registry.json +52 -57
- package/dist/site/public-surface-audit.json +11 -9
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-provenance.json +2 -2
- package/dist/site/site-manifest.json +21 -21
- package/dist/site/workflow-registry.json +8 -1
- package/docs/MAP.md +5 -5
- package/docs/cli.md +14 -14
- package/docs/consumer-issue-reporting.md +1 -1
- package/docs/homebrew.md +7 -5
- package/docs/install.md +7 -3
- package/docs/kfd-agent-hub.md +1 -1
- package/docs/lifecycle-protocol.md +3 -3
- package/docs/migration-inventory.md +4 -4
- package/docs/ownership.md +4 -4
- package/docs/publication-artifacts.md +2 -2
- package/docs/release-candidate.md +4 -4
- package/docs/release-governance.md +13 -13
- package/docs/release-passport.md +6 -6
- package/docs/release-propagation.md +5 -5
- package/docs/reusable-build-surface.md +23 -23
- package/docs/runtime-train-validation.md +13 -13
- package/docs/shifu-gate-profiles.md +2 -2
- package/docs/site-bundle-contract.md +1 -1
- package/docs/stable-candidate-patrol.md +2 -2
- package/docs/web-surface-deployments.md +7 -7
- package/fixtures/libnode-shaped/README.md +1 -1
- package/package.json +1 -1
- package/scripts/auditable-demo.mjs +1 -1
- package/scripts/check-inventory.mjs +7 -7
- package/scripts/init-repo.mjs +2 -2
|
@@ -729,7 +729,7 @@ for (const requiredSnippet of [
|
|
|
729
729
|
for (const requiredSnippet of [
|
|
730
730
|
"Capability Coverage",
|
|
731
731
|
"KFD-1 / KFD-2 / KFD-3",
|
|
732
|
-
"floating `@
|
|
732
|
+
"floating `@v3`",
|
|
733
733
|
"npm publish transactions",
|
|
734
734
|
"Git/source/version/module/product build facts",
|
|
735
735
|
"GitHub Release",
|
|
@@ -800,7 +800,7 @@ for (const requiredSnippet of [
|
|
|
800
800
|
for (const [docName, docSource] of Object.entries({ "docs/cli.md": cliDoc, "docs/install.md": installDoc })) {
|
|
801
801
|
for (const requiredSnippet of [
|
|
802
802
|
"minimumReleaseAgeExclude",
|
|
803
|
-
"@kungfu-tech/buildchain@
|
|
803
|
+
"@kungfu-tech/buildchain@3.0.0",
|
|
804
804
|
"package/version-specific",
|
|
805
805
|
]) {
|
|
806
806
|
if (!docSource.includes(requiredSnippet)) {
|
|
@@ -988,7 +988,7 @@ for (const retiredWorkflow of [
|
|
|
988
988
|
const retiredSource = fs.readFileSync(path.join(workflowDir, retiredWorkflow), "utf8");
|
|
989
989
|
for (const requiredSnippet of [
|
|
990
990
|
"release path is retired",
|
|
991
|
-
"release-candidate-promote.yml@
|
|
991
|
+
"release-candidate-promote.yml@v3",
|
|
992
992
|
"publish-gate source-lock enforcement",
|
|
993
993
|
]) {
|
|
994
994
|
if (!retiredSource.includes(requiredSnippet)) {
|
|
@@ -1134,12 +1134,12 @@ if (inventory.release !== "buildchain-v2") {
|
|
|
1134
1134
|
throw new Error("inventory release must be buildchain-v2");
|
|
1135
1135
|
}
|
|
1136
1136
|
|
|
1137
|
-
if (inventory.stableRefs?.actions !== "kungfu-systems/buildchain/actions/<name>@
|
|
1138
|
-
throw new Error("inventory stable action ref must point at @
|
|
1137
|
+
if (inventory.stableRefs?.actions !== "kungfu-systems/buildchain/actions/<name>@v3") {
|
|
1138
|
+
throw new Error("inventory stable action ref must point at @v3");
|
|
1139
1139
|
}
|
|
1140
1140
|
|
|
1141
|
-
if (inventory.stableRefs?.workflows !== "kungfu-systems/buildchain/.github/workflows/<workflow>.yml@
|
|
1142
|
-
throw new Error("inventory stable workflow ref must point at @
|
|
1141
|
+
if (inventory.stableRefs?.workflows !== "kungfu-systems/buildchain/.github/workflows/<workflow>.yml@v3") {
|
|
1142
|
+
throw new Error("inventory stable workflow ref must point at @v3");
|
|
1143
1143
|
}
|
|
1144
1144
|
if (inventory.safety?.releasePassport?.line !== "v2.2") {
|
|
1145
1145
|
throw new Error("release passport inventory must be registered as a v2.2 surface");
|
package/scripts/init-repo.mjs
CHANGED
|
@@ -5,7 +5,7 @@ import { pathToFileURL } from "node:url";
|
|
|
5
5
|
import { BUILDCHAIN_CONFIG_PATH } from "../packages/core/buildchain-layout.js";
|
|
6
6
|
import { detectPackageManager, assertPackageManager } from "../packages/core/package-manager.js";
|
|
7
7
|
|
|
8
|
-
const BUILDCHAIN_WORKFLOW_REF = "kungfu-systems/buildchain/.github/workflows/.build.yml@
|
|
8
|
+
const BUILDCHAIN_WORKFLOW_REF = "kungfu-systems/buildchain/.github/workflows/.build.yml@v3";
|
|
9
9
|
const DEFAULT_PUBLICATION_LATEX_IMAGE = "ghcr.io/kungfu-systems/build-images/latex-pdf-builder";
|
|
10
10
|
const DEFAULT_PUBLICATION_LATEX_DIGEST = "sha256:c20f3809e96836c1c78e97c76939d12f1de3fed0ea9b7c40c43332ec2ea480f8";
|
|
11
11
|
const DEFAULT_PUBLICATION_LATEX_COMMAND = "latexmk -pdf -outdir=_build paper/main.tex";
|
|
@@ -349,7 +349,7 @@ permissions:
|
|
|
349
349
|
|
|
350
350
|
jobs:
|
|
351
351
|
publication:
|
|
352
|
-
uses: kungfu-systems/buildchain/.github/workflows/publication-artifact.yml@
|
|
352
|
+
uses: kungfu-systems/buildchain/.github/workflows/publication-artifact.yml@v3
|
|
353
353
|
with:
|
|
354
354
|
buildchain-ref: \${{ inputs.buildchain-ref || '' }}
|
|
355
355
|
toolchain-type: config
|