patchrelay 0.62.0 → 0.63.0

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "service": "patchrelay",
3
- "version": "0.62.0",
4
- "commit": "8ec3fef80b54",
5
- "builtAt": "2026-05-04T22:29:13.205Z"
3
+ "version": "0.63.0",
4
+ "commit": "e265b8a2a40d",
5
+ "builtAt": "2026-05-04T22:32:17.463Z"
6
6
  }
@@ -1,6 +1,13 @@
1
1
  export const DEFAULT_MERGE_QUEUE_LABEL = "queue";
2
2
  export const DEFAULT_MERGE_QUEUE_CHECK_NAME = "merge-steward/queue";
3
3
  export const DEFAULT_PRIORITY_QUEUE_LABEL = "queue:priority";
4
+ // Plan §2.4 defaults. Wired here so the resolver is the single source
5
+ // of truth for bus-contract values; consumers (review-quill subscribe,
6
+ // Linear-status sync, etc.) never read `project.github.*` directly.
7
+ export const DEFAULT_SPEC_READY_CHECK_NAME = "merge-steward/spec-ready";
8
+ export const DEFAULT_SPEC_BRANCH_PATTERN = "mq-spec-*";
9
+ export const DEFAULT_NO_CACHE_LABEL = "review:no-cache";
10
+ export const DEFAULT_QUEUED_FOR_DEPLOY_LABEL = "queued-for-deploy";
4
11
  export function resolveMergeQueueProtocol(project) {
5
12
  return {
6
13
  repoFullName: project?.github?.repoFullName,
@@ -8,5 +15,9 @@ export function resolveMergeQueueProtocol(project) {
8
15
  admissionLabel: project?.github?.mergeQueueLabel ?? DEFAULT_MERGE_QUEUE_LABEL,
9
16
  evictionCheckName: project?.github?.mergeQueueCheckName ?? DEFAULT_MERGE_QUEUE_CHECK_NAME,
10
17
  priorityLabel: project?.github?.priorityQueueLabel ?? DEFAULT_PRIORITY_QUEUE_LABEL,
18
+ specReadyCheckName: project?.github?.specReadyCheckName ?? DEFAULT_SPEC_READY_CHECK_NAME,
19
+ specBranchPattern: project?.github?.specBranchPattern ?? DEFAULT_SPEC_BRANCH_PATTERN,
20
+ noCacheLabel: project?.github?.noCacheLabel ?? DEFAULT_NO_CACHE_LABEL,
21
+ queuedForDeployLabel: project?.github?.queuedForDeployLabel ?? DEFAULT_QUEUED_FOR_DEPLOY_LABEL,
11
22
  };
12
23
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "patchrelay",
3
- "version": "0.62.0",
3
+ "version": "0.63.0",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "repository": {