-
-
Notifications
You must be signed in to change notification settings - Fork 398
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
[skip changelog] Update contributions guidelines and PR template to add labeling and increase focus on breaking changes #1039
Conversation
What should be considered a breaking change though? I think we should define that to know exactly when to mark a certain PR with that label. Also wouldn't it better if the label is an actual issue label instead of text "polluting" the PR title? |
.github/PULL_REQUEST_TEMPLATE.md
Outdated
@@ -16,7 +16,8 @@ | |||
* **What is the new behavior?** | |||
<!-- if this is a feature change --> | |||
|
|||
- **Does this PR introduce a breaking change?** | |||
- **Does this PR introduce a breaking change, and is | |||
[labeled accordingly](https://arduino.github.io/arduino-cli/latest/CONTRIBUTING/#pull-requests)?** |
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.
I wonder it the term "labeled" is clear enough? It might lead people to think of GitHub's labeling feature.
I have two ideas of how things could be made more clear:
- Change the term to something like "titled".
- Add an anchor to the specific bullet point in the contributing guidelines, and link to that:
- <a id="breaking"></a>Please start the commit message and PR title with the string **[breaking]** if the PR contains a breaking change. A
docs/CONTRIBUTING.md
Outdated
@@ -54,6 +54,8 @@ submitting a PR: | |||
- PR titles indirectly become part of the CHANGELOG so it's crucial to provide a good record of **what** change is being | |||
made in the title; **why** it was made will go in the PR description, along with a link to a GitHub issue if it | |||
exists. | |||
- Please start the commit message and PR title with the string **[breaking]** if the PR contains a breaking change. A |
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.
- Please start the commit message and PR title with the string **[breaking]** if the PR contains a breaking change. A | |
- If the PR contains a breaking change, please start the commit message and PR title with the string **[breaking]**. A |
I think this wording improves readability because it provides the condition up front, so it's easier to understand the purpose of the bullet point when skimming the document. That makes it easier for those who need it to find, and faster for those who don't need it to skip over.
I do sometimes get a bit annoyed by the "pollution" of the titles with these labels. It makes it more difficult to write a meaningful title that fits in the character limit. However, I think this "pollution" is worth its weight in precious characters. The labeling is a great idea, but we must keep in mind that community contributors can't label their PRs. I haven't seen it with PRs, but I do see periodically see comments from people submitting issues who are concerned because they wanted to follow the convention they see on the other issues of adding labels, but can't figure out how to do it (because it's impossible for them). So it would need to be clearly communicated. It becomes more of a maintainer guideline at that point than a contributor guideline |
I forgot to add that I investigated whether GitHub's pull request template system allows automatically labeling PRs according to front matter metadata, like the issue template system does, but it seems this is not supported. |
Over on #1044, @rsora suggested that I chime in here. In my eyes, a "breaking" change is a one that intentionally makes the user change their code in order to keep working. I believe that any PR for a breaking change should include an entry in an "UPGRADING" file that's separate from the main Changelog. That entry should include instructions telling a smart (but possibly uneducated) user what they need to do differently, ideally with an example and a note about which version of the tool the functionality was removed in. In a perfect world, breaking changes should include code to warn the user when they're using the old, deprecated functionality. Ideally, the warning message should be a concise version of the UPGRADING entry and should tell the user exactly what to change to make their old code go. Maybe the question for this template to ask is something like: "If this PR is merged, will any users need to change their code, command-line invocations, build scripts or data files when upgrading from an older version of |
a80fa54
to
7b886cb
Compare
docs/CONTRIBUTING.md
Outdated
@@ -54,6 +54,10 @@ submitting a PR: | |||
- PR titles indirectly become part of the CHANGELOG so it's crucial to provide a good record of **what** change is being | |||
made in the title; **why** it was made will go in the PR description, along with a link to a GitHub issue if it | |||
exists. | |||
- <a id="breaking"></a>A breaking change is a change that forces users to change their code, command-line invocations, |
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.
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.
Yep, now it's clear what is meant.
DDoS countermeasures cause CI to fail |
@obra I very like your suggestion:
As a user, where would you expect to see this file?
Having it as a section of the Release changelog we put in the release description could be easier for us to maintain and immediately available to users, as they can see it when they download the binary from the release page. OTOH we have other distribution channels for the CLI, in that case, maybe a file bundled with the release could reach the majority of our users. |
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.
Great work @rsora!
…dd labeling and increase focus on breaking changes
076d964
to
b1fd6c0
Compare
Sorry for my slow reply. One of the cool things about arduino-cli is that it's a self-contained executable and may well be distributed unpackaged. Because of that, I don't think a bundled file names sense. A pattern that's somewhat common is an "UPGRADING" file in the repository containing a running log of breaking changes, but especially for a project with nice docs, having it on the documentation website is also reasonable, https://arduino.github.io/arduino-cli/ seems like a pretty natural place to have an "Upgrading" section. I think that putting the content on the GitHub releases page isn't great. That's where you go to get the release, not where to learn about it. It's also not a place a PR making a breaking change can add content to ;) I'm a big fan of having the documentation about the breaking change be included in the PR that makes the change. |
This is an excellent Idea @obra, this should be compatible with our release workflow and also with how our documentation release process works! Having different documentation "versions" bound to each release and each release bound to a "release branch", for each release that contains breaking changes it should be sufficient to add the proper changes to the "upgrading" docs section as a commit on the related release branch. @per1234 WDYT? It sounds to me that this could be the right tradeoff in terms of maintainability for the team. |
I don't see any benefit to having separate documents for the changelog and the migration guide. This information is fundamentally related.
The documentation content is hosted in the repository, so we would get both.
I very much agree with this sentiment. I would suggest just having a link from the releases page to that release's section of the changelog documentation page.
I think we should have a running document with a section for each release. The updates to the document should be committed to the The changelog and and any migration guides that weren't added to the changelog along with the PR that made the breaking change can be submitted as a PR to the repository before making the release. |
I talked with @rsora and we reached a conclusion for this. We updated our internal release process to handle the release containing breaking changes. Also we updated the contributing guidelines with new steps that require the contributors to edit the This will help us keep track of breaking changes and the user to handle them accordingly when a new version is released. @per1234 may I ask you for a new review? Also could you take a look to the newly updated internal release process? For the record we are discussing internally to publish our release process guidelines. Don't be bothered about the |
docs/CONTRIBUTING.md
Outdated
@@ -421,3 +426,4 @@ If your PR doesn't need to be included in the changelog, please start the commit | |||
[npm-install-docs]: https://docs.npmjs.com/downloading-and-installing-node-js-and-npm | |||
[poetry-website]: https://python-poetry.org/ | |||
[poetry-docs]: https://python-poetry.org/docs/ | |||
[upgrading-file]: ../UPGRADING |
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.
[upgrading-file]: ../UPGRADING | |
[upgrading-file]: UPGRADING.md |
This allows the link to work when viewing the documentation via the GitHub web interface, which is especially likely with CONTRIBUTING.md, since GitHub prompts contributors to read it there.
docs/UPGRADING.md
Outdated
|
||
Here you can find a list of migration guides to handle breaking changes between releases of the CLI. | ||
|
||
For more information about breaking changes see the [contributing documentation][contrib-docs]. |
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.
I don't think the linked information is of interest to the target reader of this file, so I would just remove this sentence.
If it is to be retained, please change the link to be relative:
[contrib-docs]: CONTRIBUTING.md#breaking
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.
Right, didn't think about that. I'll just remove it.
mkdocs.yml
Outdated
- getting-started.md | ||
- command-line-completion.md | ||
- CONTRIBUTING.md | ||
- UPGRADING.md |
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.
- getting-started.md | |
- command-line-completion.md | |
- CONTRIBUTING.md | |
- UPGRADING.md | |
- UPGRADING.md | |
- getting-started.md | |
- command-line-completion.md | |
- CONTRIBUTING.md |
It seems better placed in the index directly under "Installation".
docs/UPGRADING.md
Outdated
|
||
## Unreleased | ||
|
||
[contrib-docs]: https://arduino.github.io/arduino-cli/latest/CONTRIBUTING/#breaking |
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.
[contrib-docs]: https://arduino.github.io/arduino-cli/latest/CONTRIBUTING/#breaking |
This is no longer needed.
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.
Right, I forgot. 🤦
Please check if the PR fulfills these requirements
before creating one)
our contributing guidelines
This PR updates the Contribution guidelines and the PR template to ask contributors and maintainers to use the label
[breaking]
when a breaking change is introduced.Our internal release procedures are updated accordingly as well in order to:
- Extend the QA window we have between the release candidate creation and the actual release.
- Highlight better breaking changes in the changelog if any
- Created a process to handle breaking changes by creating migration guides in the
UPGRADING.md
fileNo.
See how to contribute