fix(release): add major changelog evidence for dependency-driven @fluojs/email and @fluojs/i18n 2.0.0 bumps#2766
Merged
Merged
Conversation
…ojs/email and @fluojs/i18n 2.0.0 bumps
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.
Problem
The Changesets release workflow (run #29262746664) failed at the
Verify changeset release lanestep because@fluojs/emailand@fluojs/i18nwere bumped to 2.0.0 (major) by Changesets due to dependency major bumps (@fluojs/runtime,@fluojs/di,@fluojs/queue,@fluojs/http), but their CHANGELOG## 2.0.0sections only contained### Patch Changesand were missing the required### Major Changesevidence.The
verify-changeset-release-lane.mjsguard requires every major version delta to have a matching### Major Changessection in the package CHANGELOG.Fix
Add
### Major Changessections to the## 2.0.0entries in:packages/email/CHANGELOG.md— lockstep major bump driven by@fluojs/runtime@2.0.0,@fluojs/di@2.0.0, and@fluojs/queue@2.0.0; no breaking API changes in the email package itself; consumer migration notes point to the dependency changelogs.packages/i18n/CHANGELOG.md— lockstep major bump driven by@fluojs/http@2.0.0; no breaking API changes in the i18n package itself; consumer migration notes point to theResponseFormatter.format(...)return type change.Verification