chore: migrate changesets changelog generator - #335
Conversation
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
📝 WalkthroughWalkthroughThis PR replaces the compact GitHub changelog package with ChangesChangelog Generator Migration
Estimated code review effort: 1 (Trivial) | ~3 minutes 🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Warning There were issues while running some tools. Please review the errors and either fix the tool's configuration or disable the tool if it's a critical failure. 🔧 ESLint
ESLint install failed. For unrecoverable errors, disable the tool in CodeRabbit configuration. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
View your CI Pipeline Execution ↗ for commit 4ea9847
☁️ Nx Cloud last updated this comment at |
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
@tanstack/angular-store
@tanstack/lit-store
@tanstack/octane-store
@tanstack/preact-store
@tanstack/react-store
@tanstack/solid-store
@tanstack/store
@tanstack/svelte-store
@tanstack/vue-store
commit: |
# Conflicts: # pnpm-lock.yaml
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/storerepo option and adddisableThanks: true.pnpm-lock.yamlfor the official package.Notes
Future changelog entries use the official Changesets GitHub layout instead of the compact suffix layout.
Verification
rg -n "@svitejs/changesets-changelog-github-compact" .produced no matches.rg -n "@changesets/changelog-github" .changeset/config.json package.json pnpm-lock.yaml pnpm-workspace.yamlfound the official package in config, package, and lockfile.node --input-type=module -e "import changelog from '@changesets/changelog-github'; const out = await changelog.getReleaseLine({ summary: 'Fix #123\\nAuthor: test-user' }, 'patch', { repo: 'TanStack/store', disableThanks: true }); console.log(out);"produced- Fix [#123](https://github.com/TanStack/store/issues/123)without a thanks suffix.pnpm changeset status --since=mainreported no packages to be bumped.Summary by CodeRabbit