chore: custom changeset changelog format - #3469
Open
zbynekstara wants to merge 4 commits into
Open
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the Changesets configuration to use a custom changelog renderer so release entries can include a short commit SHA as a suffix (e.g., - <summary> (abcdef1)) instead of relying on the default formatter behavior.
Changes:
- Switch Changesets
changelogconfig from the default formatter to a local custom implementation. - Add
.changeset/changelog.cjsimplementinggetReleaseLineto appendchangeset.commit(when present) as a short-SHA suffix. - Preserve the existing “Updated dependencies” block formatting via
getDependencyReleaseLine.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
.changeset/config.json |
Points Changesets at the new local changelog formatter. |
.changeset/changelog.cjs |
Adds custom release-line formatting to append short commit SHAs as a suffix. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
zbynekstara
force-pushed
the
changeset-custom-changelog-format
branch
from
August 21, 2026 08:50
121552a to
5a5aa57
Compare
zbynekstara
force-pushed
the
changeset-custom-changelog-format
branch
from
August 21, 2026 09:26
d398521 to
86a3622
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Instead of adding commit reference at the beginning of a changelog line (
- abcdef1: <summary>), applies it at the end (- <summary> (abcdef1)).Also consolidates "Updated dependencies" lines to a single line that lists all commits, instead of having them listed separately.