Skip to content

Commit ed4ba18

Browse files
authored
chore(release notes): re-add jira2asciidoc.yml file in a new location (redhat-developer#694)
1 parent 42f0c49 commit ed4ba18

File tree

2 files changed

+95
-1
lines changed

2 files changed

+95
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
---
2+
jira:
3+
server: 'https://issues.redhat.com'
4+
product:
5+
version:
6+
minor_glob: 1.3.*
7+
patch: 1.3
8+
sections:
9+
- id: new-features
10+
title: New features
11+
description: |
12+
This section highlights new features in {product} {product-version}.
13+
query: >
14+
project = "Red Hat Internal Developer Platform"
15+
AND "Release Note Status" = "Done"
16+
AND level is EMPTY
17+
AND status in (Closed, "Release Pending")
18+
AND "Release Note Type" in ("Feature", "Enhancement")
19+
AND (fixVersion ~ "{version_minor_glob}" OR fixVersion = "{version_patch}")
20+
ORDER BY key
21+
template: without-jira-link
22+
- id: breaking-changes
23+
title: Breaking changes
24+
description: |
25+
This section lists breaking changes in {product} {product-version}.
26+
query: >
27+
project = "Red Hat Internal Developer Platform"
28+
AND "Release Note Status" = "Done"
29+
AND level is EMPTY
30+
AND status in (Closed, "Release Pending")
31+
AND "Release Note Type" in ("Removed Functionality")
32+
AND (fixVersion ~ "{version_minor_glob}" OR fixVersion = "{version_patch}")
33+
ORDER BY key
34+
template: with-jira-link
35+
- id: deprecated-functionalities
36+
title: Deprecated functionalities
37+
description: |
38+
This section lists deprecated functionalities in {product} {product-version}.
39+
query: >
40+
project = "Red Hat Internal Developer Platform"
41+
AND "Release Note Status" = "Done"
42+
AND level is EMPTY
43+
AND status in (Closed, "Release Pending")
44+
AND "Release Note Type" in ("Deprecated Functionality")
45+
AND (fixVersion ~ "{version_minor_glob}" OR fixVersion = "{version_patch}")
46+
ORDER BY key
47+
template: with-jira-link
48+
- id: technology-preview
49+
title: Technology Preview
50+
description: |
51+
This section lists Technology Preview features in {product} {product-version}.
52+
53+
[IMPORTANT]
54+
====
55+
Technology Preview features provide early access to upcoming product innovations, enabling you to test functionality and provide feedback during the development process.
56+
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.
57+
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.
58+
See: link:https://access.redhat.com/support/offerings/techpreview/[Technology Preview support scope].
59+
====
60+
query: >
61+
project = "Red Hat Internal Developer Platform"
62+
AND "Release Note Status" = "Done"
63+
AND level is EMPTY
64+
AND status in (Closed, "Release Pending")
65+
AND "Release Note Type" in ("Developer Preview", "Technology Preview")
66+
AND (fixVersion ~ "{version_minor_glob}" OR fixVersion = "{version_patch}")
67+
ORDER BY key
68+
template: with-jira-link
69+
- id: fixed-issues
70+
title: Fixed issues
71+
description: |
72+
This section lists issues fixed in {product} {product-version}.
73+
query: >
74+
project = "Red Hat Internal Developer Platform"
75+
AND "Release Note Status" = "Done"
76+
AND level is EMPTY
77+
AND status in (Closed, "Release Pending")
78+
AND "Release Note Type" = "Bug Fix"
79+
AND (fixVersion ~ "{version_minor_glob}" OR fixVersion = "{version_patch}")
80+
ORDER BY key
81+
template: with-jira-link
82+
- id: known-issues
83+
title: Known issues
84+
description: |
85+
This section lists known issues in {product} {product-version}.
86+
query: >
87+
project = "Red Hat Internal Developer Platform"
88+
AND "Release Note Status" = "Done"
89+
AND level is EMPTY
90+
AND "Release Note Type" in ("Known Issue")
91+
AND affectedVersion <= "{version_patch}"
92+
AND (fixVersion > "{version_patch}" OR fixVersion is EMPTY)
93+
ORDER BY key DESC
94+
template: with-jira-link

Diff for: modules/release-notes/single-source-release-notes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
)
3939
# Load configuration file
4040
with open(
41-
root_dir + '/jira2asciidoc.yml',
41+
modules_dir + '/single-source-release-notes.jira2asciidoc.yml',
4242
'r'
4343
) as file:
4444
config = yaml.safe_load(file)

0 commit comments

Comments
 (0)