Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Latest commit

 

History

History
128 lines (105 loc) · 6.48 KB

RELEASE_ISSUE_TEMPLATE.md

File metadata and controls

128 lines (105 loc) · 6.48 KB

Release Template

short tl;dr; of the release

🗺 What's left for release

<List of items with PRs and/or Issues to be considered for this release>

🚢 Estimated shipping date

<Date this release will ship on if everything goes to plan (week beginning...)>

🔦 Highlights

🏗 API Changes

✅ Release Checklist

  • Stage 0 - Automated Testing
    • Feature freeze. If any "non-trivial" changes (see the footnotes of docs/releases.md for a definition) get added to the release, uncheck all the checkboxes and return to this stage.
    • Automated Testing (already tested in CI) - Ensure that all tests are passing, this includes:
  • Stage 1 - Internal Testing
    • Documentation
      • Ensure that README.md is up to date
        • Install section
        • API calls
        • Packages Listing
    • Publish a release candidate to npm
      # All successful builds of master update the `build/last-successful` branch
      # which contains an `npm-shrinkwrap.json`.
      # This command checks that branch out, installs it's dependencies using `npm ci`,
      # creates a release branch (e.g. release/v0.34.x), updates the minor prerelease
      # version (e.g. 0.33.1 -> 0.34.0-rc.0) and publishes it to npm.
      npx aegir publish-rc
      
      # Later we may wish to update the rc. First cherry-pick/otherwise merge the
      # new commits into the release branch on github (e.g. not locally) and wait
      # for CI to pass. Then update the lockfiles used by CI (n.b. one day this
      # will be done by our ci tools) with this command:
      npx aegir update-release-branch-lockfiles release/v0.34.x
      
      # Then update the rc published on npm. This command pulls the specified
      # release branch, installs it's dependencies `npm ci`, increments the
      # prerelease version (e.g. 0.34.0-rc.0 -> 0.34.0-rc.1) and publishes it
      # to npm.
      npx aegir update-rc release/v0.34.x
    • Network Testing:
      • test lab things - TBD
    • Infrastructure Testing:
      • TBD
  • Stage 2 - Community Dev Testing
    • Reach out to the IPFS early testers listed in docs/EARLY_TESTERS.md for testing this release (check when no more problems have been reported). If you'd like to be added to this list, please file a PR.
    • Reach out on IRC for additional early testers.
  • Stage 3 - Community Prod Testing
    • Update js.ipfs.io examples to use the latest js-ipfs
    • Invite the IPFS early testers to deploy the release to part of their production infrastructure.
    • Invite the wider community (link to the release issue):
  • Stage 4 - Release
    • Take a snapshot of everyone that has contributed to this release (including its direct dependencies in IPFS, libp2p, IPLD and multiformats) using the js-ipfs-contributors module.
    • Publish to npm:
      git checkout release/v0.34.x
      
      # Re-install dependencies using lockfile (will automatically remove your
      # node_modules folder) (Ensures the versions used for the browser build are the
      # same that have been verified by CI)
      npm ci
      
      # lint, build, test, tag, publish
      npm run release-minor
      
      # reintegrate release branch into master
      git rm npm-shrinkwrap.json yarn.lock
      git commit -m 'chore: removed lock files'
      git checkout master
      git merge release/v0.34.x
      git push
    • Publish a blog post to github.com/ipfs/blog (at minimum, a c&p of this release issue with all the highlights, API changes and thank yous)
    • Broadcasting (link to blog post)
    • Copy release notes to the GitHub Release description

❤️ Huge thank you to everyone that made this release possible

🙌🏽 Want to contribute?

Would you like to contribute to the IPFS project and don't know how? Well, there are a few places you can get started:

⁉️ Do you have questions?

The best place to ask your questions about IPFS, how it works and what you can do with it is at discuss.ipfs.io. We are also available at the #ipfs channel on Freenode.