-
-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(changesets): use changelog-github-compact formatter #61
chore(changesets): use changelog-github-compact formatter #61
Conversation
|
WalkthroughThe configuration for changelog generation in a project has been updated. Instead of using a single plugin, an array has been introduced, specifying a new plugin along with its configuration, including a repository reference. This update changes how changelogs are created, allowing for repository-specific formatting. Changes
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on X ? TipsChat with CodeRabbit Bot (
|
✅ Deploy Preview for sveltekit-search-params ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review Status
Actionable comments generated: 0
Configuration used: CodeRabbit UI
Files ignored due to filter (2)
- package.json
- pnpm-lock.yaml
Files selected for processing (1)
- .changeset/config.json (1 hunks)
Additional comments: 3
.changeset/config.json (3)
3-6: The updated
changelog
configuration syntax appears correct and follows the JSON array format, including the plugin name and configuration object.5-5: Verify that the repository
paoloricciuti/sveltekit-search-params
specified in the changelog configuration is the correct repository for this project's changelog links.Verification successful
The executed script confirms that the repository
paoloricciuti/sveltekit-search-params
specified in the.changeset/config.json
file matches the origin repository of the current project. Therefore, the changelog configuration is correctly set to generate links to this repository.* 3-6: Ensure that any scripts, CI/CD pipelines, or tools that depend on the changelog format are updated to handle the new `changelog-github-compact` format.Scripts Executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Check if the repository mentioned in the configuration is the same as the origin repository of the current project. git remote get-url origin | grep -q 'paoloricciuti/sveltekit-search-params' && echo "Repository matches." || echo "Repository does not match."Length of output: 124
Thanks @dominikg ! |
This is the less verbose github formatter I forked from changesets own, adding links to merged PRs or commits
See https://github.com/sveltejs/vite-plugin-svelte/blob/main/packages/vite-plugin-svelte/CHANGELOG.md for an example
Summary by CodeRabbit