Merge "Add OPNFV Verified VNF Badge test instructions"
[vnfrqts/requirements.git] / release-requirement-changes.rst.jinja2
1 .. Modifications Copyright © 2017-2018 AT&T Intellectual Property.
2
3 .. Licensed under the Creative Commons License, Attribution 4.0 Intl.
4    (the "License"); you may not use this documentation except in compliance
5    with the License. You may obtain a copy of the License at
6
7 .. https://creativecommons.org/licenses/by/4.0/
8
9 .. Unless required by applicable law or agreed to in writing, software
10    distributed under the License is distributed on an "AS IS" BASIS,
11    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12    See the License for the specific language governing permissions and
13    limitations under the License.
14
15
16 Requirement Changes Introduced in {{ current_version|title }}
17 ========================================================
18
19 This document summarizes the requirement changes by section that were
20 introduced between the {{ prior_version|title }} release and
21 {{ current_version|title }} release. Click on the requirement number to
22 navigate to the
23
24 .. contents::
25     :depth: 2
26
27 Summary of Changes
28 ------------------
29
30 * **Requirements Added:** {{ num_added }}
31 * **Requirements Changed:** {{ num_changed }}
32 * **Requirements Removed:** {{ num_removed }}
33
34 {% for section_change in changes %}
35 {{ section_change.section_path }}
36 {{ "-"*section_change.section_path|length }}
37
38 {% if section_change.added %}
39 Requirements Added
40 ~~~~~~~~~~~~~~~~~~
41     {% for req in section_change.added %}
42
43 .. container:: note
44
45     :need:`{{ req.id }}`
46
47 {{ req.description|indent(first=True)}}
48     {% endfor %}
49 {% endif -%}
50
51 {% if section_change.updated %}
52 Requirements Changed
53 ~~~~~~~~~~~~~~~~~~~~
54     {% for req in section_change.updated %}
55
56 .. container:: note
57
58     :need:`{{ req.id }}`
59
60 {{ req.description|indent(first=True)}}
61     {% endfor %}
62 {% endif -%}
63
64 {% if section_change.removed %}
65 Requirements Removed
66 ~~~~~~~~~~~~~~~~~~~~
67     {% for req in section_change.removed %}
68
69 .. container:: note
70
71     {{ req.id }}
72
73 {{ req.description|indent(first=True)}}
74     {% endfor %}
75 {% endif -%}
76
77 {% endfor %}