Project

General

Profile

Actions

HOWTO write the release notes » History » Revision 40

« Previous | Revision 40/58 (diff) | Next »
David Galloway, 05/25/2021 09:49 PM


ceph.git Release Notes

NOTE: This will not work for hotfix releases because hotfixes usually don't have a PR. We backup the original branch, reset the branch to the previous point release, then manually commit the hotfix. You'll need to do the following process manually in these cases. grep the release notes files for 'hotfix'

  • git clone http://github.com/ceph/ceph (or git fetch to get the latest stable branch updates). Do not checkout the release branch as it does not have the ceph-release-notes script
  • run the following:
    # IF NEEDED
    git fetch origin nautilus:nautilus
    git fetch origin octopus:octopus
    git fetch origin pacific:pacific
    cd src/script
    virtualenv v
    source v/bin/activate
    pip3 install githubpy GitPython review requests
    # Replace 15.2.8 with whatever the previous stable release was
    # Replace 'octopus' with whatever release you're working on
    # Replace XXXXX with your GitHub API token
    python3 ./ceph-release-notes  -r tags/v15.2.8..origin/octopus $(git rev-parse --show-toplevel) --token XXXXX
    deactivate
    
  • Create a new branch either in your own fork of ceph.git or the actual ceph.git (but be careful and tidy!)
  • Edit doc/releases/RELEASE.rst
    vXX.X.X Branch
    ==============
    
    This is the Xth backport release in the RELEASE series.  !! If there is a major change, it should be mentioned here.  Ask sage, josh, and neha !!
    We recommend all users update to this release.
    
    Notable Changes
    ---------------
    
    * Copy them from here: https://github.com/ceph/ceph/blob/octopus/PendingReleaseNotes
    
    Changelog
    ---------
    
    * The bullet points output by ceph-release-notes should go here
  • create a pull request with this change and request reviews from: neha-ojha, batrick, jdurgin, liewegas, cbodley, sebastian-philipp, gregsfortytwo
  • In another PR targeting master, add the release to doc/releases/index.rst AND doc/releases/releases.yml.

Release Notes gotchas

  • The ceph-release-notes script requires that each pull request is prefixed with the component it relates to (mon, osd etc.). If that's not the case, it will display an error message such as
    ERROR: http://github.com/ceph/ceph/pull/4884 title Keystone PKI token expiration is not enforced does not match ^(?:hammer|infernalis|jewel|kraken): (cli|common|mon|osd|fs|librbd|rbd|fs|mds|objecter|rgw|build/ops|tests|tools|cmake|doc|crush|librados)(:.*)
    

    the pull request title must be edited to add the required prefix.

E-mail Release Notes

To: ceph-announce@ceph.io, ceph-users@ceph.io, dev@ceph.io, ceph-maintainers@ceph.io

Title: vXX.X.X RELEASE released

Body:
We're happy to announce the Xth backport release in the RELEASE series. !! If there is a major change, it should be mentioned here.  Ask sage, josh, and neha !! We recommend users to update to this release. For a detailed release notes with links & changelog please refer to the official blog entry at https://ceph.io/releases/vXX-X-X-RELEASE-released

Notable Changes
---------------

* Copy bullet points from doc/releases/RELEASE.rst

Getting Ceph
------------
* Git at git://github.com/ceph/ceph.git
* Tarball at https://download.ceph.com/tarballs/ceph-XX.X.X.tar.gz
* For packages, see https://docs.ceph.com/docs/master/install/get-packages/
* Release git sha1: $SHA1

Website Release Notes

These instructions are for the Wordpress site. These will change when the new site is launched in 2021 (?).

  • Log in to the Wordpress Admin panel
  • Go to https://ceph.io/wp-admin/edit.php
  • Mouse over a recent "released" blog post and click Clone
  • Click Edit on the new cloned draft
  • Using the same script,
    ./ceph-release-notes --html -r tags/v15.2.8..origin/octopus $(git rev-parse --show-toplevel) --token XXXXX
    
  • Update the backport release # and RELEASE name if needed
  • Copy the notable changes from your e-mail
  • Copy the output of ceph-release-notes --html under Changelog between the <u></u> tags. You may need to click Edit as HTML
  • Be sure to update the URL slug on the right toolbar

Updated by David Galloway almost 3 years ago · 40 revisions