chore: migrate changesets changelog generator#1177
Conversation
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (2)
📝 WalkthroughWalkthroughThis PR migrates the Changesets changelog generation from a third-party compact GitHub plugin to the official ChangesChangelog Plugin Migration
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Poem
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 inconclusive)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
|
View your CI Pipeline Execution ↗ for commit 01e41be
☁️ Nx Cloud last updated this comment at |
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
Summary
Migrate the Changesets changelog generator from the deprecated compact GitHub generator to the official Changesets GitHub generator.
Changes
@svitejs/changesets-changelog-github-compactwith@changesets/changelog-github.TanStack/virtualrepo option and adddisableThanks: true.pnpm-lock.yamlwith pnpm.Notes
Future changelog entries use the official Changesets GitHub layout instead of the compact suffix layout.
Verification
pnpm install --ignore-scripts --no-frozen-lockfilegit grep -n "@svitejs/changesets-changelog-github-compact" -- .changeset package.json pnpm-lock.yaml || truegit grep -n "@changesets/changelog-github" -- .changeset package.json pnpm-lock.yamlnode --input-type=module -e 'import changelog from "@changesets/changelog-github"; const line = await changelog.getReleaseLine({ summary: "Fix link #123", commit: undefined }, "patch", { repo: "TanStack/virtual", disableThanks: true }); console.log(line.trim()); if (!line.includes("https://github.com/TanStack/virtual/issues/123")) process.exit(1);'pnpm changeset status --since=mainSummary by CodeRabbit