@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.
Files changed (45) hide show
  1. package/AGENTS.md +5 -5
  2. package/README.md +15 -17
  3. package/actions/promote-buildchain-ref/README.md +8 -8
  4. package/actions/report-buildchain-issue/README.md +2 -2
  5. package/actions/run-lifecycle/README.md +1 -1
  6. package/actions/validate-config/README.md +1 -1
  7. package/bin/buildchain.mjs +4 -4
  8. package/dist/site/buildchain-contract.json +54 -19
  9. package/dist/site/buildchain-site.json +75 -80
  10. package/dist/site/controller-registry.json +30 -2
  11. package/dist/site/kfd-claims.json +12 -5
  12. package/dist/site/kfd-upstream-aggregate.json +1 -1
  13. package/dist/site/manual-registry.json +17 -17
  14. package/dist/site/node-api-registry.json +3 -3
  15. package/dist/site/page-registry.json +52 -57
  16. package/dist/site/public-surface-audit.json +11 -9
  17. package/dist/site/publication-registry.json +4 -4
  18. package/dist/site/release-provenance.json +2 -2
  19. package/dist/site/site-manifest.json +21 -21
  20. package/dist/site/workflow-registry.json +8 -1
  21. package/docs/MAP.md +5 -5
  22. package/docs/cli.md +14 -14
  23. package/docs/consumer-issue-reporting.md +1 -1
  24. package/docs/homebrew.md +7 -5
  25. package/docs/install.md +7 -3
  26. package/docs/kfd-agent-hub.md +1 -1
  27. package/docs/lifecycle-protocol.md +3 -3
  28. package/docs/migration-inventory.md +4 -4
  29. package/docs/ownership.md +4 -4
  30. package/docs/publication-artifacts.md +2 -2
  31. package/docs/release-candidate.md +4 -4
  32. package/docs/release-governance.md +13 -13
  33. package/docs/release-passport.md +6 -6
  34. package/docs/release-propagation.md +5 -5
  35. package/docs/reusable-build-surface.md +23 -23
  36. package/docs/runtime-train-validation.md +13 -13
  37. package/docs/shifu-gate-profiles.md +2 -2
  38. package/docs/site-bundle-contract.md +1 -1
  39. package/docs/stable-candidate-patrol.md +2 -2
  40. package/docs/web-surface-deployments.md +7 -7
  41. package/fixtures/libnode-shaped/README.md +1 -1
  42. package/package.json +1 -1
  43. package/scripts/auditable-demo.mjs +1 -1
  44. package/scripts/check-inventory.mjs +7 -7
  45. 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 `@v2`",
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@2.2.5",
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@v2",
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>@v2") {
1138
- throw new Error("inventory stable action ref must point at @v2");
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@v2") {
1142
- throw new Error("inventory stable workflow ref must point at @v2");
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");
@@ -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@v2";
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@v2
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