@wipcomputer/wip-release 1.9.28 → 1.9.30
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.js +6 -6
- package/core.mjs +54 -10
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -119,12 +119,12 @@ Flags:
|
|
|
119
119
|
--skip-stale-check Skip stale remote branch check
|
|
120
120
|
--skip-worktree-check Skip worktree guard (allow release from worktree)
|
|
121
121
|
|
|
122
|
-
Release notes (
|
|
123
|
-
1. --notes-file=path Explicit file path
|
|
124
|
-
2. RELEASE-NOTES-v{ver}.md In repo root (
|
|
125
|
-
3. ai/dev-updates/YYYY-MM-DD* Today's dev update (
|
|
126
|
-
|
|
127
|
-
|
|
122
|
+
Release notes (REQUIRED, must be a file on disk):
|
|
123
|
+
1. --notes-file=path Explicit file path
|
|
124
|
+
2. RELEASE-NOTES-v{ver}.md In repo root (auto-detected)
|
|
125
|
+
3. ai/dev-updates/YYYY-MM-DD* Today's dev update (auto-detected)
|
|
126
|
+
The --notes flag is NOT accepted. Write a file. Commit it on your branch.
|
|
127
|
+
The file shows up in the PR diff so it can be reviewed before merge.
|
|
128
128
|
|
|
129
129
|
Skill publish to website:
|
|
130
130
|
Add .publish-skill.json to repo root: { "name": "my-tool" }
|
package/core.mjs
CHANGED
|
@@ -227,28 +227,38 @@ function checkReleaseNotes(notes, notesSource, level) {
|
|
|
227
227
|
const issues = [];
|
|
228
228
|
|
|
229
229
|
if (!notes) {
|
|
230
|
-
issues.push('No release notes
|
|
230
|
+
issues.push('No release notes found. A file is REQUIRED.');
|
|
231
|
+
issues.push('Write RELEASE-NOTES-v{version}.md or ai/dev-updates/YYYY-MM-DD--description.md');
|
|
232
|
+
issues.push('Commit it on your branch so it is reviewable in the PR.');
|
|
231
233
|
return { ok: false, issues, block: true };
|
|
232
234
|
}
|
|
233
235
|
|
|
234
|
-
//
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
issues.push('
|
|
236
|
+
// HARD RULE: release notes must come from a file on disk.
|
|
237
|
+
// --notes flag is NOT accepted. Write a file. Commit it. Review it.
|
|
238
|
+
if (notesSource === 'flag') {
|
|
239
|
+
issues.push('Release notes must come from a file, not the --notes flag.');
|
|
240
|
+
issues.push('Write RELEASE-NOTES-v{version}.md or ai/dev-updates/YYYY-MM-DD--description.md');
|
|
241
|
+
issues.push('Commit it on your branch so it is reviewable in the PR before merge.');
|
|
242
|
+
return { ok: false, issues, block: true };
|
|
238
243
|
}
|
|
239
244
|
|
|
240
|
-
//
|
|
241
|
-
if (
|
|
242
|
-
issues.push('
|
|
243
|
-
issues.push('Write RELEASE-NOTES-v{version}.md (dashes not dots) and commit it.');
|
|
245
|
+
// Notes too short.
|
|
246
|
+
if (notes.length < 50) {
|
|
247
|
+
issues.push('Release notes are too short (under 50 chars). Explain what changed and why.');
|
|
244
248
|
}
|
|
245
249
|
|
|
246
|
-
// Check for changelog-style one-liners
|
|
250
|
+
// Check for changelog-style one-liners
|
|
247
251
|
const looksLikeChangelog = /^(fix|add|update|remove|bump|chore|refactor|docs?)[\s:]/i.test(notes);
|
|
248
252
|
if (looksLikeChangelog && notes.length < 100) {
|
|
249
253
|
issues.push('Notes look like a changelog entry, not a narrative. Explain the impact.');
|
|
250
254
|
}
|
|
251
255
|
|
|
256
|
+
// Release notes should reference at least one issue
|
|
257
|
+
const hasIssueRef = /#\d+/.test(notes);
|
|
258
|
+
if (!hasIssueRef) {
|
|
259
|
+
issues.push('No issue reference found (#XX). Every release should close or reference an issue.');
|
|
260
|
+
}
|
|
261
|
+
|
|
252
262
|
return { ok: issues.length === 0, issues, block: issues.length > 0 };
|
|
253
263
|
}
|
|
254
264
|
|
|
@@ -264,6 +274,19 @@ export function scaffoldReleaseNotes(repoPath, version) {
|
|
|
264
274
|
const pkg = JSON.parse(readFileSync(join(repoPath, 'package.json'), 'utf8'));
|
|
265
275
|
const name = pkg.name?.replace(/^@[^/]+\//, '') || basename(repoPath);
|
|
266
276
|
|
|
277
|
+
// Auto-detect issue references from commits since last tag
|
|
278
|
+
let issueRefs = '';
|
|
279
|
+
try {
|
|
280
|
+
const lastTag = execFileSync('git', ['describe', '--tags', '--abbrev=0'],
|
|
281
|
+
{ cwd: repoPath, encoding: 'utf8' }).trim();
|
|
282
|
+
const log = execFileSync('git', ['log', `${lastTag}..HEAD`, '--oneline'],
|
|
283
|
+
{ cwd: repoPath, encoding: 'utf8' });
|
|
284
|
+
const issues = [...new Set(log.match(/#\d+/g) || [])];
|
|
285
|
+
if (issues.length > 0) {
|
|
286
|
+
issueRefs = issues.map(i => `- ${i}`).join('\n');
|
|
287
|
+
}
|
|
288
|
+
} catch {}
|
|
289
|
+
|
|
267
290
|
const template = `# Release Notes: ${name} v${version}
|
|
268
291
|
|
|
269
292
|
**One-line summary of what this release does**
|
|
@@ -279,6 +302,10 @@ Describe the changes. Not a commit list. Explain:
|
|
|
279
302
|
|
|
280
303
|
What problem does this solve? What was broken or missing?
|
|
281
304
|
|
|
305
|
+
## Issues closed
|
|
306
|
+
|
|
307
|
+
${issueRefs || '- #XX (replace with actual issue numbers)'}
|
|
308
|
+
|
|
282
309
|
## How to verify
|
|
283
310
|
|
|
284
311
|
\`\`\`bash
|
|
@@ -495,6 +522,23 @@ export function createGitHubRelease(repoPath, newVersion, notes, currentVersion)
|
|
|
495
522
|
console.warn(` ! GitHub release body is only ${bodyLen} chars. Notes may be truncated.`);
|
|
496
523
|
}
|
|
497
524
|
} catch {}
|
|
525
|
+
|
|
526
|
+
// Auto-close referenced issues
|
|
527
|
+
const issueNums = [...new Set((body.match(/#(\d+)/g) || []).map(m => m.slice(1)))];
|
|
528
|
+
for (const num of issueNums) {
|
|
529
|
+
try {
|
|
530
|
+
// Only close if issue exists and is open on the public repo
|
|
531
|
+
const publicSlug = repoSlug.replace(/-private$/, '');
|
|
532
|
+
execFileSync('gh', [
|
|
533
|
+
'issue', 'close', num,
|
|
534
|
+
'--repo', publicSlug,
|
|
535
|
+
'--comment', `Closed by v${newVersion}. See release notes.`
|
|
536
|
+
], { cwd: repoPath, stdio: 'pipe' });
|
|
537
|
+
console.log(` ✓ Closed #${num} on ${publicSlug}`);
|
|
538
|
+
} catch {
|
|
539
|
+
// Issue doesn't exist on public repo or already closed. Fine.
|
|
540
|
+
}
|
|
541
|
+
}
|
|
498
542
|
} finally {
|
|
499
543
|
try { execFileSync('rm', ['-f', tmpFile]); } catch {}
|
|
500
544
|
}
|
package/package.json
CHANGED