Petr Michalec | 1af73a3 | 2017-07-11 13:09:41 +0200 | [diff] [blame] | 1 | --- |
| 2 | # Usage: |
| 3 | # |
| 4 | # reno -qd .releasenotes list |
| 5 | # reno -qd .releasenotes new slug-title --edit |
| 6 | # reno -qd .releasenotes report --no-show-source |
| 7 | |
| 8 | # Change prelude_section_name to 'summary' from default value prelude |
| 9 | prelude_section_name: summary |
| 10 | show_source: False |
| 11 | sections: |
OlgaGusarenko | 30de2dc | 2017-08-21 14:44:27 +0300 | [diff] [blame] | 12 | - [features, New features] |
| 13 | - [upgrades, Upgrade notes] |
| 14 | - [deprecations, Deprecation notes] |
| 15 | - [fixes, Bug fixes] |
| 16 | - [others, Other notes] |
Petr Michalec | 1af73a3 | 2017-07-11 13:09:41 +0200 | [diff] [blame] | 17 | template: | |
| 18 | --- |
| 19 | # Author the following sections or remove the section if it is not related. |
| 20 | # Use one release note per a feature. |
| 21 | # |
| 22 | # If you miss a section from the list below, please first submit a review |
| 23 | # adding it to .releasenotes/config.yaml. |
| 24 | # |
OlgaGusarenko | 30de2dc | 2017-08-21 14:44:27 +0300 | [diff] [blame] | 25 | # Format content with reStructuredText (RST). |
| 26 | # **Formatting examples:** |
| 27 | # - | |
| 28 | # This is a brief description of the feature. It may include a |
| 29 | # number of components: |
| 30 | # |
| 31 | # * List item 1 |
| 32 | # * List item 2. |
| 33 | # This code block below will appear as part of the list item 2: |
| 34 | # |
| 35 | # .. code-block:: yaml |
| 36 | # |
| 37 | # classes: |
| 38 | # - system.class.to.load |
| 39 | # |
| 40 | # The code block below will appear on the same level as the feature |
| 41 | # description: |
| 42 | # |
| 43 | # .. code-block:: text |
| 44 | # |
| 45 | # provide model/formula pillar snippets |
| 46 | |
| 47 | |
Petr Michalec | 1af73a3 | 2017-07-11 13:09:41 +0200 | [diff] [blame] | 48 | summary: > |
| 49 | This section is not mandatory. Use it to highlight the change. |
| 50 | |
| 51 | features: |
OlgaGusarenko | 30de2dc | 2017-08-21 14:44:27 +0300 | [diff] [blame] | 52 | - Use the list to record summary of **NEW** features |
| 53 | - Provide detailed description of the feature indicating the use cases |
| 54 | when users benefit from using it |
| 55 | - Explain how the feature integrates into the overall reference |
| 56 | architecture of a deployment. |
| 57 | - Provide steps to deploy the feature (if the procedure is complicated |
| 58 | indicate during what stage of the deployment workflow it should be |
| 59 | deployed). |
| 60 | - Indicate limitations or incompatibility with other versions, if applicable. |
| 61 | - Provide a brief overview of how to use the feature after installation |
| 62 | (Day2 operations). |
| 63 | - Provide troubleshooting information, if any. |
| 64 | - Provide disaster recovery information (in case of hardware or software |
| 65 | failure.) |
Petr Michalec | 1af73a3 | 2017-07-11 13:09:41 +0200 | [diff] [blame] | 66 | |
OlgaGusarenko | 30de2dc | 2017-08-21 14:44:27 +0300 | [diff] [blame] | 67 | upgrades: |
| 68 | - Use the list to record summary of an **improvement** to an existing |
| 69 | functionality/feature |
| 70 | - Document how to use a feature. |
| 71 | - Document the related upgrade instructions. |
| 72 | - Indicate limitations, if applicable. |
Petr Michalec | 1af73a3 | 2017-07-11 13:09:41 +0200 | [diff] [blame] | 73 | |
OlgaGusarenko | 30de2dc | 2017-08-21 14:44:27 +0300 | [diff] [blame] | 74 | deprecations: |
| 75 | - Use the list to record deprecated features. |
| 76 | - Explain the reason of deprecation. |
| 77 | - Point to the functionality that can be used instead. |
Petr Michalec | 1af73a3 | 2017-07-11 13:09:41 +0200 | [diff] [blame] | 78 | |
| 79 | fixes: |
OlgaGusarenko | 30de2dc | 2017-08-21 14:44:27 +0300 | [diff] [blame] | 80 | - Use the list to record summary of a bug fix for blocker, critical, |
| 81 | and/or customer-found issues. |
| 82 | - Provide a brief summary of what has been fixed. |
Petr Michalec | 1af73a3 | 2017-07-11 13:09:41 +0200 | [diff] [blame] | 83 | |
OlgaGusarenko | 30de2dc | 2017-08-21 14:44:27 +0300 | [diff] [blame] | 84 | others: |
| 85 | - Author any additional notes. Use this section if note is not related to |
| 86 | any of the common sections above. |
Petr Michalec | 1af73a3 | 2017-07-11 13:09:41 +0200 | [diff] [blame] | 87 | |