nextjs - 💡(How to fix) Fix Please consider having a CHANGELOG.md [3 comments, 2 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
vercel/next.js#90414Fetched 2026-04-08 00:20:13
View on GitHub
Comments
3
Participants
2
Timeline
5
Reactions
1
Timeline (top)
commented ×3issue_type_added ×1subscribed ×1
RAW_BUFFERClick to expand / collapse

What is the documentation issue?

The Github release notes are not part of the version history and they are not user friendly.

Is there any context that might help us understand?

If you include the CHANGELOG.md in git, you can review what is included there, in the PR making the related change.

As an example of the user unfriendliness, try finding the release notes for v16.1.0 (not only that specific version, but those around that time to get an overview). https://github.com/vercel/next.js/releases?q=v16.1.0&expanded=true Shows v16.2.0 versions.

CHANGELOG.md gives a good overview of the versions and timeline. You can search through a file with normal tools. It is easy to find versions that introduce changes that you are interested in. Having version history for the changelog in itself is a benefit.

Does the docs page already exist? Please link to it.

No response

extent analysis

Fix: Automate GitHub Releases from CHANGELOG.md

Goal – Keep the GitHub “Releases” page in sync with the CHANGELOG.md so every version tag shows the exact changelog entry, making it searchable and user‑friendly.

1. Add a Release‑Drafter config

Create .github/release-drafter.yml (or update if it exists).

name-template: 'v$NEXT_PATCH_VERSION'   # will be replaced by the tag name
tag-template: 'v$NEXT_PATCH_VERSION'
categories:
  - title: '🚀 Features'
    label: 'feat'
  - title: '🐛 Bug Fixes'
    label: 'fix'
  - title: '🧰 Maintenance'
    label: 'chore'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
template: |
  ## What's Changed
  $CHANGES
  ## Full Changelog
  https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...$TAG

The drafter will pull merged PR titles/labels and build a draft release.

2. Wire it up with a GitHub Action

Add .github/workflows/release.yml:

name

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING