chore: migrate changesets changelog generator#226
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)
📝 WalkthroughWalkthroughThe PR updates the Changesets changelog generation system by switching from ChangesChangelog Preset Configuration
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~5 minutes Suggested reviewers
Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 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 5a17623
☁️ Nx Cloud last updated this comment at |
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
Summary
Migrates the Changesets changelog generator from the compact GitHub package to the official Changesets GitHub changelog package.
Changes
.changeset/config.jsonto use@changesets/changelog-github.repooption and addeddisableThanks: true.@changesets/changelog-githubat^0.7.0.pnpm-lock.yamlwith pnpm.Notes
Future changelog entries will use the official Changesets GitHub layout instead of the compact suffix layout.
Verification
git grep -n "@svitejs/changesets-changelog-github-compact" -- . ':!node_modules'returned no matches.git grep -n "@changesets/changelog-github" -- .changeset/config.json package.json pnpm-lock.yamlconfirmed config, root dev dependency, and lockfile entries.node -e "import('@changesets/changelog-github').then(async ({default: changelog}) => { const output = await changelog.getReleaseLine({ summary: 'Fix pacer behavior (#123)\nAuthor: example' }, 'patch', { repo: 'TanStack/pacer', disableThanks: true }); console.log(output.trim()); })"produced an official GitHub-style changelog line without thanks text.pnpm changeset status --since=maincompleted with no packages to be bumped.Summary by CodeRabbit