Update release note info
- add a link to make the release note info easier to find in the contributor guide to increase the likelihood that people will actually follow the standard format - add some guidance about using past tense to describe fixes - update the sample notes to reflect the above Change-Id: Iddf0b3de4ba44f9b14d2e144097b51fd7a4ccf61
This commit is contained in:
parent
355681cd53
commit
75588809b5
@ -30,6 +30,17 @@ Getting Started
|
|||||||
|
|
||||||
contributing
|
contributing
|
||||||
|
|
||||||
|
Writing Release Notes
|
||||||
|
---------------------
|
||||||
|
|
||||||
|
Please follow the format, it will make everyone's life easier. There's
|
||||||
|
even a special section on writing release notes for Cinder drivers.
|
||||||
|
|
||||||
|
.. toctree::
|
||||||
|
:maxdepth: 2
|
||||||
|
|
||||||
|
releasenotes
|
||||||
|
|
||||||
.. _programming-howtos:
|
.. _programming-howtos:
|
||||||
|
|
||||||
Programming HowTos and Tutorials
|
Programming HowTos and Tutorials
|
||||||
|
@ -56,10 +56,20 @@ link to it as a RST link like in the following example:
|
|||||||
---
|
---
|
||||||
fixes:
|
fixes:
|
||||||
- |
|
- |
|
||||||
`Bug #1889758 <https://bugs.launchpad.net/cinder/+bug/1889758>`_: Fix
|
`Bug #1889758 <https://bugs.launchpad.net/cinder/+bug/1889758>`_: Fixed
|
||||||
revert to snapshot not working for non admin users when using the
|
revert to snapshot not working for non admin users when using the
|
||||||
snapshot's name.
|
snapshot's name.
|
||||||
|
|
||||||
|
Note the use of the past tense ("Fixed") instead of the present tense
|
||||||
|
("Fix"). This is because although you are fixing the bug right now in the
|
||||||
|
present, operators will be reading the release notes in the future (at the
|
||||||
|
time of the release), at which time your bug fix will be a thing of the past.
|
||||||
|
|
||||||
|
Additionally, keep in mind that when your release note is published, it is
|
||||||
|
mixed in with all the other release notes and won't obviously be connected
|
||||||
|
to your patch. Thus, in order for it to make sense, you may need to repeat
|
||||||
|
information that you already have in your commit message. That's OK.
|
||||||
|
|
||||||
Drivers
|
Drivers
|
||||||
-------
|
-------
|
||||||
|
|
||||||
@ -72,7 +82,7 @@ For example:
|
|||||||
---
|
---
|
||||||
features:
|
features:
|
||||||
- |
|
- |
|
||||||
RBD driver: Add support for volume manage and unmanage operations.
|
RBD driver: Added support for volume manage and unmanage operations.
|
||||||
|
|
||||||
When fixing a driver bug we must not only have the driver name prefix but also
|
When fixing a driver bug we must not only have the driver name prefix but also
|
||||||
the bug number and link:
|
the bug number and link:
|
||||||
@ -83,7 +93,7 @@ the bug number and link:
|
|||||||
fixes:
|
fixes:
|
||||||
- |
|
- |
|
||||||
Brocade driver `bug #1866860
|
Brocade driver `bug #1866860
|
||||||
<https://bugs.launchpad.net/cinder/+bug/1889758>`_: Fix
|
<https://bugs.launchpad.net/cinder/+bug/1889758>`_: Fixed
|
||||||
``AttributeError`` when using ``REST_HTTP`` or ``REST_HTTPS`` as the
|
``AttributeError`` when using ``REST_HTTP`` or ``REST_HTTPS`` as the
|
||||||
``fc_southbound_protocol`` option and an exception is raised by the
|
``fc_southbound_protocol`` option and an exception is raised by the
|
||||||
client.
|
client.
|
||||||
@ -97,14 +107,14 @@ list each of the driver as an independent item following above rules:
|
|||||||
fixes:
|
fixes:
|
||||||
- |
|
- |
|
||||||
Unity driver `bug #1881108
|
Unity driver `bug #1881108
|
||||||
<https://bugs.launchpad.net/cinder/+bug/1881108>`_: Fix leaving leftover
|
<https://bugs.launchpad.net/cinder/+bug/1881108>`_: Fixed leaving
|
||||||
devices on the host when validation of the attached volume fails on some
|
leftover devices on the host when validation of the attached volume
|
||||||
cloning cases and create volume from snapshot.
|
fails on some cloning cases and create volume from snapshot.
|
||||||
- |
|
- |
|
||||||
Kaminario driver `bug #1881108
|
Kaminario driver `bug #1881108
|
||||||
<https://bugs.launchpad.net/cinder/+bug/1881108>`_: Fix leaving leftover
|
<https://bugs.launchpad.net/cinder/+bug/1881108>`_: Fixed leaving
|
||||||
devices on the host when validation of the attached volume fails on some
|
leftover devices on the host when validation of the attached volume
|
||||||
cloning cases and create volume from snapshot.
|
fails on some cloning cases and create volume from snapshot.
|
||||||
|
|
||||||
Creating the note
|
Creating the note
|
||||||
-----------------
|
-----------------
|
||||||
|
@ -27,7 +27,7 @@ template: |
|
|||||||
a Cinder backup service can perform using the ``backup_max_operations``
|
a Cinder backup service can perform using the ``backup_max_operations``
|
||||||
configuration option.
|
configuration option.
|
||||||
- |
|
- |
|
||||||
RBD driver: Add support for volume manage and unmanage operations.
|
RBD driver: Added support for volume manage and unmanage operations.
|
||||||
issues:
|
issues:
|
||||||
- |
|
- |
|
||||||
List known issues here, or remove this section. All of the list items in
|
List known issues here, or remove this section. All of the list items in
|
||||||
@ -71,12 +71,12 @@ template: |
|
|||||||
available in another section, such as the prelude. This may mean repeating
|
available in another section, such as the prelude. This may mean repeating
|
||||||
some details. Examples for core code fixes, and driver fixes:
|
some details. Examples for core code fixes, and driver fixes:
|
||||||
- |
|
- |
|
||||||
`Bug #1889758 <https://bugs.launchpad.net/cinder/+bug/1889758>`_: Fix
|
`Bug #1889758 <https://bugs.launchpad.net/cinder/+bug/1889758>`_: Fixed
|
||||||
revert to snapshot not working for non admin users when using the
|
revert to snapshot not working for non admin users when using the
|
||||||
snapshot's name.
|
snapshot's name.
|
||||||
- |
|
- |
|
||||||
Brocade driver `bug #1866860
|
Brocade driver `bug #1866860
|
||||||
<https://bugs.launchpad.net/cinder/+bug/1889758>`_: Fix
|
<https://bugs.launchpad.net/cinder/+bug/1889758>`_: Fixed
|
||||||
``AttributeError`` when using ``REST_HTTP`` or ``REST_HTTPS`` as the
|
``AttributeError`` when using ``REST_HTTP`` or ``REST_HTTPS`` as the
|
||||||
``fc_southbound_protocol`` option and an exception is raised by the
|
``fc_southbound_protocol`` option and an exception is raised by the
|
||||||
client.
|
client.
|
||||||
|
Loading…
Reference in New Issue
Block a user