-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjira2asciidoc.yml
107 lines (106 loc) · 4.35 KB
/
jira2asciidoc.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
---
jira:
server: 'https://issues.redhat.com'
product:
version:
minor_glob: 1.3.*
patch: 1.3
sections:
- id: new-features
title: New features
description: |
This section highlights new features in {product} {product-version}.
query: >
project = "Red Hat Internal Developer Platform"
AND "Release Note Status" = "Done"
AND level is EMPTY
AND status in (Closed, "Release Pending")
AND "Release Note Type" in ("Feature", "Enhancement")
AND (fixVersion ~ "{version_minor_glob}" OR fixVersion = "{version_patch}")
ORDER BY key
template: without-jira-link
- id: breaking-changes
title: Breaking changes
description: |
This section lists breaking changes in {product} {product-version}.
query: >
project = "Red Hat Internal Developer Platform"
AND "Release Note Status" = "Done"
AND level is EMPTY
AND status in (Closed, "Release Pending")
AND "Release Note Type" in ("Removed Functionality")
AND (fixVersion ~ "{version_minor_glob}" OR fixVersion = "{version_patch}")
ORDER BY key
template: with-jira-link
- id: deprecated-functionalities
title: Deprecated functionalities
description: |
This section lists deprecated functionalities in {product} {product-version}.
query: >
project = "Red Hat Internal Developer Platform"
AND "Release Note Status" = "Done"
AND level is EMPTY
AND status in (Closed, "Release Pending")
AND "Release Note Type" in ("Deprecated Functionality")
AND (fixVersion ~ "{version_minor_glob}" OR fixVersion = "{version_patch}")
ORDER BY key
template: with-jira-link
- id: technology-preview
title: Technology Preview
description: |
This section lists Technology Preview features in {product} {product-version}.
[IMPORTANT]
====
Technology Preview features provide early access to upcoming product innovations, enabling you to test functionality and provide feedback during the development process.
However, these features are not fully supported under Red Hat Subscription Level Agreements, may not be functionally complete, and are not intended for production use.
As Red Hat considers making future iterations of Technology Preview features generally available, we will attempt to resolve any issues that customers experience when using these features.
See: link:https://access.redhat.com/support/offerings/techpreview/[Technology Preview support scope].
====
query: >
project = "Red Hat Internal Developer Platform"
AND "Release Note Status" = "Done"
AND level is EMPTY
AND status in (Closed, "Release Pending")
AND "Release Note Type" in ("Developer Preview", "Technology Preview")
AND (fixVersion ~ "{version_minor_glob}" OR fixVersion = "{version_patch}")
ORDER BY key
template: with-jira-link
- id: fixed-security-issues
title: Fixed security issues
description: |
This section lists security issues fixed in {product} {product-version}.
query: >
project = "Red Hat Internal Developer Platform"
AND "Release Note Status" = "Done"
AND level is EMPTY
AND status in (Closed, "Release Pending")
AND "Release Note Type" in ("CVE - Common Vulnerabilities and Exposures")
AND (fixVersion ~ "{version_minor_glob}" OR fixVersion = "{version_patch}")
ORDER BY key
template: security
- id: fixed-issues
title: Fixed issues
description: |
This section lists issues fixed in {product} {product-version}.
query: >
project = "Red Hat Internal Developer Platform"
AND "Release Note Status" = "Done"
AND level is EMPTY
AND status in (Closed, "Release Pending")
AND "Release Note Type" = "Bug Fix"
AND (fixVersion ~ "{version_minor_glob}" OR fixVersion = "{version_patch}")
ORDER BY key
template: with-jira-link
- id: known-issues
title: Known issues
description: |
This section lists known issues in {product} {product-version}.
query: >
project = "Red Hat Internal Developer Platform"
AND "Release Note Status" = "Done"
AND level is EMPTY
AND "Release Note Type" in ("Known Issue")
AND affectedVersion <= "{version_patch}"
AND (fixVersion > "{version_patch}" OR fixVersion is EMPTY)
ORDER BY key DESC
template: with-jira-link