-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
chore: fix contributing changeset advice #4041
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -259,7 +259,7 @@ Most of the time the changes you'll make are likely to be categorized as patch r | |
|
|
||
| ## Adding server changes | ||
|
|
||
| Changesets only track published npm packages. If your PR only changes server components (`apps/webapp/`, `apps/supervisor/`, `apps/coordinator/`, etc.) with no package changes, add a `.server-changes/` file so the change appears in release notes. | ||
| Changesets only track published npm packages. If your PR changes server components (`apps/webapp/`, `apps/supervisor/`, `apps/coordinator/`, etc.), add a `.server-changes/` file so the change appears in release notes. | ||
|
|
||
| Create a markdown file with a descriptive name: | ||
|
|
||
|
|
@@ -286,7 +286,7 @@ The body text (below the frontmatter) is a one-line description of the change. K | |
| |---|---| | ||
| | Only packages (`packages/`) | Changeset | | ||
| | Only server (`apps/`) | `.server-changes/` file | | ||
| | Both packages and server | Just the changeset | | ||
| | Both packages and server | Both | | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🟡 Contradictory contributor guidance for mixed-change PRs across documentation files The updated guidance now tells contributors with both package and server changes to add "Both" a changeset and a server-changes file ( Impact: Contributors reading Inconsistent documentation sites that were not updated
Both directly contradict the new Prompt for agentsWas this helpful? React with 👍 or 👎 to provide feedback. |
||
|
|
||
| See `.server-changes/README.md` for more details. | ||
|
|
||
|
|
||
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.
🚩 Policy change broadens when .server-changes files are required
The two edits work together to change the contribution policy: line 262 removes the word "only" so that
.server-changes/files are now required whenever server components change (not just for server-only PRs), and line 289 changes the table entry for mixed PRs from "Just the changeset" to "Both". This is a deliberate policy broadening. The consequence is that mixed PRs will now generate two changelog artifacts (a changeset for package release notes and a.server-changes/file for server release notes), which may result in duplicate entries in release notes if the release tooling doesn't deduplicate. Worth confirming the release automation handles this gracefully.Was this helpful? React with 👍 or 👎 to provide feedback.