@patronage/software-factory 1.0.0-alpha.4 → 1.0.0-alpha.5

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 CHANGED
@@ -37,7 +37,7 @@ A stacked release train has one terminal release-owning slice. Interior slices d
37
37
  A stable cut has two phases. Phase 1 is the verified package candidate: steps 1 through 4 below, ending in the attended npm publish, tag, and GitHub release. Phase 2 is post-publication stable-doc convergence: steps 5 and 6, a normal admitted docs PR followed by the read-only convergence assertion from a clean `main`. Stable docs must never claim an unpublished version, so they cannot land in the phase-1 change. Prerelease behavior is unchanged: prerelease notes may land before publish while stable docs keep naming the prior stable version.
38
38
 
39
39
  1. Bump `package.json` to valid SemVer. The assertion derives its expected stable or prerelease channel from the version; it accepts no channel flag.
40
- 2. Publish to npm per the [repository operations runbook](../docs/repository-operations.md#publishing) (attended, hand-cut, `pnpm publish` only). A stable version uses `pnpm --filter @patronage/software-factory publish`, which assigns npm `latest`. A prerelease must use `pnpm --filter @patronage/software-factory publish --tag next`; bare `pnpm publish` defaults to `latest` and would move it before the post-hoc assertion can reject the release.
40
+ 2. Publish to npm per the [repository operations runbook](../docs/repository-operations.md#publishing) (attended, hand-cut, `pnpm publish` only). Both factory packages pin `publishConfig.tag: next`, so a bare `pnpm --filter @patronage/software-factory publish` lands on `next` and cannot move `latest`. A prerelease is therefore the bare command; a stable version must say it out loud: `pnpm --filter @patronage/software-factory publish --tag latest`. Forgetting the flag on a stable cut leaves `latest` untouched for the convergence assertion to flag the safe failure direction.
41
41
  3. Cut the `software-factory-vX.Y.Z` tag and push it.
42
42
  4. Cut the GitHub release for that tag, with notes covering features, deletions, breaking changes, and closed issues. Mark it as a prerelease exactly when its SemVer version has a prerelease component. When the release changes the profile `schemaVersion`, state it in the notes — the profile schema version is a separate axis from the package version.
43
43
  5. Converge the stable docs after publication. Update affected `software-factory-docs/` pages through a normal admitted docs PR. Stable docs must state the current stable version. Prerelease docs may record the candidate and its migration notes, but must not represent it as the current stable release.
package/dist/index.d.ts CHANGED
@@ -2187,9 +2187,9 @@ declare const retroEnvelopeV1Schema: z.ZodObject<{
2187
2187
  kind: z.ZodLiteral<"retro-envelope">;
2188
2188
  outcome: z.ZodOptional<z.ZodObject<{
2189
2189
  status: z.ZodEnum<{
2190
+ blocked: "blocked";
2190
2191
  success: "success";
2191
2192
  fail: "fail";
2192
- blocked: "blocked";
2193
2193
  "ship-with-followups": "ship-with-followups";
2194
2194
  }>;
2195
2195
  verdict: z.ZodOptional<z.ZodString>;
package/dist/index.js CHANGED
@@ -18,7 +18,7 @@ import { parse } from "yaml";
18
18
  import { promisify } from "node:util";
19
19
  import { GitHubApiError, mintInstallationToken } from "@patronage/factory-ci";
20
20
  //#region package.json
21
- var version = "1.0.0-alpha.4";
21
+ var version = "1.0.0-alpha.5";
22
22
  //#endregion
23
23
  //#region src/review-rungs.ts
24
24
  const EVIDENCE_REVIEW_RUNGS$1 = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@patronage/software-factory",
3
- "version": "1.0.0-alpha.4",
3
+ "version": "1.0.0-alpha.5",
4
4
  "description": "Shared Patronage software factory CLI and project-profile validation tools",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -29,14 +29,15 @@
29
29
  }
30
30
  },
31
31
  "publishConfig": {
32
- "access": "public"
32
+ "access": "public",
33
+ "tag": "next"
33
34
  },
34
35
  "dependencies": {
35
36
  "commander": "14.0.3",
36
37
  "picomatch": "^4.0.5",
37
38
  "yaml": "^2.9.0",
38
39
  "zod": "4.4.3",
39
- "@patronage/factory-ci": "1.0.0-alpha.4"
40
+ "@patronage/factory-ci": "1.0.0-alpha.5"
40
41
  },
41
42
  "devDependencies": {
42
43
  "@types/node": "24.13.3",