generated from ipfs/ipfs-repository-template
-
Notifications
You must be signed in to change notification settings - Fork 110
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
docs: add RELEASE.md #266
Merged
Merged
docs: add RELEASE.md #266
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
# Boxo Releases | ||
|
||
## Release Policies | ||
### Breaking Changes | ||
TLDR: APIs may break between changes. | ||
|
||
There are two kinds of breaking changes to consider: | ||
|
||
1. **API refactors/changes**. There is equivalent functionality, but the API has changed. Generally adapting to these changes is trivial, and release notes will contain information about how to adapt. | ||
|
||
1. **Removal of a module or functionality**. In this case, Boxo maintainers will deprecate the relevant types in at least one release prior to their removal, and users will be forewarned in release notes. This will not be done casually and justification will be provided. | ||
|
||
We know that breaking changes may cause short-term pain, and we only make breaking changes when we believe the long-term gain is much greater than the short-term pain. | ||
|
||
Feedback from users helps us in this determination, so *please* provide feedback on any GitHub issues or PRs that may affect you, and let us know when we're wrong! We believe there's *a lot* of innovation and growth for IPFS in the future, so we don't want Boxo to ossify. | ||
|
||
### Versioning | ||
Boxo only releases minor and patch versions, and has no plans to change major versions from v0. | ||
|
||
Minor versions contain new or removed functionality, or significant changes in dependencies. | ||
|
||
Patch versions contain "fixes", which are generally small, targeted, and involve limited changes in functionality (such as bug fixes, security fixes, etc.). | ||
|
||
### Backporting | ||
The amount of backporting of a fix depends on the severity of the issue and the impact on users. Most non-critical fixes won't be backported. | ||
|
||
As a result, Boxo maintainers recommend that consumers stay up-to-date with Boxo releases. | ||
|
||
### Go Compatibility | ||
At any given point, the Go team supports only the latest two versions of Go released (see https://go.dev/doc/devel/release). Boxo maintainers will strive to maintain compatibilty with the older of the two supported versions, so that Boxo is also compatible with the latest two versions of Go. | ||
|
||
### Release Criteria | ||
Boxo releases occur _at least_ on every Kubo release. Releases can also be initiated on-demand, regardless of Kubo's release cadence, whenever there are significant changes (new features, refactorings, deprecations, etc.). | ||
|
||
The [release process](#release-process) below describes how maintainers perform a release. | ||
|
||
Boxo may release on Fridays or even weekends. This is in contrast to Kubo the deployable binary, which does not release on Fridays to avoid weekend surprises. | ||
|
||
### Testing | ||
Boxo maintainers are in the process of moving tests into Boxo from Kubo (see [#275](https://github.com/ipfs/boxo/issues/275)) . Until that's done, Boxo releases rely on Kubo tests for extra confidence. As a result releases must plumb Boxo into Kubo and ensure its tests pass. See [Release Process](#release-process) for details. | ||
|
||
### Changelogs | ||
Boxo loosely follows the [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format. New commits should add changelog entries into the `[Unreleased]` section so that there is no changelog scramble when a new version needs to be released. | ||
|
||
guseggert marked this conversation as resolved.
Show resolved
Hide resolved
|
||
We take to heart the "guiding principle" that "changelogs are for humans, not machines.". As a result: | ||
* Breaking changes and notable features are called out following the changelog emoji legend. | ||
* Changelog entries provide links to a relevant issue/PR so an interested party can learn more. | ||
We intend to use the standardized changelog to automate releases by onboarding with [Changelog Driven Release](https://github.com/pl-strflt/changelog-driven-release) (see [#269](https://github.com/ipfs/boxo/issues/269)). | ||
|
||
### Related Work | ||
Below are links of related/adjacent work that has informed some of the decisions in this document: | ||
1. https://github.com/ipfs/boxo/issues/170 | ||
2. https://pl-strflt.notion.site/Kubo-Release-Process-5a5d066264704009a28a79cff93062c4 | ||
3. https://github.com/ipfs/kubo/blob/master/docs/RELEASE_ISSUE_TEMPLATE.md | ||
|
||
## Release Process | ||
guseggert marked this conversation as resolved.
Show resolved
Hide resolved
|
||
1. Create an issue for the version: https://github.com/ipfs/boxo/issues/new?title=Release+X.Y.Z (can be blank for now) | ||
2. Pin the issue | ||
3. Copy-paste the following checklist into the description: | ||
|
||
- [ ] Verify your [GPG signature](https://docs.github.com/en/authentication/managing-commit-signature-verification) is configured in local git and GitHub | ||
- [ ] Ensure Boxo and Kubo are checked out on your system | ||
- [ ] Create a release branch called `release-vX.Y.Z` and push it | ||
* Use `master` as base if `Z == 0` | ||
* Use `release` as base if `Z > 0` | ||
- [ ] Tidy the changelog and push any changelog changes to `release-vX.Y.Z` | ||
BigLep marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- [ ] Create a draft PR merging `release-vX.Y.Z` into `release` | ||
guseggert marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- [ ] Name it "Release vX.Y.Z" | ||
- [ ] Reference this release issue | ||
- [ ] If `Z > 0`, then cherry-pick the necessary commits from `master` into `release-vX.Y.Z` using `git cherry-pick -x <commit>` | ||
- [ ] Ensure Boxo tests are passing | ||
- [ ] Ensure Kubo tests are passing | ||
- [ ] Go to Kubo dir and run `go get github.com/ipfs/boxo@<commit_hash>` using the commit hash of the `release-vX.Y.Z` branch | ||
- [ ] Run `go mod tidy` in repo root and in `docs/examples/kubo-as-a-library` | ||
- [ ] Commit the changes and open a draft PR in Kubo | ||
guseggert marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- [ ] Name the PR "Upgrade to Boxo vX.Y.Z" | ||
- [ ] Paste a link to the Kubo PR in the Boxo PR, so reviewers can verify the Kubo test run | ||
- [ ] Verify the CI passes | ||
- [ ] Add a commit in `release-vX.Y.Z` bumping the version in `version.json` to `vX.Y.Z` | ||
- [ ] Add a "release" label to the Boxo PR | ||
- [ ] After the release checker creates a draft release, copy-paste the changelog into the draft | ||
- [ ] Wait for approval from another Boxo maintainer | ||
- [ ] Merge the PR into `release`, _using "Create a Merge Commit"_, and do not delete the `release-vX.Y.X` branch | ||
- [ ] Verify the tag is created | ||
- [ ] Announce the release | ||
- [ ] Click [this link](https://discuss.ipfs.tech/new-topic?title=Boxo%20vX.Y.Z%20is%20out%21&tags=boxo&category=News&body=%23%23%20Boxo%20vX.Y.Z%20is%20out%21%0A%0ASee%3A%0A-%20Code%3A%20https%3A%2F%2Fgithub.com%2Fipfs%2Fboxo%2Freleases%2Ftag%2FvX.Y.Z%0A-%20Release%20Notes%3A%20https%3A%2F%2Fgithub.com%2Fipfs%2Fboxo%2Fblob%2Frelease-vX.Y.Z%2FCHANGELOG.md) to start a new Discourse topic <!--docs: https://meta.discourse.org/t/create-a-link-to-start-a-new-topic-with-pre-filled-information/28074 --> | ||
- [ ] Update `vX.Y.Z` in the title and body | ||
- [ ] Create the topic | ||
- [ ] Create a PR merging `release` into `main` | ||
guseggert marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- [ ] Name it "Merge release vX.Y.Z" | ||
- [ ] Wait for approval | ||
- [ ] Merge it _using "Create a Merge Commit"_, and do not delete the `release` branch | ||
- [ ] Update the Kubo PR to use the newly released version, mark it as "Ready for Review", get approval, and merge into Kubo |
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.
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.
Move this under docs/ ? Not sure the best move here, but I was thinking the FAQ.md should be there per #260