chore(release): restore #1646/#1644 changesets for 0.24.1#1652
Merged
Conversation
Restores the two changesets temporarily removed in #1651 to publish the already-versioned 0.24.0. With 0.24.0 now on npm, these belong in 0.24.1. Each carries pinned `pr:`/`commit:`/`author:` magic lines so @changesets/changelog-github credits the original PRs and authors (#1646 / @mvanhorn, #1644 / @masonjames) rather than this release PR. Without the override it would attribute to the commit that re-added the files (this PR), losing the contributors' credit.
🦋 Changeset detectedLatest commit: dd7f694 The changes in this PR will be included in the next version bump. This PR includes changesets to release 16 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
Contributor
There was a problem hiding this comment.
This is the right change for the right moment: after 0.24.0 shipped, the changesets for the two bug-fix PRs that missed the release need to be back on main so the next Release run opens a clean ci: release PR for 0.24.1.
I checked:
- The diff is limited to two
.changeset/*.mdfiles, and.changeset/config.jsonstill lists the fullemdashpackage family in one fixed group, so these patch-level changesets will correctly propagate to all published packages. - The code each changeset describes is already present in the tree:
- Taxonomy parent/locale fix: migration
045_taxonomy_parent_group.tsis registered inrunner.tsand rewritestaxonomies.parent_idto the parent'stranslation_group. - React 19 dev-warning fix:
packages/core/src/astro/integration/shims/use-sync-external-store*.jsplus the Vite aliases invite-config.tsredirect the CJSuse-sync-external-store/shimentry points to ESM shims around React's built-in hook.
- Taxonomy parent/locale fix: migration
- Both summaries lead with a present-tense verb and focus on observable user impact (lost parent in translations, dev-console warnings), matching the changeset guidance in AGENTS.md/CONTRIBUTING.md.
- The
pr:,commit:, andauthor:magic lines pin the generated changelog credit to the original PRs/authors rather than this release PR.
I couldn't execute pnpm changeset status or the release tooling here, so I didn't verify the exact rendered changelog line statically; no source change is required for that. No blocking issues found — this is a clean release-metadata restore.
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.
What does this PR do?
Restores the two changesets that #1651 temporarily removed to publish the already-versioned 0.24.0 (now live on npm + tag + GitHub release).
With 0.24.0 published, these two fixes belong in 0.24.1. Merging this PR makes the next Release run open a fresh
ci: releasePR for 0.24.1; merging that publishes 0.24.1.Each changeset carries pinned
@changesets/changelog-githubmagic lines so the generated changelog credits the original PRs and authors, not this release PR:fix-1347-taxonomy-parent-locale.md->pr: 1646,author: mvanhorn,commit: c962929…fresh-buckets-exercise.md->pr: 1644,author: masonjames,commit: d64c961…Without the override,
changelog-githubfalls back to the commit that re-added the files (this PR), which would strip @mvanhorn's and @masonjames's credit. The magic lines are parsed and removed from the rendered summary, reproducing the exact line the now-closed #1650 generated.No published-package source changes; this only touches
.changeset/release metadata.Closes #
Type of change
Checklist
pnpm typecheckpasses — n/a, no source changepnpm lintpasses — n/a, no source changepnpm testpasses (or targeted tests for my change) — n/a, no source changepnpm formathas been run — n/a, changeset metadata onlyAI-generated code disclosure
Screenshots / test output
n/a — release metadata only.