@savvy-web/cli 1.5.6 → 1.5.8

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/cli/index.js CHANGED
@@ -56,7 +56,7 @@ const rootCommand = Command.make("savvy").pipe(Command.withSubcommands([
56
56
  ]));
57
57
  const cli = Command.run(rootCommand, {
58
58
  name: "savvy",
59
- version: "1.5.6"
59
+ version: "1.5.8"
60
60
  });
61
61
  /**
62
62
  * Shared base layer: workspace services, the changeset config reader, and the
@@ -21,9 +21,8 @@ function buildPostCommitAdvice(i) {
21
21
  "B",
22
22
  "X",
23
23
  "Y",
24
- "R",
25
- "E"
26
- ].includes(i.sigStatus)) lines.push(`The commit signature status is '${i.sigStatus}' (B=bad, X=expired sig, Y=expired key, R=revoked, E=missing key). Investigate your signing setup and amend.`);
24
+ "R"
25
+ ].includes(i.sigStatus)) lines.push(`The commit signature status is '${i.sigStatus}' (B=bad, X=expired sig, Y=expired key, R=revoked). Investigate your signing setup and amend.`);
27
26
  }
28
27
  if (i.branchTicketId !== null && !i.bodyHasClosing) lines.push(`Branch implies ticket #${i.branchTicketId} but the commit body has no Closes/Fixes/Resolves trailer for it. If this commit closes #${i.branchTicketId}, amend with: git commit --amend --no-edit --trailer "Closes: #${i.branchTicketId}"`);
29
28
  return lines.length === 0 ? null : lines.join("\n\n");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@savvy-web/cli",
3
- "version": "1.5.6",
3
+ "version": "1.5.8",
4
4
  "private": false,
5
5
  "description": "The savvy CLI — unified commit, changeset, and lint commands for the Silk Suite",
6
6
  "homepage": "https://github.com/savvy-web/systems/tree/main/packages/cli",
@@ -41,7 +41,7 @@
41
41
  "@effect/sql": "^0.51.1",
42
42
  "@effect/typeclass": "^0.40.0",
43
43
  "@effect/workflow": "^0.18.2",
44
- "@savvy-web/silk-effects": "3.2.2",
44
+ "@savvy-web/silk-effects": "3.2.3",
45
45
  "effect": "^3.21.4",
46
46
  "jsonc-effect": "^0.3.1",
47
47
  "workspaces-effect": "^2.0.3",