releasehx 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/README.adoc +2915 -0
- data/bin/releasehx +7 -0
- data/bin/rhx +7 -0
- data/bin/rhx-mcp +7 -0
- data/bin/sourcerer +32 -0
- data/build/docs/CNAME +1 -0
- data/build/docs/Gemfile.lock +95 -0
- data/build/docs/_config.yml +36 -0
- data/build/docs/config-reference.adoc +4104 -0
- data/build/docs/config-reference.json +1546 -0
- data/build/docs/index.adoc +2915 -0
- data/build/docs/landing.adoc +21 -0
- data/build/docs/manpage.adoc +68 -0
- data/build/docs/releasehx.1 +281 -0
- data/build/docs/releasehx_readme.html +367 -0
- data/build/docs/sample-config.adoc +9 -0
- data/build/docs/sample-config.yml +251 -0
- data/build/docs/schemagraphy_readme.html +0 -0
- data/build/docs/sourcerer_readme.html +46 -0
- data/build/snippets/helpscreen.txt +29 -0
- data/lib/docopslab/mcp/asset_packager.rb +30 -0
- data/lib/docopslab/mcp/manifest.rb +67 -0
- data/lib/docopslab/mcp/resource_pack.rb +46 -0
- data/lib/docopslab/mcp/server.rb +92 -0
- data/lib/docopslab/mcp.rb +6 -0
- data/lib/releasehx/cli.rb +937 -0
- data/lib/releasehx/configuration.rb +215 -0
- data/lib/releasehx/generated.rb +17 -0
- data/lib/releasehx/helpers.rb +58 -0
- data/lib/releasehx/mcp/asset_packager.rb +21 -0
- data/lib/releasehx/mcp/assets/agent-config-guide.md +178 -0
- data/lib/releasehx/mcp/assets/config-def.yml +1426 -0
- data/lib/releasehx/mcp/assets/config-reference.adoc +4104 -0
- data/lib/releasehx/mcp/assets/config-reference.json +1546 -0
- data/lib/releasehx/mcp/assets/sample-config.yml +251 -0
- data/lib/releasehx/mcp/manifest.rb +18 -0
- data/lib/releasehx/mcp/resource_pack.rb +26 -0
- data/lib/releasehx/mcp/server.rb +57 -0
- data/lib/releasehx/mcp.rb +7 -0
- data/lib/releasehx/ops/check_ops.rb +136 -0
- data/lib/releasehx/ops/draft_ops.rb +173 -0
- data/lib/releasehx/ops/enrich_ops.rb +221 -0
- data/lib/releasehx/ops/template_ops.rb +61 -0
- data/lib/releasehx/ops/write_ops.rb +124 -0
- data/lib/releasehx/rest/clients/github.yml +46 -0
- data/lib/releasehx/rest/clients/gitlab.yml +31 -0
- data/lib/releasehx/rest/clients/jira.yml +31 -0
- data/lib/releasehx/rest/yaml_client.rb +418 -0
- data/lib/releasehx/rhyml/adapter.rb +740 -0
- data/lib/releasehx/rhyml/change.rb +167 -0
- data/lib/releasehx/rhyml/liquid.rb +13 -0
- data/lib/releasehx/rhyml/loaders.rb +37 -0
- data/lib/releasehx/rhyml/mappings/github.yaml +60 -0
- data/lib/releasehx/rhyml/mappings/gitlab.yaml +73 -0
- data/lib/releasehx/rhyml/mappings/jira.yaml +29 -0
- data/lib/releasehx/rhyml/mappings/verb_past_tenses.yml +98 -0
- data/lib/releasehx/rhyml/release.rb +144 -0
- data/lib/releasehx/rhyml.rb +15 -0
- data/lib/releasehx/sgyml/helpers.rb +45 -0
- data/lib/releasehx/transforms/adf_to_markdown.rb +307 -0
- data/lib/releasehx/version.rb +7 -0
- data/lib/releasehx.rb +69 -0
- data/lib/schemagraphy/attribute_resolver.rb +48 -0
- data/lib/schemagraphy/cfgyml/definition.rb +90 -0
- data/lib/schemagraphy/cfgyml/doc_builder.rb +52 -0
- data/lib/schemagraphy/cfgyml/path_reference.rb +24 -0
- data/lib/schemagraphy/data_query/json_pointer.rb +42 -0
- data/lib/schemagraphy/loader.rb +59 -0
- data/lib/schemagraphy/regexp_utils.rb +215 -0
- data/lib/schemagraphy/safe_expression.rb +189 -0
- data/lib/schemagraphy/schema_utils.rb +124 -0
- data/lib/schemagraphy/tag_utils.rb +32 -0
- data/lib/schemagraphy/templating.rb +104 -0
- data/lib/schemagraphy.rb +17 -0
- data/lib/sourcerer/builder.rb +120 -0
- data/lib/sourcerer/jekyll/bootstrapper.rb +78 -0
- data/lib/sourcerer/jekyll/liquid/file_system.rb +74 -0
- data/lib/sourcerer/jekyll/liquid/filters.rb +215 -0
- data/lib/sourcerer/jekyll/liquid/tags.rb +44 -0
- data/lib/sourcerer/jekyll/monkeypatches.rb +73 -0
- data/lib/sourcerer/jekyll.rb +26 -0
- data/lib/sourcerer/plaintext_converter.rb +75 -0
- data/lib/sourcerer/templating.rb +190 -0
- data/lib/sourcerer.rb +322 -0
- data/specs/data/api-client-schema.yaml +160 -0
- data/specs/data/config-def.yml +1426 -0
- data/specs/data/mcp-manifest.yml +50 -0
- data/specs/data/rhyml-mapping-schema.yaml +410 -0
- data/specs/data/rhyml-schema.yaml +152 -0
- metadata +376 -0
|
@@ -0,0 +1,4104 @@
|
|
|
1
|
+
:page-layout: default
|
|
2
|
+
:page-permalink: /config-reference/
|
|
3
|
+
:page-nav_order: 2
|
|
4
|
+
:page-title: Configuration Reference
|
|
5
|
+
|
|
6
|
+
[[conf_ppty_DOLLARSIGN_meta,config.$meta]]
|
|
7
|
+
$meta::
|
|
8
|
+
+
|
|
9
|
+
--
|
|
10
|
+
The metadata settings for the configuration file.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
[horizontal]
|
|
14
|
+
path;; `xref:conf_ppty_DOLLARSIGN_meta[config.$meta]`
|
|
15
|
+
--
|
|
16
|
+
|
|
17
|
+
[[conf_ppty_DOLLARSIGN_meta_markup,config.$meta.markup]]
|
|
18
|
+
$meta.markup:::
|
|
19
|
+
+
|
|
20
|
+
--
|
|
21
|
+
The markup format used in strings in this configuration file.
|
|
22
|
+
May be `asciidoc` or `markdown`.
|
|
23
|
+
|
|
24
|
+
This probably matters less than you might imagine, as ReleaseHx will use AsciiDoc-style `+++_italic_+++` and `+++*bold*+++` syntax, and there should not be much call for divergent syntax like for links or images.
|
|
25
|
+
All default values are cross-compatible.
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
[horizontal]
|
|
29
|
+
type;; String
|
|
30
|
+
default;;
|
|
31
|
+
+
|
|
32
|
+
`+++markdown+++`
|
|
33
|
+
path;; `xref:conf_ppty_DOLLARSIGN_meta_markup[config.$meta.markup]`
|
|
34
|
+
--
|
|
35
|
+
|
|
36
|
+
[[conf_ppty_DOLLARSIGN_meta_slug_type,config.$meta.slug_type]]
|
|
37
|
+
$meta.slug_type:::
|
|
38
|
+
+
|
|
39
|
+
--
|
|
40
|
+
The format of slugs used in your application, for use with `sluggerize` Liquid filter.
|
|
41
|
+
|
|
42
|
+
Must be `kebab` (ex: `hyphen-delimited-slug`) or `snake` (ex: `underscore_delimited_slug`).
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
[horizontal]
|
|
46
|
+
type;; String
|
|
47
|
+
default;;
|
|
48
|
+
+
|
|
49
|
+
`+++kebab+++`
|
|
50
|
+
path;; `xref:conf_ppty_DOLLARSIGN_meta_slug_type[config.$meta.slug_type]`
|
|
51
|
+
--
|
|
52
|
+
|
|
53
|
+
[[conf_ppty_DOLLARSIGN_meta_tplt_lang,config.$meta.tplt_lang]]
|
|
54
|
+
$meta.tplt_lang:::
|
|
55
|
+
+
|
|
56
|
+
--
|
|
57
|
+
The default format used in fields of `Template` type.
|
|
58
|
+
Must be `liquid` or `erb`.
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
[horizontal]
|
|
62
|
+
type;; String
|
|
63
|
+
default;;
|
|
64
|
+
+
|
|
65
|
+
`+++liquid+++`
|
|
66
|
+
path;; `xref:conf_ppty_DOLLARSIGN_meta_tplt_lang[config.$meta.tplt_lang]`
|
|
67
|
+
--
|
|
68
|
+
|
|
69
|
+
[[conf_ppty_origin,config.origin]]
|
|
70
|
+
origin::
|
|
71
|
+
+
|
|
72
|
+
--
|
|
73
|
+
The API or file source for the issues.
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
[horizontal]
|
|
77
|
+
path;; `xref:conf_ppty_origin[config.origin]`
|
|
78
|
+
--
|
|
79
|
+
|
|
80
|
+
[[conf_ppty_origin_source,config.origin.source]]
|
|
81
|
+
origin.source:::
|
|
82
|
+
+
|
|
83
|
+
--
|
|
84
|
+
The type of API or file to use for the issues source.
|
|
85
|
+
May be `jira`, `github`, `gitlab`, or `rhyml`.
|
|
86
|
+
|
|
87
|
+
The `jira`, `github`, and `gitlab` types are all REST APIs that return an individualized JSON payload upon request, to be converted to RHYML format.
|
|
88
|
+
|
|
89
|
+
Alternately, you may use a file directly written in <<rhyml,RHYML-style YAML>> (`rhyml`).
|
|
90
|
+
|
|
91
|
+
If you wish to mix Git and API sources, this field should still reference the API.
|
|
92
|
+
|
|
93
|
+
Custom APIs are also available, but you will need to create a custom client in the `_apis` directory (<<conf_ppty_paths_api_clients_dir>>), and a custom mapping in the `_mappings` directory (<<conf_ppty_paths_mappings_dir).
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
[horizontal]
|
|
97
|
+
type;; String
|
|
98
|
+
default;;
|
|
99
|
+
+
|
|
100
|
+
`+++rhyml+++`
|
|
101
|
+
path;; `xref:conf_ppty_origin_source[config.origin.source]`
|
|
102
|
+
--
|
|
103
|
+
|
|
104
|
+
[[conf_ppty_origin_project,config.origin.project]]
|
|
105
|
+
origin.project:::
|
|
106
|
+
+
|
|
107
|
+
--
|
|
108
|
+
The string used to identify the project in the remote API.
|
|
109
|
+
Only required if the API requires a project identifier.
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
[horizontal]
|
|
113
|
+
type;; Slug
|
|
114
|
+
path;; `xref:conf_ppty_origin_project[config.origin.project]`
|
|
115
|
+
--
|
|
116
|
+
|
|
117
|
+
[[conf_ppty_origin_href,config.origin.href]]
|
|
118
|
+
origin.href:::
|
|
119
|
+
+
|
|
120
|
+
--
|
|
121
|
+
The local or remote URI for the API or JSON file.
|
|
122
|
+
Either the REST API endpoint path or the path to a local or remote JSON file containing the issues data.
|
|
123
|
+
|
|
124
|
+
This field may be templated, accepting Liquid placeholders like `{{ proj }}` (the sibling `project` property) or `{{ version }}` (the argued release version code).
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
[horizontal]
|
|
128
|
+
type;; URI
|
|
129
|
+
templating;; immediate rendering
|
|
130
|
+
path;; `xref:conf_ppty_origin_href[config.origin.href]`
|
|
131
|
+
--
|
|
132
|
+
|
|
133
|
+
[[conf_ppty_origin_auth,config.origin.auth]]
|
|
134
|
+
origin.auth:::
|
|
135
|
+
+
|
|
136
|
+
--
|
|
137
|
+
Properties related to API authentication.
|
|
138
|
+
|
|
139
|
+
This block should be unnecessary if you use a supported API (Jira, GitHub, GitLab), unless you wish to use differently named environment variables for API credentials.
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
[horizontal]
|
|
143
|
+
path;; `xref:conf_ppty_origin_auth[config.origin.auth]`
|
|
144
|
+
--
|
|
145
|
+
|
|
146
|
+
[[conf_ppty_origin_auth_mode,config.origin.auth.mode]]
|
|
147
|
+
origin.auth.mode::::
|
|
148
|
+
+
|
|
149
|
+
--
|
|
150
|
+
The type of authentication to use.
|
|
151
|
+
|
|
152
|
+
Options are: `basic`, `token`, `bearer`, `header`, `query`, `none`.
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
[horizontal]
|
|
156
|
+
path;; `xref:conf_ppty_origin_auth_mode[config.origin.auth.mode]`
|
|
157
|
+
--
|
|
158
|
+
|
|
159
|
+
[[conf_ppty_origin_auth_header,config.origin.auth.header]]
|
|
160
|
+
origin.auth.header::::
|
|
161
|
+
+
|
|
162
|
+
--
|
|
163
|
+
The header to use for authentication.
|
|
164
|
+
Only used if `origin.auth.mode` is `header`.
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
[horizontal]
|
|
168
|
+
type;; String
|
|
169
|
+
path;; `xref:conf_ppty_origin_auth_header[config.origin.auth.header]`
|
|
170
|
+
--
|
|
171
|
+
|
|
172
|
+
[[conf_ppty_origin_auth_cred_uri,config.origin.auth.cred_uri]]
|
|
173
|
+
origin.auth.cred_uri::::
|
|
174
|
+
+
|
|
175
|
+
--
|
|
176
|
+
The location of the API credentials file for declaring API authentication arguments without environment variables.
|
|
177
|
+
|
|
178
|
+
The value can be a local path with read access or an HTTP path (not recommended unless ReleaseHx is always executed on an organizational VPN).
|
|
179
|
+
|
|
180
|
+
The default order of credential strings defaults to:
|
|
181
|
+
|
|
182
|
+
....
|
|
183
|
+
API_KEY
|
|
184
|
+
USERNAME
|
|
185
|
+
ORGANIZATION
|
|
186
|
+
....
|
|
187
|
+
|
|
188
|
+
However, this format can be customized using <<conf_ppty_cred_key_line>>, <<conf_ppty_cred_user_line>>, and <<conf_ppty_cred_org_line>>.
|
|
189
|
+
|
|
190
|
+
Note that each of these lines can be overridden with an environment variable: <<conf_ppty_origin_auth_key_env>>, <<conf_ppty_origin_auth_user_env>>, and <<conf_ppty_origin_auth_org_env>>.
|
|
191
|
+
|
|
192
|
+
[IMPORTANT]
|
|
193
|
+
This file should probably be added to `.gitignore` in your application repo.
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
[horizontal]
|
|
197
|
+
type;; URI
|
|
198
|
+
default;;
|
|
199
|
+
+
|
|
200
|
+
`+++RELEASEHX_API_CRED+++`
|
|
201
|
+
path;; `xref:conf_ppty_origin_auth_cred_uri[config.origin.auth.cred_uri]`
|
|
202
|
+
--
|
|
203
|
+
|
|
204
|
+
[[conf_ppty_origin_auth_cred_key_line,config.origin.auth.cred_key_line]]
|
|
205
|
+
origin.auth.cred_key_line::::
|
|
206
|
+
+
|
|
207
|
+
--
|
|
208
|
+
Number of the line of the credentials file (at <<conf_ppty_origin_auth_cred_uri>>) on which the key or token string appears.
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
[horizontal]
|
|
212
|
+
type;; Number
|
|
213
|
+
default;;
|
|
214
|
+
+
|
|
215
|
+
`+++1+++`
|
|
216
|
+
path;; `xref:conf_ppty_origin_auth_cred_key_line[config.origin.auth.cred_key_line]`
|
|
217
|
+
--
|
|
218
|
+
|
|
219
|
+
[[conf_ppty_origin_auth_cred_user_line,config.origin.auth.cred_user_line]]
|
|
220
|
+
origin.auth.cred_user_line::::
|
|
221
|
+
+
|
|
222
|
+
--
|
|
223
|
+
Number of the line of the credentials file (at <<conf_ppty_origin_auth_cred_uri>>) on which the user string appears.
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
[horizontal]
|
|
227
|
+
type;; Number
|
|
228
|
+
default;;
|
|
229
|
+
+
|
|
230
|
+
`+++2+++`
|
|
231
|
+
path;; `xref:conf_ppty_origin_auth_cred_user_line[config.origin.auth.cred_user_line]`
|
|
232
|
+
--
|
|
233
|
+
|
|
234
|
+
[[conf_ppty_origin_auth_cred_org_line,config.origin.auth.cred_org_line]]
|
|
235
|
+
origin.auth.cred_org_line::::
|
|
236
|
+
+
|
|
237
|
+
--
|
|
238
|
+
Number of the line of the credentials file (at <<conf_ppty_origin_auth_cred_uri>>) on which the org string appears.
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
[horizontal]
|
|
242
|
+
type;; Number
|
|
243
|
+
default;;
|
|
244
|
+
+
|
|
245
|
+
`+++3+++`
|
|
246
|
+
path;; `xref:conf_ppty_origin_auth_cred_org_line[config.origin.auth.cred_org_line]`
|
|
247
|
+
--
|
|
248
|
+
|
|
249
|
+
[[conf_ppty_origin_auth_key_env,config.origin.auth.key_env]]
|
|
250
|
+
origin.auth.key_env::::
|
|
251
|
+
+
|
|
252
|
+
--
|
|
253
|
+
Name of the environment variable containing the API key or token.
|
|
254
|
+
Will override the key line in an existing credentials file (see <<conf_ppty_origin_auth_cred_uri>>).
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
[horizontal]
|
|
258
|
+
type;; String
|
|
259
|
+
default;;
|
|
260
|
+
+
|
|
261
|
+
`+++RELEASEHX_API_KEY+++`
|
|
262
|
+
path;; `xref:conf_ppty_origin_auth_key_env[config.origin.auth.key_env]`
|
|
263
|
+
--
|
|
264
|
+
|
|
265
|
+
[[conf_ppty_origin_auth_user_env,config.origin.auth.user_env]]
|
|
266
|
+
origin.auth.user_env::::
|
|
267
|
+
+
|
|
268
|
+
--
|
|
269
|
+
Name of the environment variable containing the API username.
|
|
270
|
+
Will override the user line in an existing credentials file (see <<conf_ppty_origin_auth_cred_uri>>).
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
[horizontal]
|
|
274
|
+
type;; String
|
|
275
|
+
default;;
|
|
276
|
+
+
|
|
277
|
+
`+++RELEASEHX_API_USER+++`
|
|
278
|
+
path;; `xref:conf_ppty_origin_auth_user_env[config.origin.auth.user_env]`
|
|
279
|
+
--
|
|
280
|
+
|
|
281
|
+
[[conf_ppty_origin_auth_org_env,config.origin.auth.org_env]]
|
|
282
|
+
origin.auth.org_env::::
|
|
283
|
+
+
|
|
284
|
+
--
|
|
285
|
+
Name of the environment variable containing the organization credential.
|
|
286
|
+
Will override the org line in an existing credentials file (see <<conf_ppty_origin_auth_cred_uri>>).
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
[horizontal]
|
|
290
|
+
type;; String
|
|
291
|
+
default;;
|
|
292
|
+
+
|
|
293
|
+
`+++RELEASEHX_API_ORG+++`
|
|
294
|
+
path;; `xref:conf_ppty_origin_auth_org_env[config.origin.auth.org_env]`
|
|
295
|
+
--
|
|
296
|
+
|
|
297
|
+
[[conf_ppty_conversions,config.conversions]]
|
|
298
|
+
conversions::
|
|
299
|
+
+
|
|
300
|
+
--
|
|
301
|
+
Details about content origination, as well as markup sources and conversion.
|
|
302
|
+
Used to assist mapping between API source payloads and the corresponding properties of their target RHYML _change_ records.
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
[horizontal]
|
|
306
|
+
path;; `xref:conf_ppty_conversions[config.conversions]`
|
|
307
|
+
--
|
|
308
|
+
|
|
309
|
+
[[conf_ppty_conversions_summ,config.conversions.summ]]
|
|
310
|
+
conversions.summ:::
|
|
311
|
+
+
|
|
312
|
+
--
|
|
313
|
+
The source of the summary (Changelog) content.
|
|
314
|
+
Must be `issue_heading`, `custom_field`, or `commit_message_heading`.
|
|
315
|
+
|
|
316
|
+
If `issue_heading`, the summary or title field will be used.
|
|
317
|
+
If `commit_message_heading`, the first line of the Git commit will be used.
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
[horizontal]
|
|
321
|
+
type;; String
|
|
322
|
+
default;;
|
|
323
|
+
+
|
|
324
|
+
`+++issue+++`
|
|
325
|
+
path;; `xref:conf_ppty_conversions_summ[config.conversions.summ]`
|
|
326
|
+
--
|
|
327
|
+
|
|
328
|
+
[[conf_ppty_conversions_head,config.conversions.head]]
|
|
329
|
+
conversions.head:::
|
|
330
|
+
+
|
|
331
|
+
--
|
|
332
|
+
The source of release-note headlines, when it is not the same as the summary.
|
|
333
|
+
|
|
334
|
+
Unless a `head` is available in the RHYML source, the `summ` will be used.
|
|
335
|
+
By default, ReleaseHx does not generate a `head` property for work items.
|
|
336
|
+
|
|
337
|
+
Potential values: `issue_heading`, `release_note_heading`, or `commit_message_heading`.
|
|
338
|
+
|
|
339
|
+
When set to *`issue_heading`*, the RHYML `head` property will derive from the issue title or summary.
|
|
340
|
+
|
|
341
|
+
When set to *`release_note_heading`* or *`commit_message_heading`*, the `head` property will derive from the first line of the release note or commit message, respectively, so long as it matches the Regular Expression set in `ppty.release_note_heading_pattern`.
|
|
342
|
+
When set to `commit_message_heading`, the RHYML `head` property will derive from the first line of the commit message.
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
[horizontal]
|
|
346
|
+
type;; String
|
|
347
|
+
path;; `xref:conf_ppty_conversions_head[config.conversions.head]`
|
|
348
|
+
--
|
|
349
|
+
|
|
350
|
+
[[conf_ppty_conversions_note,config.conversions.note]]
|
|
351
|
+
conversions.note:::
|
|
352
|
+
+
|
|
353
|
+
--
|
|
354
|
+
The source of the release notes content.
|
|
355
|
+
Must be `issue_body`, `custom_field`, or `commit_message`.
|
|
356
|
+
|
|
357
|
+
Defaults to `issue_body` for GitHub and GitLab, but to `custom_field` for Jira.
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
[horizontal]
|
|
361
|
+
type;; String
|
|
362
|
+
path;; `xref:conf_ppty_conversions_note[config.conversions.note]`
|
|
363
|
+
--
|
|
364
|
+
|
|
365
|
+
[[conf_ppty_conversions_note_custom_field,config.conversions.note_custom_field]]
|
|
366
|
+
conversions.note_custom_field:::
|
|
367
|
+
+
|
|
368
|
+
--
|
|
369
|
+
The name of the custom field to use for the release notes content.
|
|
370
|
+
Only used if `conversions.note` is `custom_field`.
|
|
371
|
+
|
|
372
|
+
This purposely has no default, as you will probably have to look up the actual field ID, which will be something like `customfield_10010`.
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
[horizontal]
|
|
376
|
+
type;; String
|
|
377
|
+
path;; `xref:conf_ppty_conversions_note_custom_field[config.conversions.note_custom_field]`
|
|
378
|
+
--
|
|
379
|
+
|
|
380
|
+
[[conf_ppty_conversions_note_pattern,config.conversions.note_pattern]]
|
|
381
|
+
conversions.note_pattern:::
|
|
382
|
+
+
|
|
383
|
+
--
|
|
384
|
+
The Regular Expressions pattern to match in the body of an issue or commit message, after which all content is considered the release `note` matter.
|
|
385
|
+
|
|
386
|
+
Defaults to a Markdown or AsciiDoc header or HTML comment with the case-insensitive string `release note` in it.
|
|
387
|
+
|
|
388
|
+
Uses Capture group `note` in the Regular Expression to establish the entire note content.
|
|
389
|
+
|
|
390
|
+
See the `conversions.head_pattern` property for details on extracting a heading (`head` in RHYML) from the `note` content.
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
[horizontal]
|
|
394
|
+
type;; RegExp
|
|
395
|
+
default;;
|
|
396
|
+
+
|
|
397
|
+
....
|
|
398
|
+
/^((#|=)+ (Draft )?Release Note.*)|(<!-- (draft )?release note -->)\n(?<note>\w(.|\n)+)/gmi
|
|
399
|
+
....
|
|
400
|
+
path;; `xref:conf_ppty_conversions_note_pattern[config.conversions.note_pattern]`
|
|
401
|
+
--
|
|
402
|
+
|
|
403
|
+
[[conf_ppty_conversions_head_pattern,config.conversions.head_pattern]]
|
|
404
|
+
conversions.head_pattern:::
|
|
405
|
+
+
|
|
406
|
+
--
|
|
407
|
+
The Regular Expressions pattern to match in the `note` text to be used to establish a heading for the note (`head`).
|
|
408
|
+
This text is removed from the `note` value during a draft operation, if the pattern matches.
|
|
409
|
+
|
|
410
|
+
Defaults to a Markdown or AsciiDoc header or HTML comment with the case-insensitive string `release note` in it.
|
|
411
|
+
|
|
412
|
+
The `head` capture group is snipped from text matching this pattern.
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
[horizontal]
|
|
416
|
+
type;; RegExp
|
|
417
|
+
default;;
|
|
418
|
+
+
|
|
419
|
+
....
|
|
420
|
+
/^(?<head>[A-Z].*[^.!])\n\n[A-Z].*/gm
|
|
421
|
+
....
|
|
422
|
+
path;; `xref:conf_ppty_conversions_head_pattern[config.conversions.head_pattern]`
|
|
423
|
+
--
|
|
424
|
+
|
|
425
|
+
[[conf_ppty_conversions_markup,config.conversions.markup]]
|
|
426
|
+
conversions.markup:::
|
|
427
|
+
+
|
|
428
|
+
--
|
|
429
|
+
The origin markup format for notes.
|
|
430
|
+
May be `markdown` or `asciidoc`.
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
[horizontal]
|
|
434
|
+
type;; String
|
|
435
|
+
default;;
|
|
436
|
+
+
|
|
437
|
+
`+++markdown+++`
|
|
438
|
+
path;; `xref:conf_ppty_conversions_markup[config.conversions.markup]`
|
|
439
|
+
--
|
|
440
|
+
|
|
441
|
+
[[conf_ppty_conversions_engine,config.conversions.engine]]
|
|
442
|
+
conversions.engine:::
|
|
443
|
+
+
|
|
444
|
+
--
|
|
445
|
+
The markup converter to use for the issues.
|
|
446
|
+
Defaults to `asciidoctor` for AsciiDoc and `redcarpet` for Markdown.
|
|
447
|
+
Options include `asciidoctor`, `redcarpet`, `commonmarker`, `kramdown`, or `pandoc`.
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
[horizontal]
|
|
451
|
+
type;; String
|
|
452
|
+
path;; `xref:conf_ppty_conversions_engine[config.conversions.engine]`
|
|
453
|
+
--
|
|
454
|
+
|
|
455
|
+
[[conf_ppty_extensions,config.extensions]]
|
|
456
|
+
extensions::
|
|
457
|
+
+
|
|
458
|
+
--
|
|
459
|
+
Default file extensions.
|
|
460
|
+
|
|
461
|
+
[horizontal]
|
|
462
|
+
path;; `xref:conf_ppty_extensions[config.extensions]`
|
|
463
|
+
--
|
|
464
|
+
|
|
465
|
+
[[conf_ppty_extensions_markdown,config.extensions.markdown]]
|
|
466
|
+
extensions.markdown:::
|
|
467
|
+
+
|
|
468
|
+
--
|
|
469
|
+
File extension for Markdown drafts.
|
|
470
|
+
|
|
471
|
+
[horizontal]
|
|
472
|
+
type;; String
|
|
473
|
+
default;;
|
|
474
|
+
+
|
|
475
|
+
`+++md+++`
|
|
476
|
+
path;; `xref:conf_ppty_extensions_markdown[config.extensions.markdown]`
|
|
477
|
+
--
|
|
478
|
+
|
|
479
|
+
[[conf_ppty_extensions_asciidoc,config.extensions.asciidoc]]
|
|
480
|
+
extensions.asciidoc:::
|
|
481
|
+
+
|
|
482
|
+
--
|
|
483
|
+
File extension for AsciiDoc drafts.
|
|
484
|
+
|
|
485
|
+
[horizontal]
|
|
486
|
+
type;; String
|
|
487
|
+
default;;
|
|
488
|
+
+
|
|
489
|
+
`+++adoc+++`
|
|
490
|
+
path;; `xref:conf_ppty_extensions_asciidoc[config.extensions.asciidoc]`
|
|
491
|
+
--
|
|
492
|
+
|
|
493
|
+
[[conf_ppty_extensions_yaml,config.extensions.yaml]]
|
|
494
|
+
extensions.yaml:::
|
|
495
|
+
+
|
|
496
|
+
--
|
|
497
|
+
File extension for YAML drafts.
|
|
498
|
+
|
|
499
|
+
[horizontal]
|
|
500
|
+
type;; String
|
|
501
|
+
default;;
|
|
502
|
+
+
|
|
503
|
+
`+++yml+++`
|
|
504
|
+
path;; `xref:conf_ppty_extensions_yaml[config.extensions.yaml]`
|
|
505
|
+
--
|
|
506
|
+
|
|
507
|
+
[[conf_ppty_types,config.types]]
|
|
508
|
+
types::
|
|
509
|
+
+
|
|
510
|
+
--
|
|
511
|
+
Issue types to include in the release history, in the order of display.
|
|
512
|
+
|
|
513
|
+
List as many as you wish to match up with corresponding metadata at the source.
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
[horizontal]
|
|
517
|
+
type;; Map
|
|
518
|
+
path;; `xref:conf_ppty_types[config.types]`
|
|
519
|
+
--
|
|
520
|
+
|
|
521
|
+
[[conf_ppty_types_label_prefix,config.types.label_prefix]]
|
|
522
|
+
types.label_prefix:::
|
|
523
|
+
+
|
|
524
|
+
--
|
|
525
|
+
The prefix used in issue labels to identify type labels.
|
|
526
|
+
For example, 'type:' would match labels like 'type:feature', 'type:bug'.
|
|
527
|
+
Another common pattern is 'kind:' for labels like 'kind:feature', 'kind:enhancement'.
|
|
528
|
+
|
|
529
|
+
If set to an empty string or null, type detection will only look for direct label matches
|
|
530
|
+
against the configured type slugs (e.g., looking for 'bug', 'feature' labels directly).
|
|
531
|
+
|
|
532
|
+
This setting allows you to customize how your organization names type labels.
|
|
533
|
+
The mapping system will look for labels that start with this prefix to determine the type of each change.
|
|
534
|
+
|
|
535
|
+
Examples:
|
|
536
|
+
|
|
537
|
+
* `type:` matches `type:feature`, `type:bug`
|
|
538
|
+
* `kind:` matches `kind:enhancement`, `kind:defect`
|
|
539
|
+
* `category-` matches `category-feature`, `category-bugfix`
|
|
540
|
+
|
|
541
|
+
When no prefix is configured (empty string), the system will look for labels that directly match
|
|
542
|
+
the `slug` property of each configured type.
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
[horizontal]
|
|
546
|
+
type;; String
|
|
547
|
+
default;;
|
|
548
|
+
+
|
|
549
|
+
`++++++`
|
|
550
|
+
path;; `xref:conf_ppty_types_label_prefix[config.types.label_prefix]`
|
|
551
|
+
--
|
|
552
|
+
|
|
553
|
+
[[conf_ppty_types_feature,config.types.feature]]
|
|
554
|
+
types.feature:::
|
|
555
|
+
+
|
|
556
|
+
--
|
|
557
|
+
A new capability, functionality, or interface element.
|
|
558
|
+
|
|
559
|
+
|
|
560
|
+
[horizontal]
|
|
561
|
+
path;; `xref:conf_ppty_types_feature[config.types.feature]`
|
|
562
|
+
--
|
|
563
|
+
|
|
564
|
+
[[conf_ppty_types_feature_slug,config.types.feature.slug]]
|
|
565
|
+
types.feature.slug::::
|
|
566
|
+
+
|
|
567
|
+
--
|
|
568
|
+
The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.
|
|
569
|
+
|
|
570
|
+
|
|
571
|
+
[horizontal]
|
|
572
|
+
type;; String
|
|
573
|
+
default;;
|
|
574
|
+
+
|
|
575
|
+
`+++feature+++`
|
|
576
|
+
path;; `xref:conf_ppty_types_feature_slug[config.types.feature.slug]`
|
|
577
|
+
--
|
|
578
|
+
|
|
579
|
+
[[conf_ppty_types_feature_text,config.types.feature.text]]
|
|
580
|
+
types.feature.text::::
|
|
581
|
+
+
|
|
582
|
+
--
|
|
583
|
+
The display label for the type in the release history output.
|
|
584
|
+
Defaults to the capitalized key name.
|
|
585
|
+
|
|
586
|
+
|
|
587
|
+
[horizontal]
|
|
588
|
+
type;; String
|
|
589
|
+
default;;
|
|
590
|
+
+
|
|
591
|
+
`+++New feature+++`
|
|
592
|
+
path;; `xref:conf_ppty_types_feature_text[config.types.feature.text]`
|
|
593
|
+
--
|
|
594
|
+
|
|
595
|
+
[[conf_ppty_types_feature_head,config.types.feature.head]]
|
|
596
|
+
types.feature.head::::
|
|
597
|
+
+
|
|
598
|
+
--
|
|
599
|
+
The header for the type in the release history output.
|
|
600
|
+
Defaults in templates to the `text` property pluralized.
|
|
601
|
+
|
|
602
|
+
|
|
603
|
+
[horizontal]
|
|
604
|
+
type;; String
|
|
605
|
+
default;;
|
|
606
|
+
+
|
|
607
|
+
`+++New features+++`
|
|
608
|
+
path;; `xref:conf_ppty_types_feature_head[config.types.feature.head]`
|
|
609
|
+
--
|
|
610
|
+
|
|
611
|
+
[[conf_ppty_types_feature_icon,config.types.feature.icon]]
|
|
612
|
+
types.feature.icon::::
|
|
613
|
+
+
|
|
614
|
+
--
|
|
615
|
+
The icon to use for issues of this type.
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
[horizontal]
|
|
619
|
+
type;; String
|
|
620
|
+
default;;
|
|
621
|
+
+
|
|
622
|
+
`+++plus-square-o+++`
|
|
623
|
+
path;; `xref:conf_ppty_types_feature_icon[config.types.feature.icon]`
|
|
624
|
+
--
|
|
625
|
+
|
|
626
|
+
[[conf_ppty_types_bug,config.types.bug]]
|
|
627
|
+
types.bug:::
|
|
628
|
+
+
|
|
629
|
+
--
|
|
630
|
+
A fix for a previously reported issue.
|
|
631
|
+
|
|
632
|
+
|
|
633
|
+
[horizontal]
|
|
634
|
+
path;; `xref:conf_ppty_types_bug[config.types.bug]`
|
|
635
|
+
--
|
|
636
|
+
|
|
637
|
+
[[conf_ppty_types_bug_slug,config.types.bug.slug]]
|
|
638
|
+
types.bug.slug::::
|
|
639
|
+
+
|
|
640
|
+
--
|
|
641
|
+
The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.
|
|
642
|
+
|
|
643
|
+
|
|
644
|
+
[horizontal]
|
|
645
|
+
type;; String
|
|
646
|
+
default;;
|
|
647
|
+
+
|
|
648
|
+
`+++bug+++`
|
|
649
|
+
path;; `xref:conf_ppty_types_bug_slug[config.types.bug.slug]`
|
|
650
|
+
--
|
|
651
|
+
|
|
652
|
+
[[conf_ppty_types_bug_text,config.types.bug.text]]
|
|
653
|
+
types.bug.text::::
|
|
654
|
+
+
|
|
655
|
+
--
|
|
656
|
+
The display label for the type in the release history output.
|
|
657
|
+
Defaults to the capitalized key name.
|
|
658
|
+
|
|
659
|
+
|
|
660
|
+
[horizontal]
|
|
661
|
+
type;; String
|
|
662
|
+
default;;
|
|
663
|
+
+
|
|
664
|
+
`+++Bug fix+++`
|
|
665
|
+
path;; `xref:conf_ppty_types_bug_text[config.types.bug.text]`
|
|
666
|
+
--
|
|
667
|
+
|
|
668
|
+
[[conf_ppty_types_bug_head,config.types.bug.head]]
|
|
669
|
+
types.bug.head::::
|
|
670
|
+
+
|
|
671
|
+
--
|
|
672
|
+
The header for the type in the release history output.
|
|
673
|
+
Defaults in templates to the `text` property pluralized.
|
|
674
|
+
|
|
675
|
+
|
|
676
|
+
[horizontal]
|
|
677
|
+
type;; String
|
|
678
|
+
default;;
|
|
679
|
+
+
|
|
680
|
+
`+++Bug fixes+++`
|
|
681
|
+
path;; `xref:conf_ppty_types_bug_head[config.types.bug.head]`
|
|
682
|
+
--
|
|
683
|
+
|
|
684
|
+
[[conf_ppty_types_bug_icon,config.types.bug.icon]]
|
|
685
|
+
types.bug.icon::::
|
|
686
|
+
+
|
|
687
|
+
--
|
|
688
|
+
The icon to use for issues of this type.
|
|
689
|
+
|
|
690
|
+
|
|
691
|
+
[horizontal]
|
|
692
|
+
type;; String
|
|
693
|
+
default;;
|
|
694
|
+
+
|
|
695
|
+
`+++bug+++`
|
|
696
|
+
path;; `xref:conf_ppty_types_bug_icon[config.types.bug.icon]`
|
|
697
|
+
--
|
|
698
|
+
|
|
699
|
+
[[conf_ppty_types_improvement,config.types.improvement]]
|
|
700
|
+
types.improvement:::
|
|
701
|
+
+
|
|
702
|
+
--
|
|
703
|
+
An enhancement to an existing capability, functionality, or interface element.
|
|
704
|
+
|
|
705
|
+
|
|
706
|
+
[horizontal]
|
|
707
|
+
path;; `xref:conf_ppty_types_improvement[config.types.improvement]`
|
|
708
|
+
--
|
|
709
|
+
|
|
710
|
+
[[conf_ppty_types_improvement_slug,config.types.improvement.slug]]
|
|
711
|
+
types.improvement.slug::::
|
|
712
|
+
+
|
|
713
|
+
--
|
|
714
|
+
The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.
|
|
715
|
+
|
|
716
|
+
|
|
717
|
+
[horizontal]
|
|
718
|
+
type;; String
|
|
719
|
+
default;;
|
|
720
|
+
+
|
|
721
|
+
`+++improvement+++`
|
|
722
|
+
path;; `xref:conf_ppty_types_improvement_slug[config.types.improvement.slug]`
|
|
723
|
+
--
|
|
724
|
+
|
|
725
|
+
[[conf_ppty_types_improvement_text,config.types.improvement.text]]
|
|
726
|
+
types.improvement.text::::
|
|
727
|
+
+
|
|
728
|
+
--
|
|
729
|
+
The display label for the type in the release history output.
|
|
730
|
+
Defaults to the capitalized key name.
|
|
731
|
+
|
|
732
|
+
|
|
733
|
+
[horizontal]
|
|
734
|
+
type;; String
|
|
735
|
+
default;;
|
|
736
|
+
+
|
|
737
|
+
`+++Improvement+++`
|
|
738
|
+
path;; `xref:conf_ppty_types_improvement_text[config.types.improvement.text]`
|
|
739
|
+
--
|
|
740
|
+
|
|
741
|
+
[[conf_ppty_types_improvement_head,config.types.improvement.head]]
|
|
742
|
+
types.improvement.head::::
|
|
743
|
+
+
|
|
744
|
+
--
|
|
745
|
+
The header for the type in the release history output.
|
|
746
|
+
Defaults in templates to the `text` property pluralized.
|
|
747
|
+
|
|
748
|
+
|
|
749
|
+
[horizontal]
|
|
750
|
+
type;; String
|
|
751
|
+
default;;
|
|
752
|
+
+
|
|
753
|
+
`+++Improvements+++`
|
|
754
|
+
path;; `xref:conf_ppty_types_improvement_head[config.types.improvement.head]`
|
|
755
|
+
--
|
|
756
|
+
|
|
757
|
+
[[conf_ppty_types_improvement_icon,config.types.improvement.icon]]
|
|
758
|
+
types.improvement.icon::::
|
|
759
|
+
+
|
|
760
|
+
--
|
|
761
|
+
The icon to use for issues of this type.
|
|
762
|
+
|
|
763
|
+
|
|
764
|
+
[horizontal]
|
|
765
|
+
type;; String
|
|
766
|
+
default;;
|
|
767
|
+
+
|
|
768
|
+
`+++wrench+++`
|
|
769
|
+
path;; `xref:conf_ppty_types_improvement_icon[config.types.improvement.icon]`
|
|
770
|
+
--
|
|
771
|
+
|
|
772
|
+
[[conf_ppty_types_documentation,config.types.documentation]]
|
|
773
|
+
types.documentation:::
|
|
774
|
+
+
|
|
775
|
+
--
|
|
776
|
+
An update to the documentation.
|
|
777
|
+
|
|
778
|
+
|
|
779
|
+
[horizontal]
|
|
780
|
+
path;; `xref:conf_ppty_types_documentation[config.types.documentation]`
|
|
781
|
+
--
|
|
782
|
+
|
|
783
|
+
[[conf_ppty_types_documentation_slug,config.types.documentation.slug]]
|
|
784
|
+
types.documentation.slug::::
|
|
785
|
+
+
|
|
786
|
+
--
|
|
787
|
+
The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.
|
|
788
|
+
|
|
789
|
+
|
|
790
|
+
[horizontal]
|
|
791
|
+
type;; String
|
|
792
|
+
default;;
|
|
793
|
+
+
|
|
794
|
+
`+++documentation+++`
|
|
795
|
+
path;; `xref:conf_ppty_types_documentation_slug[config.types.documentation.slug]`
|
|
796
|
+
--
|
|
797
|
+
|
|
798
|
+
[[conf_ppty_types_documentation_text,config.types.documentation.text]]
|
|
799
|
+
types.documentation.text::::
|
|
800
|
+
+
|
|
801
|
+
--
|
|
802
|
+
The display label for the type in the release history output.
|
|
803
|
+
Defaults to the capitalized key name.
|
|
804
|
+
|
|
805
|
+
|
|
806
|
+
[horizontal]
|
|
807
|
+
type;; String
|
|
808
|
+
default;;
|
|
809
|
+
+
|
|
810
|
+
`+++Documentation+++`
|
|
811
|
+
path;; `xref:conf_ppty_types_documentation_text[config.types.documentation.text]`
|
|
812
|
+
--
|
|
813
|
+
|
|
814
|
+
[[conf_ppty_types_documentation_head,config.types.documentation.head]]
|
|
815
|
+
types.documentation.head::::
|
|
816
|
+
+
|
|
817
|
+
--
|
|
818
|
+
The header for the type in the release history output.
|
|
819
|
+
Defaults in templates to the `text` property pluralized.
|
|
820
|
+
|
|
821
|
+
|
|
822
|
+
[horizontal]
|
|
823
|
+
type;; String
|
|
824
|
+
default;;
|
|
825
|
+
+
|
|
826
|
+
`+++Docs Changes+++`
|
|
827
|
+
path;; `xref:conf_ppty_types_documentation_head[config.types.documentation.head]`
|
|
828
|
+
--
|
|
829
|
+
|
|
830
|
+
[[conf_ppty_types_documentation_icon,config.types.documentation.icon]]
|
|
831
|
+
types.documentation.icon::::
|
|
832
|
+
+
|
|
833
|
+
--
|
|
834
|
+
The icon to use for issues of this type.
|
|
835
|
+
|
|
836
|
+
|
|
837
|
+
[horizontal]
|
|
838
|
+
type;; String
|
|
839
|
+
default;;
|
|
840
|
+
+
|
|
841
|
+
`+++book+++`
|
|
842
|
+
path;; `xref:conf_ppty_types_documentation_icon[config.types.documentation.icon]`
|
|
843
|
+
--
|
|
844
|
+
|
|
845
|
+
[[conf_ppty_types__type_name_,config.types.<type_name>]]
|
|
846
|
+
types.<type_name>:::
|
|
847
|
+
+
|
|
848
|
+
--
|
|
849
|
+
The corresponding issue type.
|
|
850
|
+
|
|
851
|
+
The key should be a simple string for referencing the slug in RHYML and ReleaseHx templates.
|
|
852
|
+
This is what will be entered in a change's `type` property in RHYML.
|
|
853
|
+
|
|
854
|
+
|
|
855
|
+
[horizontal]
|
|
856
|
+
path;; `xref:conf_ppty_types__type_name_[config.types.<type_name>]`
|
|
857
|
+
--
|
|
858
|
+
|
|
859
|
+
[[conf_ppty_types__type_name__slug,config.types.<type_name>.slug]]
|
|
860
|
+
types.<type_name>.slug::::
|
|
861
|
+
+
|
|
862
|
+
--
|
|
863
|
+
The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.
|
|
864
|
+
|
|
865
|
+
|
|
866
|
+
[horizontal]
|
|
867
|
+
type;; String
|
|
868
|
+
path;; `xref:conf_ppty_types__type_name__slug[config.types.<type_name>.slug]`
|
|
869
|
+
--
|
|
870
|
+
|
|
871
|
+
[[conf_ppty_types__type_name__text,config.types.<type_name>.text]]
|
|
872
|
+
types.<type_name>.text::::
|
|
873
|
+
+
|
|
874
|
+
--
|
|
875
|
+
The display label for the type in the release history output.
|
|
876
|
+
Defaults to the capitalized key name.
|
|
877
|
+
|
|
878
|
+
|
|
879
|
+
[horizontal]
|
|
880
|
+
type;; String
|
|
881
|
+
path;; `xref:conf_ppty_types__type_name__text[config.types.<type_name>.text]`
|
|
882
|
+
--
|
|
883
|
+
|
|
884
|
+
[[conf_ppty_types__type_name__head,config.types.<type_name>.head]]
|
|
885
|
+
types.<type_name>.head::::
|
|
886
|
+
+
|
|
887
|
+
--
|
|
888
|
+
The header for the type in the release history output.
|
|
889
|
+
Defaults in templates to the `text` property pluralized.
|
|
890
|
+
|
|
891
|
+
|
|
892
|
+
[horizontal]
|
|
893
|
+
type;; String
|
|
894
|
+
path;; `xref:conf_ppty_types__type_name__head[config.types.<type_name>.head]`
|
|
895
|
+
--
|
|
896
|
+
|
|
897
|
+
[[conf_ppty_types__type_name__icon,config.types.<type_name>.icon]]
|
|
898
|
+
types.<type_name>.icon::::
|
|
899
|
+
+
|
|
900
|
+
--
|
|
901
|
+
The icon to use for issues of this type.
|
|
902
|
+
|
|
903
|
+
|
|
904
|
+
[horizontal]
|
|
905
|
+
type;; String
|
|
906
|
+
path;; `xref:conf_ppty_types__type_name__icon[config.types.<type_name>.icon]`
|
|
907
|
+
--
|
|
908
|
+
|
|
909
|
+
[[conf_ppty_parts,config.parts]]
|
|
910
|
+
parts::
|
|
911
|
+
+
|
|
912
|
+
--
|
|
913
|
+
The map of product components to include in the release history, in the order of display.
|
|
914
|
+
|
|
915
|
+
List as many as you wish to match up with corresponding metadata at the source.
|
|
916
|
+
|
|
917
|
+
|
|
918
|
+
[horizontal]
|
|
919
|
+
type;; Map
|
|
920
|
+
path;; `xref:conf_ppty_parts[config.parts]`
|
|
921
|
+
--
|
|
922
|
+
|
|
923
|
+
[[conf_ppty_parts_label_prefix,config.parts.label_prefix]]
|
|
924
|
+
parts.label_prefix:::
|
|
925
|
+
+
|
|
926
|
+
--
|
|
927
|
+
The prefix used in issue labels to identify component/part labels.
|
|
928
|
+
For example, 'part:' would match labels like 'part:frontend', 'part:backend'.
|
|
929
|
+
Another common pattern is 'component:' for labels like 'component:ui', 'component:api'.
|
|
930
|
+
|
|
931
|
+
This setting allows you to customize how your organization names component labels.
|
|
932
|
+
The mapping system will look for labels that start with this prefix to determine which parts/components are affected by each change.
|
|
933
|
+
|
|
934
|
+
Examples:
|
|
935
|
+
|
|
936
|
+
* `part:` matches `part:frontend`, `part:backend`
|
|
937
|
+
* `component:` matches `component:ui`, `component:api`
|
|
938
|
+
* `area-` matches `area-security`, `area-performance`
|
|
939
|
+
|
|
940
|
+
|
|
941
|
+
[horizontal]
|
|
942
|
+
type;; String
|
|
943
|
+
default;;
|
|
944
|
+
+
|
|
945
|
+
`+++part:+++`
|
|
946
|
+
path;; `xref:conf_ppty_parts_label_prefix[config.parts.label_prefix]`
|
|
947
|
+
--
|
|
948
|
+
|
|
949
|
+
[[conf_ppty_parts__part_name_,config.parts.<part_name>]]
|
|
950
|
+
parts.<part_name>:::
|
|
951
|
+
+
|
|
952
|
+
--
|
|
953
|
+
The corresponding product component.
|
|
954
|
+
|
|
955
|
+
The key should be a simple string for referencing the slug in RHYML and ReleaseHx templates.
|
|
956
|
+
This is what will be entered in a change's `part` property in RHYML.
|
|
957
|
+
|
|
958
|
+
|
|
959
|
+
[horizontal]
|
|
960
|
+
type;; Map
|
|
961
|
+
path;; `xref:conf_ppty_parts__part_name_[config.parts.<part_name>]`
|
|
962
|
+
--
|
|
963
|
+
|
|
964
|
+
[[conf_ppty_parts__part_name__slug,config.parts.<part_name>.slug]]
|
|
965
|
+
parts.<part_name>.slug::::
|
|
966
|
+
+
|
|
967
|
+
--
|
|
968
|
+
The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.
|
|
969
|
+
|
|
970
|
+
[NOTE]
|
|
971
|
+
This technically does not have to be a "`Slug`" String, if the system permits spaces, colons, etc.
|
|
972
|
+
It just needs to _exactly_ match whatever String the remote API returns to represent the label/tag.
|
|
973
|
+
|
|
974
|
+
|
|
975
|
+
[horizontal]
|
|
976
|
+
type;; String
|
|
977
|
+
path;; `xref:conf_ppty_parts__part_name__slug[config.parts.<part_name>.slug]`
|
|
978
|
+
--
|
|
979
|
+
|
|
980
|
+
[[conf_ppty_parts__part_name__text,config.parts.<part_name>.text]]
|
|
981
|
+
parts.<part_name>.text::::
|
|
982
|
+
+
|
|
983
|
+
--
|
|
984
|
+
The display text for the component in the release history output.
|
|
985
|
+
Defaults to the capitalized key name.
|
|
986
|
+
|
|
987
|
+
|
|
988
|
+
[horizontal]
|
|
989
|
+
type;; String
|
|
990
|
+
path;; `xref:conf_ppty_parts__part_name__text[config.parts.<part_name>.text]`
|
|
991
|
+
--
|
|
992
|
+
|
|
993
|
+
[[conf_ppty_parts__part_name__head,config.parts.<part_name>.head]]
|
|
994
|
+
parts.<part_name>.head::::
|
|
995
|
+
+
|
|
996
|
+
--
|
|
997
|
+
The header for the component in the release history output.
|
|
998
|
+
Defaults in templates to the `text` property pluralized.
|
|
999
|
+
|
|
1000
|
+
|
|
1001
|
+
[horizontal]
|
|
1002
|
+
type;; String
|
|
1003
|
+
path;; `xref:conf_ppty_parts__part_name__head[config.parts.<part_name>.head]`
|
|
1004
|
+
--
|
|
1005
|
+
|
|
1006
|
+
[[conf_ppty_parts__part_name__icon,config.parts.<part_name>.icon]]
|
|
1007
|
+
parts.<part_name>.icon::::
|
|
1008
|
+
+
|
|
1009
|
+
--
|
|
1010
|
+
The icon to use for issues that affect this component.
|
|
1011
|
+
|
|
1012
|
+
|
|
1013
|
+
[horizontal]
|
|
1014
|
+
type;; String
|
|
1015
|
+
path;; `xref:conf_ppty_parts__part_name__icon[config.parts.<part_name>.icon]`
|
|
1016
|
+
--
|
|
1017
|
+
|
|
1018
|
+
[[conf_ppty_tags,config.tags]]
|
|
1019
|
+
tags::
|
|
1020
|
+
+
|
|
1021
|
+
--
|
|
1022
|
+
Handling for tags, labels, or toggles associated with source Issues.
|
|
1023
|
+
|
|
1024
|
+
Subordinate property keys (other than `include` and `exclude`) represent individual tag names, with the default set documented here.
|
|
1025
|
+
The property `<your_tag_name>` represents arbitrarily named tags, any number of which you are welcome to add.
|
|
1026
|
+
|
|
1027
|
+
This block serves to filter out any unrelated labels/tags ingested from APIs during the conversion from payload to RHYML draft.
|
|
1028
|
+
Only tags with their own property here will be ported from the issue source to the RHYML change record's `tags` Array.
|
|
1029
|
+
|
|
1030
|
+
|
|
1031
|
+
[horizontal]
|
|
1032
|
+
type;; Array
|
|
1033
|
+
path;; `xref:conf_ppty_tags[config.tags]`
|
|
1034
|
+
--
|
|
1035
|
+
|
|
1036
|
+
[[conf_ppty_tags__include,config.tags._include]]
|
|
1037
|
+
tags._include:::
|
|
1038
|
+
+
|
|
1039
|
+
--
|
|
1040
|
+
The tags, labels, or toggles that trigger inclusion in the release history.
|
|
1041
|
+
|
|
1042
|
+
|
|
1043
|
+
[horizontal]
|
|
1044
|
+
type;; Array
|
|
1045
|
+
default;;
|
|
1046
|
+
+
|
|
1047
|
+
....
|
|
1048
|
+
- highlight
|
|
1049
|
+
- deprecation
|
|
1050
|
+
- removal
|
|
1051
|
+
- breaking
|
|
1052
|
+
- experimental
|
|
1053
|
+
- changelog
|
|
1054
|
+
....
|
|
1055
|
+
path;; `xref:conf_ppty_tags__include[config.tags._include]`
|
|
1056
|
+
--
|
|
1057
|
+
|
|
1058
|
+
[[conf_ppty_tags__exclude,config.tags._exclude]]
|
|
1059
|
+
tags._exclude:::
|
|
1060
|
+
+
|
|
1061
|
+
--
|
|
1062
|
+
The list of tags that cause a change/issue to be excluded from the release history.
|
|
1063
|
+
|
|
1064
|
+
|
|
1065
|
+
[horizontal]
|
|
1066
|
+
type;; Array
|
|
1067
|
+
default;;
|
|
1068
|
+
+
|
|
1069
|
+
`++++++`
|
|
1070
|
+
path;; `xref:conf_ppty_tags__exclude[config.tags._exclude]`
|
|
1071
|
+
--
|
|
1072
|
+
|
|
1073
|
+
[[conf_ppty_tags_highlight,config.tags.highlight]]
|
|
1074
|
+
tags.highlight:::
|
|
1075
|
+
+
|
|
1076
|
+
--
|
|
1077
|
+
The tag, label, or toggle that indicates an issue is to be highlighted or prioritized in sorts.
|
|
1078
|
+
|
|
1079
|
+
[horizontal]
|
|
1080
|
+
path;; `xref:conf_ppty_tags_highlight[config.tags.highlight]`
|
|
1081
|
+
--
|
|
1082
|
+
|
|
1083
|
+
[[conf_ppty_tags_highlight_head,config.tags.highlight.head]]
|
|
1084
|
+
tags.highlight.head::::
|
|
1085
|
+
+
|
|
1086
|
+
--
|
|
1087
|
+
How this tag will display as a grouping title.
|
|
1088
|
+
|
|
1089
|
+
[horizontal]
|
|
1090
|
+
type;; String
|
|
1091
|
+
default;;
|
|
1092
|
+
+
|
|
1093
|
+
`+++Highlights+++`
|
|
1094
|
+
path;; `xref:conf_ppty_tags_highlight_head[config.tags.highlight.head]`
|
|
1095
|
+
--
|
|
1096
|
+
|
|
1097
|
+
[[conf_ppty_tags_highlight_text,config.tags.highlight.text]]
|
|
1098
|
+
tags.highlight.text::::
|
|
1099
|
+
+
|
|
1100
|
+
--
|
|
1101
|
+
How this tag will display as a label.
|
|
1102
|
+
|
|
1103
|
+
[horizontal]
|
|
1104
|
+
type;; String
|
|
1105
|
+
default;;
|
|
1106
|
+
+
|
|
1107
|
+
`+++highlight+++`
|
|
1108
|
+
path;; `xref:conf_ppty_tags_highlight_text[config.tags.highlight.text]`
|
|
1109
|
+
--
|
|
1110
|
+
|
|
1111
|
+
[[conf_ppty_tags_highlight_slug,config.tags.highlight.slug]]
|
|
1112
|
+
tags.highlight.slug::::
|
|
1113
|
+
+
|
|
1114
|
+
--
|
|
1115
|
+
The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.
|
|
1116
|
+
|
|
1117
|
+
[NOTE]
|
|
1118
|
+
This technically does not have to be a "`Slug`" String, if the system permits spaces.
|
|
1119
|
+
It just needs to exactly match whatever String the remote API returns to represent the label/tag.
|
|
1120
|
+
|
|
1121
|
+
|
|
1122
|
+
[horizontal]
|
|
1123
|
+
type;; String
|
|
1124
|
+
default;;
|
|
1125
|
+
+
|
|
1126
|
+
`+++highlighted+++`
|
|
1127
|
+
path;; `xref:conf_ppty_tags_highlight_slug[config.tags.highlight.slug]`
|
|
1128
|
+
--
|
|
1129
|
+
|
|
1130
|
+
[[conf_ppty_tags_highlight_icon,config.tags.highlight.icon]]
|
|
1131
|
+
tags.highlight.icon::::
|
|
1132
|
+
+
|
|
1133
|
+
--
|
|
1134
|
+
The icon to use for issues so-tagged.
|
|
1135
|
+
|
|
1136
|
+
|
|
1137
|
+
[horizontal]
|
|
1138
|
+
type;; String
|
|
1139
|
+
default;;
|
|
1140
|
+
+
|
|
1141
|
+
`+++star+++`
|
|
1142
|
+
path;; `xref:conf_ppty_tags_highlight_icon[config.tags.highlight.icon]`
|
|
1143
|
+
--
|
|
1144
|
+
|
|
1145
|
+
[[conf_ppty_tags_highlight_drop,config.tags.highlight.drop]]
|
|
1146
|
+
tags.highlight.drop::::
|
|
1147
|
+
+
|
|
1148
|
+
--
|
|
1149
|
+
Whether to drop this tag when creating a RHYML object from API source.
|
|
1150
|
+
Basically decides whether this tag is user-facing.
|
|
1151
|
+
|
|
1152
|
+
|
|
1153
|
+
[horizontal]
|
|
1154
|
+
type;; Boolean
|
|
1155
|
+
default;;
|
|
1156
|
+
+
|
|
1157
|
+
`+++false+++`
|
|
1158
|
+
path;; `xref:conf_ppty_tags_highlight_drop[config.tags.highlight.drop]`
|
|
1159
|
+
--
|
|
1160
|
+
|
|
1161
|
+
[[conf_ppty_tags_highlight_groupable,config.tags.highlight.groupable]]
|
|
1162
|
+
tags.highlight.groupable::::
|
|
1163
|
+
+
|
|
1164
|
+
--
|
|
1165
|
+
Whether this tag can be used to group issues in the release history.
|
|
1166
|
+
|
|
1167
|
+
|
|
1168
|
+
[horizontal]
|
|
1169
|
+
type;; Boolean
|
|
1170
|
+
default;;
|
|
1171
|
+
+
|
|
1172
|
+
`+++true+++`
|
|
1173
|
+
path;; `xref:conf_ppty_tags_highlight_groupable[config.tags.highlight.groupable]`
|
|
1174
|
+
--
|
|
1175
|
+
|
|
1176
|
+
[[conf_ppty_tags_breaking,config.tags.breaking]]
|
|
1177
|
+
tags.breaking:::
|
|
1178
|
+
+
|
|
1179
|
+
--
|
|
1180
|
+
The tag, label, or toggle that indicates a potentially disruptive change.
|
|
1181
|
+
|
|
1182
|
+
[horizontal]
|
|
1183
|
+
path;; `xref:conf_ppty_tags_breaking[config.tags.breaking]`
|
|
1184
|
+
--
|
|
1185
|
+
|
|
1186
|
+
[[conf_ppty_tags_breaking_head,config.tags.breaking.head]]
|
|
1187
|
+
tags.breaking.head::::
|
|
1188
|
+
+
|
|
1189
|
+
--
|
|
1190
|
+
How this tag will display as a grouping title.
|
|
1191
|
+
|
|
1192
|
+
[horizontal]
|
|
1193
|
+
type;; String
|
|
1194
|
+
default;;
|
|
1195
|
+
+
|
|
1196
|
+
`+++Breaking Changes+++`
|
|
1197
|
+
path;; `xref:conf_ppty_tags_breaking_head[config.tags.breaking.head]`
|
|
1198
|
+
--
|
|
1199
|
+
|
|
1200
|
+
[[conf_ppty_tags_breaking_text,config.tags.breaking.text]]
|
|
1201
|
+
tags.breaking.text::::
|
|
1202
|
+
+
|
|
1203
|
+
--
|
|
1204
|
+
How this tag will display as a label.
|
|
1205
|
+
|
|
1206
|
+
[horizontal]
|
|
1207
|
+
type;; String
|
|
1208
|
+
default;;
|
|
1209
|
+
+
|
|
1210
|
+
`+++Breaking+++`
|
|
1211
|
+
path;; `xref:conf_ppty_tags_breaking_text[config.tags.breaking.text]`
|
|
1212
|
+
--
|
|
1213
|
+
|
|
1214
|
+
[[conf_ppty_tags_breaking_slug,config.tags.breaking.slug]]
|
|
1215
|
+
tags.breaking.slug::::
|
|
1216
|
+
+
|
|
1217
|
+
--
|
|
1218
|
+
The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.
|
|
1219
|
+
|
|
1220
|
+
[NOTE]
|
|
1221
|
+
This technically does not have to be a "`Slug`" String, if the system permits spaces.
|
|
1222
|
+
It just needs to exactly match whatever String the remote API returns to represent the label/tag.
|
|
1223
|
+
|
|
1224
|
+
|
|
1225
|
+
[horizontal]
|
|
1226
|
+
type;; String
|
|
1227
|
+
default;;
|
|
1228
|
+
+
|
|
1229
|
+
`+++breaking+++`
|
|
1230
|
+
path;; `xref:conf_ppty_tags_breaking_slug[config.tags.breaking.slug]`
|
|
1231
|
+
--
|
|
1232
|
+
|
|
1233
|
+
[[conf_ppty_tags_breaking_icon,config.tags.breaking.icon]]
|
|
1234
|
+
tags.breaking.icon::::
|
|
1235
|
+
+
|
|
1236
|
+
--
|
|
1237
|
+
The icon to use for issues so-tagged.
|
|
1238
|
+
|
|
1239
|
+
|
|
1240
|
+
[horizontal]
|
|
1241
|
+
type;; String
|
|
1242
|
+
default;;
|
|
1243
|
+
+
|
|
1244
|
+
`+++exclamation-triangle+++`
|
|
1245
|
+
path;; `xref:conf_ppty_tags_breaking_icon[config.tags.breaking.icon]`
|
|
1246
|
+
--
|
|
1247
|
+
|
|
1248
|
+
[[conf_ppty_tags_breaking_drop,config.tags.breaking.drop]]
|
|
1249
|
+
tags.breaking.drop::::
|
|
1250
|
+
+
|
|
1251
|
+
--
|
|
1252
|
+
Whether to drop this tag when creating a RHYML object from API source.
|
|
1253
|
+
Basically decides whether this tag is user-facing.
|
|
1254
|
+
|
|
1255
|
+
|
|
1256
|
+
[horizontal]
|
|
1257
|
+
type;; Boolean
|
|
1258
|
+
default;;
|
|
1259
|
+
+
|
|
1260
|
+
`+++false+++`
|
|
1261
|
+
path;; `xref:conf_ppty_tags_breaking_drop[config.tags.breaking.drop]`
|
|
1262
|
+
--
|
|
1263
|
+
|
|
1264
|
+
[[conf_ppty_tags_breaking_groupable,config.tags.breaking.groupable]]
|
|
1265
|
+
tags.breaking.groupable::::
|
|
1266
|
+
+
|
|
1267
|
+
--
|
|
1268
|
+
Whether this tag can be used to group issues in the release history.
|
|
1269
|
+
|
|
1270
|
+
|
|
1271
|
+
[horizontal]
|
|
1272
|
+
type;; Boolean
|
|
1273
|
+
default;;
|
|
1274
|
+
+
|
|
1275
|
+
`+++true+++`
|
|
1276
|
+
path;; `xref:conf_ppty_tags_breaking_groupable[config.tags.breaking.groupable]`
|
|
1277
|
+
--
|
|
1278
|
+
|
|
1279
|
+
[[conf_ppty_tags_removal,config.tags.removal]]
|
|
1280
|
+
tags.removal:::
|
|
1281
|
+
+
|
|
1282
|
+
--
|
|
1283
|
+
The tag, label, or toggle that indicates a change includes a feature removal.
|
|
1284
|
+
|
|
1285
|
+
[horizontal]
|
|
1286
|
+
path;; `xref:conf_ppty_tags_removal[config.tags.removal]`
|
|
1287
|
+
--
|
|
1288
|
+
|
|
1289
|
+
[[conf_ppty_tags_removal_head,config.tags.removal.head]]
|
|
1290
|
+
tags.removal.head::::
|
|
1291
|
+
+
|
|
1292
|
+
--
|
|
1293
|
+
How this tag will display as a grouping title.
|
|
1294
|
+
|
|
1295
|
+
[horizontal]
|
|
1296
|
+
type;; String
|
|
1297
|
+
default;;
|
|
1298
|
+
+
|
|
1299
|
+
`+++Feature Removals+++`
|
|
1300
|
+
path;; `xref:conf_ppty_tags_removal_head[config.tags.removal.head]`
|
|
1301
|
+
--
|
|
1302
|
+
|
|
1303
|
+
[[conf_ppty_tags_removal_text,config.tags.removal.text]]
|
|
1304
|
+
tags.removal.text::::
|
|
1305
|
+
+
|
|
1306
|
+
--
|
|
1307
|
+
How this tag will display as a label.
|
|
1308
|
+
|
|
1309
|
+
[horizontal]
|
|
1310
|
+
type;; String
|
|
1311
|
+
default;;
|
|
1312
|
+
+
|
|
1313
|
+
`+++Removed+++`
|
|
1314
|
+
path;; `xref:conf_ppty_tags_removal_text[config.tags.removal.text]`
|
|
1315
|
+
--
|
|
1316
|
+
|
|
1317
|
+
[[conf_ppty_tags_removal_slug,config.tags.removal.slug]]
|
|
1318
|
+
tags.removal.slug::::
|
|
1319
|
+
+
|
|
1320
|
+
--
|
|
1321
|
+
The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.
|
|
1322
|
+
|
|
1323
|
+
[NOTE]
|
|
1324
|
+
This technically does not have to be a "`Slug`" String, if the system permits spaces.
|
|
1325
|
+
It just needs to exactly match whatever String the remote API returns to represent the label/tag.
|
|
1326
|
+
|
|
1327
|
+
|
|
1328
|
+
[horizontal]
|
|
1329
|
+
type;; String
|
|
1330
|
+
default;;
|
|
1331
|
+
+
|
|
1332
|
+
`+++removal+++`
|
|
1333
|
+
path;; `xref:conf_ppty_tags_removal_slug[config.tags.removal.slug]`
|
|
1334
|
+
--
|
|
1335
|
+
|
|
1336
|
+
[[conf_ppty_tags_removal_icon,config.tags.removal.icon]]
|
|
1337
|
+
tags.removal.icon::::
|
|
1338
|
+
+
|
|
1339
|
+
--
|
|
1340
|
+
The icon to use for issues so-tagged.
|
|
1341
|
+
|
|
1342
|
+
|
|
1343
|
+
[horizontal]
|
|
1344
|
+
type;; String
|
|
1345
|
+
default;;
|
|
1346
|
+
+
|
|
1347
|
+
`+++sign-out+++`
|
|
1348
|
+
path;; `xref:conf_ppty_tags_removal_icon[config.tags.removal.icon]`
|
|
1349
|
+
--
|
|
1350
|
+
|
|
1351
|
+
[[conf_ppty_tags_removal_drop,config.tags.removal.drop]]
|
|
1352
|
+
tags.removal.drop::::
|
|
1353
|
+
+
|
|
1354
|
+
--
|
|
1355
|
+
Whether to drop this tag when creating a RHYML object from API source.
|
|
1356
|
+
Basically decides whether this tag is user-facing.
|
|
1357
|
+
|
|
1358
|
+
|
|
1359
|
+
[horizontal]
|
|
1360
|
+
type;; Boolean
|
|
1361
|
+
default;;
|
|
1362
|
+
+
|
|
1363
|
+
`+++false+++`
|
|
1364
|
+
path;; `xref:conf_ppty_tags_removal_drop[config.tags.removal.drop]`
|
|
1365
|
+
--
|
|
1366
|
+
|
|
1367
|
+
[[conf_ppty_tags_removal_groupable,config.tags.removal.groupable]]
|
|
1368
|
+
tags.removal.groupable::::
|
|
1369
|
+
+
|
|
1370
|
+
--
|
|
1371
|
+
Whether this tag can be used to group issues in the release history.
|
|
1372
|
+
|
|
1373
|
+
|
|
1374
|
+
[horizontal]
|
|
1375
|
+
type;; Boolean
|
|
1376
|
+
default;;
|
|
1377
|
+
+
|
|
1378
|
+
`+++true+++`
|
|
1379
|
+
path;; `xref:conf_ppty_tags_removal_groupable[config.tags.removal.groupable]`
|
|
1380
|
+
--
|
|
1381
|
+
|
|
1382
|
+
[[conf_ppty_tags_deprecation,config.tags.deprecation]]
|
|
1383
|
+
tags.deprecation:::
|
|
1384
|
+
+
|
|
1385
|
+
--
|
|
1386
|
+
The tag, label, or toggle that indicates an issue includes a feature discontinuation announcement.
|
|
1387
|
+
|
|
1388
|
+
[horizontal]
|
|
1389
|
+
path;; `xref:conf_ppty_tags_deprecation[config.tags.deprecation]`
|
|
1390
|
+
--
|
|
1391
|
+
|
|
1392
|
+
[[conf_ppty_tags_deprecation_head,config.tags.deprecation.head]]
|
|
1393
|
+
tags.deprecation.head::::
|
|
1394
|
+
+
|
|
1395
|
+
--
|
|
1396
|
+
How this tag will display as a grouping title.
|
|
1397
|
+
|
|
1398
|
+
[horizontal]
|
|
1399
|
+
type;; String
|
|
1400
|
+
default;;
|
|
1401
|
+
+
|
|
1402
|
+
`+++Deprecations+++`
|
|
1403
|
+
path;; `xref:conf_ppty_tags_deprecation_head[config.tags.deprecation.head]`
|
|
1404
|
+
--
|
|
1405
|
+
|
|
1406
|
+
[[conf_ppty_tags_deprecation_text,config.tags.deprecation.text]]
|
|
1407
|
+
tags.deprecation.text::::
|
|
1408
|
+
+
|
|
1409
|
+
--
|
|
1410
|
+
How this tag will display as a label.
|
|
1411
|
+
|
|
1412
|
+
[horizontal]
|
|
1413
|
+
type;; String
|
|
1414
|
+
default;;
|
|
1415
|
+
+
|
|
1416
|
+
`+++Deprecated+++`
|
|
1417
|
+
path;; `xref:conf_ppty_tags_deprecation_text[config.tags.deprecation.text]`
|
|
1418
|
+
--
|
|
1419
|
+
|
|
1420
|
+
[[conf_ppty_tags_deprecation_slug,config.tags.deprecation.slug]]
|
|
1421
|
+
tags.deprecation.slug::::
|
|
1422
|
+
+
|
|
1423
|
+
--
|
|
1424
|
+
The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.
|
|
1425
|
+
|
|
1426
|
+
[NOTE]
|
|
1427
|
+
This technically does not have to be a "`Slug`" String, if the system permits spaces.
|
|
1428
|
+
It just needs to exactly match whatever String the remote API returns to represent the label/tag.
|
|
1429
|
+
|
|
1430
|
+
|
|
1431
|
+
[horizontal]
|
|
1432
|
+
type;; String
|
|
1433
|
+
default;;
|
|
1434
|
+
+
|
|
1435
|
+
`+++deprecation+++`
|
|
1436
|
+
path;; `xref:conf_ppty_tags_deprecation_slug[config.tags.deprecation.slug]`
|
|
1437
|
+
--
|
|
1438
|
+
|
|
1439
|
+
[[conf_ppty_tags_deprecation_icon,config.tags.deprecation.icon]]
|
|
1440
|
+
tags.deprecation.icon::::
|
|
1441
|
+
+
|
|
1442
|
+
--
|
|
1443
|
+
The icon to use for issues so-tagged.
|
|
1444
|
+
|
|
1445
|
+
|
|
1446
|
+
[horizontal]
|
|
1447
|
+
type;; String
|
|
1448
|
+
default;;
|
|
1449
|
+
+
|
|
1450
|
+
`+++exclamation-triangle+++`
|
|
1451
|
+
path;; `xref:conf_ppty_tags_deprecation_icon[config.tags.deprecation.icon]`
|
|
1452
|
+
--
|
|
1453
|
+
|
|
1454
|
+
[[conf_ppty_tags_deprecation_drop,config.tags.deprecation.drop]]
|
|
1455
|
+
tags.deprecation.drop::::
|
|
1456
|
+
+
|
|
1457
|
+
--
|
|
1458
|
+
Whether to drop this tag when creating a RHYML object from API source.
|
|
1459
|
+
Basically decides whether this tag is user-facing.
|
|
1460
|
+
|
|
1461
|
+
|
|
1462
|
+
[horizontal]
|
|
1463
|
+
type;; Boolean
|
|
1464
|
+
default;;
|
|
1465
|
+
+
|
|
1466
|
+
`+++false+++`
|
|
1467
|
+
path;; `xref:conf_ppty_tags_deprecation_drop[config.tags.deprecation.drop]`
|
|
1468
|
+
--
|
|
1469
|
+
|
|
1470
|
+
[[conf_ppty_tags_deprecation_groupable,config.tags.deprecation.groupable]]
|
|
1471
|
+
tags.deprecation.groupable::::
|
|
1472
|
+
+
|
|
1473
|
+
--
|
|
1474
|
+
Whether this tag can be used to group issues in the release history.
|
|
1475
|
+
|
|
1476
|
+
|
|
1477
|
+
[horizontal]
|
|
1478
|
+
type;; Boolean
|
|
1479
|
+
default;;
|
|
1480
|
+
+
|
|
1481
|
+
`+++true+++`
|
|
1482
|
+
path;; `xref:conf_ppty_tags_deprecation_groupable[config.tags.deprecation.groupable]`
|
|
1483
|
+
--
|
|
1484
|
+
|
|
1485
|
+
[[conf_ppty_tags_security,config.tags.security]]
|
|
1486
|
+
tags.security:::
|
|
1487
|
+
+
|
|
1488
|
+
--
|
|
1489
|
+
The tag, label, or toggle that indicates a change includes a security-related alteration.
|
|
1490
|
+
|
|
1491
|
+
|
|
1492
|
+
[horizontal]
|
|
1493
|
+
path;; `xref:conf_ppty_tags_security[config.tags.security]`
|
|
1494
|
+
--
|
|
1495
|
+
|
|
1496
|
+
[[conf_ppty_tags_security_head,config.tags.security.head]]
|
|
1497
|
+
tags.security.head::::
|
|
1498
|
+
+
|
|
1499
|
+
--
|
|
1500
|
+
How this tag will display as a grouping title.
|
|
1501
|
+
|
|
1502
|
+
[horizontal]
|
|
1503
|
+
type;; String
|
|
1504
|
+
default;;
|
|
1505
|
+
+
|
|
1506
|
+
`+++Security Fixes+++`
|
|
1507
|
+
path;; `xref:conf_ppty_tags_security_head[config.tags.security.head]`
|
|
1508
|
+
--
|
|
1509
|
+
|
|
1510
|
+
[[conf_ppty_tags_security_text,config.tags.security.text]]
|
|
1511
|
+
tags.security.text::::
|
|
1512
|
+
+
|
|
1513
|
+
--
|
|
1514
|
+
How this tag will display as a label.
|
|
1515
|
+
|
|
1516
|
+
[horizontal]
|
|
1517
|
+
type;; String
|
|
1518
|
+
default;;
|
|
1519
|
+
+
|
|
1520
|
+
`+++Security+++`
|
|
1521
|
+
path;; `xref:conf_ppty_tags_security_text[config.tags.security.text]`
|
|
1522
|
+
--
|
|
1523
|
+
|
|
1524
|
+
[[conf_ppty_tags_security_slug,config.tags.security.slug]]
|
|
1525
|
+
tags.security.slug::::
|
|
1526
|
+
+
|
|
1527
|
+
--
|
|
1528
|
+
The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.
|
|
1529
|
+
|
|
1530
|
+
[NOTE]
|
|
1531
|
+
This technically does not have to be a "`Slug`" String, if the system permits spaces.
|
|
1532
|
+
It just needs to exactly match whatever String the remote API returns to represent the label/tag.
|
|
1533
|
+
|
|
1534
|
+
|
|
1535
|
+
[horizontal]
|
|
1536
|
+
type;; String
|
|
1537
|
+
default;;
|
|
1538
|
+
+
|
|
1539
|
+
`+++security+++`
|
|
1540
|
+
path;; `xref:conf_ppty_tags_security_slug[config.tags.security.slug]`
|
|
1541
|
+
--
|
|
1542
|
+
|
|
1543
|
+
[[conf_ppty_tags_security_icon,config.tags.security.icon]]
|
|
1544
|
+
tags.security.icon::::
|
|
1545
|
+
+
|
|
1546
|
+
--
|
|
1547
|
+
The icon to use for issues so-tagged.
|
|
1548
|
+
|
|
1549
|
+
|
|
1550
|
+
[horizontal]
|
|
1551
|
+
type;; String
|
|
1552
|
+
default;;
|
|
1553
|
+
+
|
|
1554
|
+
`+++shield+++`
|
|
1555
|
+
path;; `xref:conf_ppty_tags_security_icon[config.tags.security.icon]`
|
|
1556
|
+
--
|
|
1557
|
+
|
|
1558
|
+
[[conf_ppty_tags_security_drop,config.tags.security.drop]]
|
|
1559
|
+
tags.security.drop::::
|
|
1560
|
+
+
|
|
1561
|
+
--
|
|
1562
|
+
Whether to drop this tag when creating a RHYML object from API source.
|
|
1563
|
+
Basically decides whether this tag is user-facing.
|
|
1564
|
+
|
|
1565
|
+
|
|
1566
|
+
[horizontal]
|
|
1567
|
+
type;; Boolean
|
|
1568
|
+
default;;
|
|
1569
|
+
+
|
|
1570
|
+
`+++false+++`
|
|
1571
|
+
path;; `xref:conf_ppty_tags_security_drop[config.tags.security.drop]`
|
|
1572
|
+
--
|
|
1573
|
+
|
|
1574
|
+
[[conf_ppty_tags_security_groupable,config.tags.security.groupable]]
|
|
1575
|
+
tags.security.groupable::::
|
|
1576
|
+
+
|
|
1577
|
+
--
|
|
1578
|
+
Whether this tag can be used to group issues in the release history.
|
|
1579
|
+
|
|
1580
|
+
|
|
1581
|
+
[horizontal]
|
|
1582
|
+
type;; Boolean
|
|
1583
|
+
default;;
|
|
1584
|
+
+
|
|
1585
|
+
`+++true+++`
|
|
1586
|
+
path;; `xref:conf_ppty_tags_security_groupable[config.tags.security.groupable]`
|
|
1587
|
+
--
|
|
1588
|
+
|
|
1589
|
+
[[conf_ppty_tags_experimental,config.tags.experimental]]
|
|
1590
|
+
tags.experimental:::
|
|
1591
|
+
+
|
|
1592
|
+
--
|
|
1593
|
+
The tag, label, or toggle that indicates a feature that is not yet stable or may not be permanent.
|
|
1594
|
+
|
|
1595
|
+
[horizontal]
|
|
1596
|
+
path;; `xref:conf_ppty_tags_experimental[config.tags.experimental]`
|
|
1597
|
+
--
|
|
1598
|
+
|
|
1599
|
+
[[conf_ppty_tags_experimental_head,config.tags.experimental.head]]
|
|
1600
|
+
tags.experimental.head::::
|
|
1601
|
+
+
|
|
1602
|
+
--
|
|
1603
|
+
How this tag will display as a grouping title.
|
|
1604
|
+
|
|
1605
|
+
[horizontal]
|
|
1606
|
+
type;; String
|
|
1607
|
+
default;;
|
|
1608
|
+
+
|
|
1609
|
+
....
|
|
1610
|
+
Experimental Features
|
|
1611
|
+
....
|
|
1612
|
+
path;; `xref:conf_ppty_tags_experimental_head[config.tags.experimental.head]`
|
|
1613
|
+
--
|
|
1614
|
+
|
|
1615
|
+
[[conf_ppty_tags_experimental_text,config.tags.experimental.text]]
|
|
1616
|
+
tags.experimental.text::::
|
|
1617
|
+
+
|
|
1618
|
+
--
|
|
1619
|
+
How this tag will display as a label.
|
|
1620
|
+
|
|
1621
|
+
[horizontal]
|
|
1622
|
+
type;; String
|
|
1623
|
+
default;;
|
|
1624
|
+
+
|
|
1625
|
+
`+++Experimental+++`
|
|
1626
|
+
path;; `xref:conf_ppty_tags_experimental_text[config.tags.experimental.text]`
|
|
1627
|
+
--
|
|
1628
|
+
|
|
1629
|
+
[[conf_ppty_tags_experimental_slug,config.tags.experimental.slug]]
|
|
1630
|
+
tags.experimental.slug::::
|
|
1631
|
+
+
|
|
1632
|
+
--
|
|
1633
|
+
The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.
|
|
1634
|
+
|
|
1635
|
+
[NOTE]
|
|
1636
|
+
This technically does not have to be a "`Slug`" String, if the system permits spaces.
|
|
1637
|
+
It just needs to exactly match whatever String the remote API returns to represent the label/tag.
|
|
1638
|
+
|
|
1639
|
+
|
|
1640
|
+
[horizontal]
|
|
1641
|
+
type;; String
|
|
1642
|
+
default;;
|
|
1643
|
+
+
|
|
1644
|
+
`+++experimental+++`
|
|
1645
|
+
path;; `xref:conf_ppty_tags_experimental_slug[config.tags.experimental.slug]`
|
|
1646
|
+
--
|
|
1647
|
+
|
|
1648
|
+
[[conf_ppty_tags_experimental_icon,config.tags.experimental.icon]]
|
|
1649
|
+
tags.experimental.icon::::
|
|
1650
|
+
+
|
|
1651
|
+
--
|
|
1652
|
+
The icon to use for issues so-tagged.
|
|
1653
|
+
|
|
1654
|
+
|
|
1655
|
+
[horizontal]
|
|
1656
|
+
type;; String
|
|
1657
|
+
default;;
|
|
1658
|
+
+
|
|
1659
|
+
`+++flask+++`
|
|
1660
|
+
path;; `xref:conf_ppty_tags_experimental_icon[config.tags.experimental.icon]`
|
|
1661
|
+
--
|
|
1662
|
+
|
|
1663
|
+
[[conf_ppty_tags_experimental_drop,config.tags.experimental.drop]]
|
|
1664
|
+
tags.experimental.drop::::
|
|
1665
|
+
+
|
|
1666
|
+
--
|
|
1667
|
+
Whether to drop this tag when creating a RHYML object from API source.
|
|
1668
|
+
Basically decides whether this tag is user-facing.
|
|
1669
|
+
|
|
1670
|
+
|
|
1671
|
+
[horizontal]
|
|
1672
|
+
type;; Boolean
|
|
1673
|
+
default;;
|
|
1674
|
+
+
|
|
1675
|
+
`+++false+++`
|
|
1676
|
+
path;; `xref:conf_ppty_tags_experimental_drop[config.tags.experimental.drop]`
|
|
1677
|
+
--
|
|
1678
|
+
|
|
1679
|
+
[[conf_ppty_tags_experimental_groupable,config.tags.experimental.groupable]]
|
|
1680
|
+
tags.experimental.groupable::::
|
|
1681
|
+
+
|
|
1682
|
+
--
|
|
1683
|
+
Whether this tag can be used to group issues in the release history.
|
|
1684
|
+
|
|
1685
|
+
|
|
1686
|
+
[horizontal]
|
|
1687
|
+
type;; Boolean
|
|
1688
|
+
default;;
|
|
1689
|
+
+
|
|
1690
|
+
`+++true+++`
|
|
1691
|
+
path;; `xref:conf_ppty_tags_experimental_groupable[config.tags.experimental.groupable]`
|
|
1692
|
+
--
|
|
1693
|
+
|
|
1694
|
+
[[conf_ppty_tags_internal,config.tags.internal]]
|
|
1695
|
+
tags.internal:::
|
|
1696
|
+
+
|
|
1697
|
+
--
|
|
1698
|
+
The tag, label, or toggle that indicates an issue documents a feature that is not intended for "`public`" use or visibility.
|
|
1699
|
+
|
|
1700
|
+
[horizontal]
|
|
1701
|
+
path;; `xref:conf_ppty_tags_internal[config.tags.internal]`
|
|
1702
|
+
--
|
|
1703
|
+
|
|
1704
|
+
[[conf_ppty_tags_internal_head,config.tags.internal.head]]
|
|
1705
|
+
tags.internal.head::::
|
|
1706
|
+
+
|
|
1707
|
+
--
|
|
1708
|
+
How this tag will display as a grouping title.
|
|
1709
|
+
|
|
1710
|
+
[horizontal]
|
|
1711
|
+
type;; String
|
|
1712
|
+
default;;
|
|
1713
|
+
+
|
|
1714
|
+
`+++Internal Changes+++`
|
|
1715
|
+
path;; `xref:conf_ppty_tags_internal_head[config.tags.internal.head]`
|
|
1716
|
+
--
|
|
1717
|
+
|
|
1718
|
+
[[conf_ppty_tags_internal_text,config.tags.internal.text]]
|
|
1719
|
+
tags.internal.text::::
|
|
1720
|
+
+
|
|
1721
|
+
--
|
|
1722
|
+
How this tag will display as a label.
|
|
1723
|
+
|
|
1724
|
+
[horizontal]
|
|
1725
|
+
type;; String
|
|
1726
|
+
default;;
|
|
1727
|
+
+
|
|
1728
|
+
`+++Internal+++`
|
|
1729
|
+
path;; `xref:conf_ppty_tags_internal_text[config.tags.internal.text]`
|
|
1730
|
+
--
|
|
1731
|
+
|
|
1732
|
+
[[conf_ppty_tags_internal_slug,config.tags.internal.slug]]
|
|
1733
|
+
tags.internal.slug::::
|
|
1734
|
+
+
|
|
1735
|
+
--
|
|
1736
|
+
The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.
|
|
1737
|
+
|
|
1738
|
+
[NOTE]
|
|
1739
|
+
This technically does not have to be a "`Slug`" String, if the system permits spaces.
|
|
1740
|
+
It just needs to exactly match whatever String the remote API returns to represent the label/tag.
|
|
1741
|
+
|
|
1742
|
+
|
|
1743
|
+
[horizontal]
|
|
1744
|
+
type;; String
|
|
1745
|
+
default;;
|
|
1746
|
+
+
|
|
1747
|
+
`+++internal+++`
|
|
1748
|
+
path;; `xref:conf_ppty_tags_internal_slug[config.tags.internal.slug]`
|
|
1749
|
+
--
|
|
1750
|
+
|
|
1751
|
+
[[conf_ppty_tags_internal_icon,config.tags.internal.icon]]
|
|
1752
|
+
tags.internal.icon::::
|
|
1753
|
+
+
|
|
1754
|
+
--
|
|
1755
|
+
The icon to use for issues so-tagged.
|
|
1756
|
+
|
|
1757
|
+
|
|
1758
|
+
[horizontal]
|
|
1759
|
+
type;; String
|
|
1760
|
+
default;;
|
|
1761
|
+
+
|
|
1762
|
+
`+++lock+++`
|
|
1763
|
+
path;; `xref:conf_ppty_tags_internal_icon[config.tags.internal.icon]`
|
|
1764
|
+
--
|
|
1765
|
+
|
|
1766
|
+
[[conf_ppty_tags_internal_drop,config.tags.internal.drop]]
|
|
1767
|
+
tags.internal.drop::::
|
|
1768
|
+
+
|
|
1769
|
+
--
|
|
1770
|
+
Whether to drop this tag when creating a RHYML object from API source.
|
|
1771
|
+
Basically decides whether this tag is user-facing.
|
|
1772
|
+
|
|
1773
|
+
|
|
1774
|
+
[horizontal]
|
|
1775
|
+
type;; Boolean
|
|
1776
|
+
default;;
|
|
1777
|
+
+
|
|
1778
|
+
`+++false+++`
|
|
1779
|
+
path;; `xref:conf_ppty_tags_internal_drop[config.tags.internal.drop]`
|
|
1780
|
+
--
|
|
1781
|
+
|
|
1782
|
+
[[conf_ppty_tags_internal_groupable,config.tags.internal.groupable]]
|
|
1783
|
+
tags.internal.groupable::::
|
|
1784
|
+
+
|
|
1785
|
+
--
|
|
1786
|
+
Whether this tag can be used to group issues in the release history.
|
|
1787
|
+
|
|
1788
|
+
|
|
1789
|
+
[horizontal]
|
|
1790
|
+
type;; Boolean
|
|
1791
|
+
default;;
|
|
1792
|
+
+
|
|
1793
|
+
`+++true+++`
|
|
1794
|
+
path;; `xref:conf_ppty_tags_internal_groupable[config.tags.internal.groupable]`
|
|
1795
|
+
--
|
|
1796
|
+
|
|
1797
|
+
[[conf_ppty_tags_changelog,config.tags.changelog]]
|
|
1798
|
+
tags.changelog:::
|
|
1799
|
+
+
|
|
1800
|
+
--
|
|
1801
|
+
The tag, label, or toggle that indicates an issue should appear in the Changelog even if it does not have a Release Note.
|
|
1802
|
+
|
|
1803
|
+
There is no icon associated with changelog-tagged issues, as it is only declaring that an issue belongs in the Changelog.
|
|
1804
|
+
|
|
1805
|
+
|
|
1806
|
+
[horizontal]
|
|
1807
|
+
path;; `xref:conf_ppty_tags_changelog[config.tags.changelog]`
|
|
1808
|
+
--
|
|
1809
|
+
|
|
1810
|
+
[[conf_ppty_tags_changelog_slug,config.tags.changelog.slug]]
|
|
1811
|
+
tags.changelog.slug::::
|
|
1812
|
+
+
|
|
1813
|
+
--
|
|
1814
|
+
The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.
|
|
1815
|
+
|
|
1816
|
+
[NOTE]
|
|
1817
|
+
This technically does not have to be a "`Slug`" String, if the system permits spaces.
|
|
1818
|
+
It just needs to exactly match whatever String the remote API returns to represent the label/tag.
|
|
1819
|
+
|
|
1820
|
+
|
|
1821
|
+
[horizontal]
|
|
1822
|
+
type;; String
|
|
1823
|
+
default;;
|
|
1824
|
+
+
|
|
1825
|
+
`+++changelog+++`
|
|
1826
|
+
path;; `xref:conf_ppty_tags_changelog_slug[config.tags.changelog.slug]`
|
|
1827
|
+
--
|
|
1828
|
+
|
|
1829
|
+
[[conf_ppty_tags_changelog_drop,config.tags.changelog.drop]]
|
|
1830
|
+
tags.changelog.drop::::
|
|
1831
|
+
+
|
|
1832
|
+
--
|
|
1833
|
+
Whether to drop this tag when creating a RHYML object from API source.
|
|
1834
|
+
Basically decides whether this tag is user-facing.
|
|
1835
|
+
|
|
1836
|
+
|
|
1837
|
+
[horizontal]
|
|
1838
|
+
type;; Boolean
|
|
1839
|
+
default;;
|
|
1840
|
+
+
|
|
1841
|
+
`+++true+++`
|
|
1842
|
+
path;; `xref:conf_ppty_tags_changelog_drop[config.tags.changelog.drop]`
|
|
1843
|
+
--
|
|
1844
|
+
|
|
1845
|
+
[[conf_ppty_tags_changelog_groupable,config.tags.changelog.groupable]]
|
|
1846
|
+
tags.changelog.groupable::::
|
|
1847
|
+
+
|
|
1848
|
+
--
|
|
1849
|
+
Whether this tag can be used to group issues in the release history.
|
|
1850
|
+
|
|
1851
|
+
|
|
1852
|
+
[horizontal]
|
|
1853
|
+
type;; Boolean
|
|
1854
|
+
default;;
|
|
1855
|
+
+
|
|
1856
|
+
`+++false+++`
|
|
1857
|
+
path;; `xref:conf_ppty_tags_changelog_groupable[config.tags.changelog.groupable]`
|
|
1858
|
+
--
|
|
1859
|
+
|
|
1860
|
+
[[conf_ppty_tags_release_note_needed,config.tags.release_note_needed]]
|
|
1861
|
+
tags.release_note_needed:::
|
|
1862
|
+
+
|
|
1863
|
+
--
|
|
1864
|
+
The tag, label, or toggle that indicates an issue requires a release note to be written. This is used by the `rhx` CLI to determine which issues are expected to contain release notes when the release-note content is empty.
|
|
1865
|
+
This tag can be automatically removed, and it does not show up in published Changelog or Release Notes (unless you add it).
|
|
1866
|
+
|
|
1867
|
+
[horizontal]
|
|
1868
|
+
path;; `xref:conf_ppty_tags_release_note_needed[config.tags.release_note_needed]`
|
|
1869
|
+
--
|
|
1870
|
+
|
|
1871
|
+
[[conf_ppty_tags_release_note_needed_slug,config.tags.release_note_needed.slug]]
|
|
1872
|
+
tags.release_note_needed.slug::::
|
|
1873
|
+
+
|
|
1874
|
+
--
|
|
1875
|
+
The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.
|
|
1876
|
+
|
|
1877
|
+
[NOTE]
|
|
1878
|
+
This technically does not have to be a "`Slug`" String, if the system permits spaces.
|
|
1879
|
+
It just needs to exactly match whatever String the remote API returns to represent the label/tag.
|
|
1880
|
+
|
|
1881
|
+
|
|
1882
|
+
[horizontal]
|
|
1883
|
+
type;; String
|
|
1884
|
+
default;;
|
|
1885
|
+
+
|
|
1886
|
+
`+++release_note_needed+++`
|
|
1887
|
+
path;; `xref:conf_ppty_tags_release_note_needed_slug[config.tags.release_note_needed.slug]`
|
|
1888
|
+
--
|
|
1889
|
+
|
|
1890
|
+
[[conf_ppty_tags_release_note_needed_drop,config.tags.release_note_needed.drop]]
|
|
1891
|
+
tags.release_note_needed.drop::::
|
|
1892
|
+
+
|
|
1893
|
+
--
|
|
1894
|
+
Whether to drop this tag when creating a RHYML object from API source.
|
|
1895
|
+
Basically decides whether this tag is user-facing.
|
|
1896
|
+
|
|
1897
|
+
|
|
1898
|
+
[horizontal]
|
|
1899
|
+
type;; Boolean
|
|
1900
|
+
default;;
|
|
1901
|
+
+
|
|
1902
|
+
`+++true+++`
|
|
1903
|
+
path;; `xref:conf_ppty_tags_release_note_needed_drop[config.tags.release_note_needed.drop]`
|
|
1904
|
+
--
|
|
1905
|
+
|
|
1906
|
+
[[conf_ppty_tags_release_note_needed_groupable,config.tags.release_note_needed.groupable]]
|
|
1907
|
+
tags.release_note_needed.groupable::::
|
|
1908
|
+
+
|
|
1909
|
+
--
|
|
1910
|
+
Whether this tag can be used to group issues in the release history.
|
|
1911
|
+
|
|
1912
|
+
|
|
1913
|
+
[horizontal]
|
|
1914
|
+
type;; Boolean
|
|
1915
|
+
default;;
|
|
1916
|
+
+
|
|
1917
|
+
`+++false+++`
|
|
1918
|
+
path;; `xref:conf_ppty_tags_release_note_needed_groupable[config.tags.release_note_needed.groupable]`
|
|
1919
|
+
--
|
|
1920
|
+
|
|
1921
|
+
[[conf_ppty_tags__your_tag_name_,config.tags.<your_tag_name>]]
|
|
1922
|
+
tags.<your_tag_name>:::
|
|
1923
|
+
+
|
|
1924
|
+
--
|
|
1925
|
+
Unlimited custom tags of your choosing, associated with a tag, label, or toggle in the Issues system _or_ manually assignable in RHYML.
|
|
1926
|
+
These property represents any arbitrarily named tags you might wish to add.
|
|
1927
|
+
No `slug` sub-property is available because the name of this property should exactly match your tag/label.
|
|
1928
|
+
|
|
1929
|
+
|
|
1930
|
+
[horizontal]
|
|
1931
|
+
path;; `xref:conf_ppty_tags__your_tag_name_[config.tags.<your_tag_name>]`
|
|
1932
|
+
--
|
|
1933
|
+
|
|
1934
|
+
[[conf_ppty_tags__your_tag_name__head,config.tags.<your_tag_name>.head]]
|
|
1935
|
+
tags.<your_tag_name>.head::::
|
|
1936
|
+
+
|
|
1937
|
+
--
|
|
1938
|
+
How this tag will display as a grouping title.
|
|
1939
|
+
|
|
1940
|
+
[horizontal]
|
|
1941
|
+
type;; String
|
|
1942
|
+
path;; `xref:conf_ppty_tags__your_tag_name__head[config.tags.<your_tag_name>.head]`
|
|
1943
|
+
--
|
|
1944
|
+
|
|
1945
|
+
[[conf_ppty_tags__your_tag_name__text,config.tags.<your_tag_name>.text]]
|
|
1946
|
+
tags.<your_tag_name>.text::::
|
|
1947
|
+
+
|
|
1948
|
+
--
|
|
1949
|
+
How this tag will display as a label.
|
|
1950
|
+
|
|
1951
|
+
[horizontal]
|
|
1952
|
+
type;; String
|
|
1953
|
+
path;; `xref:conf_ppty_tags__your_tag_name__text[config.tags.<your_tag_name>.text]`
|
|
1954
|
+
--
|
|
1955
|
+
|
|
1956
|
+
[[conf_ppty_tags__your_tag_name__icon,config.tags.<your_tag_name>.icon]]
|
|
1957
|
+
tags.<your_tag_name>.icon::::
|
|
1958
|
+
+
|
|
1959
|
+
--
|
|
1960
|
+
The icon to use for issues so-tagged.
|
|
1961
|
+
|
|
1962
|
+
|
|
1963
|
+
[horizontal]
|
|
1964
|
+
type;; String
|
|
1965
|
+
path;; `xref:conf_ppty_tags__your_tag_name__icon[config.tags.<your_tag_name>.icon]`
|
|
1966
|
+
--
|
|
1967
|
+
|
|
1968
|
+
[[conf_ppty_tags__your_tag_name__drop,config.tags.<your_tag_name>.drop]]
|
|
1969
|
+
tags.<your_tag_name>.drop::::
|
|
1970
|
+
+
|
|
1971
|
+
--
|
|
1972
|
+
Whether to drop this tag when creating a RHYML object from API source.
|
|
1973
|
+
Basically decides whether this tag is user-facing.
|
|
1974
|
+
|
|
1975
|
+
|
|
1976
|
+
[horizontal]
|
|
1977
|
+
type;; Boolean
|
|
1978
|
+
path;; `xref:conf_ppty_tags__your_tag_name__drop[config.tags.<your_tag_name>.drop]`
|
|
1979
|
+
--
|
|
1980
|
+
|
|
1981
|
+
[[conf_ppty_tags__your_tag_name__groupable,config.tags.<your_tag_name>.groupable]]
|
|
1982
|
+
tags.<your_tag_name>.groupable::::
|
|
1983
|
+
+
|
|
1984
|
+
--
|
|
1985
|
+
Whether this tag can be used to group issues in the release history.
|
|
1986
|
+
|
|
1987
|
+
|
|
1988
|
+
[horizontal]
|
|
1989
|
+
type;; Boolean
|
|
1990
|
+
path;; `xref:conf_ppty_tags__your_tag_name__groupable[config.tags.<your_tag_name>.groupable]`
|
|
1991
|
+
--
|
|
1992
|
+
|
|
1993
|
+
[[conf_ppty_links,config.links]]
|
|
1994
|
+
links::
|
|
1995
|
+
+
|
|
1996
|
+
--
|
|
1997
|
+
Path templates and other metadata for building links to online references like issues (web) and commits (git).
|
|
1998
|
+
|
|
1999
|
+
|
|
2000
|
+
[horizontal]
|
|
2001
|
+
path;; `xref:conf_ppty_links[config.links]`
|
|
2002
|
+
--
|
|
2003
|
+
|
|
2004
|
+
[[conf_ppty_links_web,config.links.web]]
|
|
2005
|
+
links.web:::
|
|
2006
|
+
+
|
|
2007
|
+
--
|
|
2008
|
+
Properties to enable linking to issue-management system ticket URLs corresponding to individual changes.
|
|
2009
|
+
|
|
2010
|
+
[horizontal]
|
|
2011
|
+
path;; `xref:conf_ppty_links_web[config.links.web]`
|
|
2012
|
+
--
|
|
2013
|
+
|
|
2014
|
+
[[conf_ppty_links_web_href,config.links.web.href]]
|
|
2015
|
+
links.web.href::::
|
|
2016
|
+
+
|
|
2017
|
+
--
|
|
2018
|
+
The URL template for the links to the issue-management system ticket URL.
|
|
2019
|
+
May include `{{ tick }}` placeholder or any other from the change object.
|
|
2020
|
+
|
|
2021
|
+
For example:
|
|
2022
|
+
|
|
2023
|
+
* `https://jira.example.com/issues/{{ tick }}`
|
|
2024
|
+
* `https://github.com/example/project/issues/{{ tick }}`
|
|
2025
|
+
|
|
2026
|
+
Web links must still be enabled in <<conf_ppty_history_items_show_issue_links>>, <<conf_ppty_changelog_items_show_issue_links>>, or <<conf_ppty_notes_items_show_issue_links>> properties.
|
|
2027
|
+
|
|
2028
|
+
|
|
2029
|
+
[horizontal]
|
|
2030
|
+
type;; Liquid
|
|
2031
|
+
path;; `xref:conf_ppty_links_web_href[config.links.web.href]`
|
|
2032
|
+
--
|
|
2033
|
+
|
|
2034
|
+
[[conf_ppty_links_web_icon,config.links.web.icon]]
|
|
2035
|
+
links.web.icon::::
|
|
2036
|
+
+
|
|
2037
|
+
--
|
|
2038
|
+
The icon to use for the issue links.
|
|
2039
|
+
|
|
2040
|
+
[horizontal]
|
|
2041
|
+
type;; String
|
|
2042
|
+
default;;
|
|
2043
|
+
+
|
|
2044
|
+
`+++ticket+++`
|
|
2045
|
+
path;; `xref:conf_ppty_links_web_icon[config.links.web.icon]`
|
|
2046
|
+
--
|
|
2047
|
+
|
|
2048
|
+
[[conf_ppty_links_web_text,config.links.web.text]]
|
|
2049
|
+
links.web.text::::
|
|
2050
|
+
+
|
|
2051
|
+
--
|
|
2052
|
+
The text label to use for the issue links.
|
|
2053
|
+
May include placeholders for any variables in the `change` object.
|
|
2054
|
+
|
|
2055
|
+
|
|
2056
|
+
[horizontal]
|
|
2057
|
+
type;; Liquid
|
|
2058
|
+
default;;
|
|
2059
|
+
+
|
|
2060
|
+
`+++{{ tick }}+++`
|
|
2061
|
+
path;; `xref:conf_ppty_links_web_text[config.links.web.text]`
|
|
2062
|
+
--
|
|
2063
|
+
|
|
2064
|
+
[[conf_ppty_links_git,config.links.git]]
|
|
2065
|
+
links.git:::
|
|
2066
|
+
+
|
|
2067
|
+
--
|
|
2068
|
+
Properties to enable linking to the Git commit URL corresponding to individual changes.
|
|
2069
|
+
|
|
2070
|
+
|
|
2071
|
+
[horizontal]
|
|
2072
|
+
path;; `xref:conf_ppty_links_git[config.links.git]`
|
|
2073
|
+
--
|
|
2074
|
+
|
|
2075
|
+
[[conf_ppty_links_git_href,config.links.git.href]]
|
|
2076
|
+
links.git.href::::
|
|
2077
|
+
+
|
|
2078
|
+
--
|
|
2079
|
+
The URL template for the git links in the release history listings.
|
|
2080
|
+
May include `{{ hash }}` placeholder.
|
|
2081
|
+
|
|
2082
|
+
For example:
|
|
2083
|
+
|
|
2084
|
+
* `https://git.example.com/project/commit/{{ hash }}`
|
|
2085
|
+
* `https://github.com/example/project/commit/{{ hash }}`
|
|
2086
|
+
|
|
2087
|
+
Git links must still be enabled in <<conf_ppty_history_items_show_git_links>>, <<conf_ppty_changelog_items_show_git_links>>, or <<conf_ppty_notes_items_show_git_links>> properties.
|
|
2088
|
+
|
|
2089
|
+
|
|
2090
|
+
[horizontal]
|
|
2091
|
+
type;; Liquid
|
|
2092
|
+
path;; `xref:conf_ppty_links_git_href[config.links.git.href]`
|
|
2093
|
+
--
|
|
2094
|
+
|
|
2095
|
+
[[conf_ppty_links_git_icon,config.links.git.icon]]
|
|
2096
|
+
links.git.icon::::
|
|
2097
|
+
+
|
|
2098
|
+
--
|
|
2099
|
+
The icon to use for the git links.
|
|
2100
|
+
|
|
2101
|
+
[horizontal]
|
|
2102
|
+
type;; String
|
|
2103
|
+
default;;
|
|
2104
|
+
+
|
|
2105
|
+
`+++code-fork+++`
|
|
2106
|
+
path;; `xref:conf_ppty_links_git_icon[config.links.git.icon]`
|
|
2107
|
+
--
|
|
2108
|
+
|
|
2109
|
+
[[conf_ppty_links_git_text,config.links.git.text]]
|
|
2110
|
+
links.git.text::::
|
|
2111
|
+
+
|
|
2112
|
+
--
|
|
2113
|
+
The text label to use for the git links.
|
|
2114
|
+
May include `{{ hash }}` placeholder.
|
|
2115
|
+
|
|
2116
|
+
|
|
2117
|
+
[horizontal]
|
|
2118
|
+
type;; Liquid
|
|
2119
|
+
default;;
|
|
2120
|
+
+
|
|
2121
|
+
....
|
|
2122
|
+
{{ hash | slice: 0, 7 }}
|
|
2123
|
+
....
|
|
2124
|
+
path;; `xref:conf_ppty_links_git_text[config.links.git.text]`
|
|
2125
|
+
--
|
|
2126
|
+
|
|
2127
|
+
[[conf_ppty_links_user,config.links.user]]
|
|
2128
|
+
links.user:::
|
|
2129
|
+
+
|
|
2130
|
+
--
|
|
2131
|
+
|
|
2132
|
+
|
|
2133
|
+
[horizontal]
|
|
2134
|
+
path;; `xref:conf_ppty_links_user[config.links.user]`
|
|
2135
|
+
--
|
|
2136
|
+
|
|
2137
|
+
[[conf_ppty_links_user_href,config.links.user.href]]
|
|
2138
|
+
links.user.href::::
|
|
2139
|
+
+
|
|
2140
|
+
--
|
|
2141
|
+
A template for forming links to bio or homepages for the lead contributor of a change.
|
|
2142
|
+
May include `{{ username }}` placeholder.
|
|
2143
|
+
|
|
2144
|
+
For example:
|
|
2145
|
+
|
|
2146
|
+
* `https://github.com/{{ username }}`
|
|
2147
|
+
|
|
2148
|
+
|
|
2149
|
+
[horizontal]
|
|
2150
|
+
type;; Template
|
|
2151
|
+
templating;; liquid, delayed rendering
|
|
2152
|
+
path;; `xref:conf_ppty_links_user_href[config.links.user.href]`
|
|
2153
|
+
--
|
|
2154
|
+
|
|
2155
|
+
[[conf_ppty_links_user_icon,config.links.user.icon]]
|
|
2156
|
+
links.user.icon::::
|
|
2157
|
+
+
|
|
2158
|
+
--
|
|
2159
|
+
The icon to use for the user links.
|
|
2160
|
+
|
|
2161
|
+
[horizontal]
|
|
2162
|
+
type;; String
|
|
2163
|
+
default;;
|
|
2164
|
+
+
|
|
2165
|
+
`+++user+++`
|
|
2166
|
+
path;; `xref:conf_ppty_links_user_icon[config.links.user.icon]`
|
|
2167
|
+
--
|
|
2168
|
+
|
|
2169
|
+
[[conf_ppty_links_user_text,config.links.user.text]]
|
|
2170
|
+
links.user.text::::
|
|
2171
|
+
+
|
|
2172
|
+
--
|
|
2173
|
+
The text label to use for the user links.
|
|
2174
|
+
May include `{{ username }}` placeholder.
|
|
2175
|
+
|
|
2176
|
+
|
|
2177
|
+
[horizontal]
|
|
2178
|
+
type;; Liquid
|
|
2179
|
+
default;;
|
|
2180
|
+
+
|
|
2181
|
+
`+++{{ username }}+++`
|
|
2182
|
+
path;; `xref:conf_ppty_links_user_text[config.links.user.text]`
|
|
2183
|
+
--
|
|
2184
|
+
|
|
2185
|
+
[[conf_ppty_links_get,config.links.get]]
|
|
2186
|
+
links.get:::
|
|
2187
|
+
+
|
|
2188
|
+
--
|
|
2189
|
+
Properties to enable linking to the download or installation instructions for the release.
|
|
2190
|
+
|
|
2191
|
+
|
|
2192
|
+
[horizontal]
|
|
2193
|
+
path;; `xref:conf_ppty_links_get[config.links.get]`
|
|
2194
|
+
--
|
|
2195
|
+
|
|
2196
|
+
[[conf_ppty_links_get_href,config.links.get.href]]
|
|
2197
|
+
links.get.href::::
|
|
2198
|
+
+
|
|
2199
|
+
--
|
|
2200
|
+
The URL template for the release download page.
|
|
2201
|
+
May include `{{ code }}` (version ID) as placeholder.
|
|
2202
|
+
|
|
2203
|
+
For example:
|
|
2204
|
+
|
|
2205
|
+
* `https://example.com/releases/{{ code }}`
|
|
2206
|
+
* `https://example.com/dl/{{ code | replace: '.', '-' }}`
|
|
2207
|
+
|
|
2208
|
+
The existence of this property causes the download link or element to appear in the Release History page.
|
|
2209
|
+
|
|
2210
|
+
|
|
2211
|
+
[horizontal]
|
|
2212
|
+
type;; Liquid
|
|
2213
|
+
path;; `xref:conf_ppty_links_get_href[config.links.get.href]`
|
|
2214
|
+
--
|
|
2215
|
+
|
|
2216
|
+
[[conf_ppty_links_get_icon,config.links.get.icon]]
|
|
2217
|
+
links.get.icon::::
|
|
2218
|
+
+
|
|
2219
|
+
--
|
|
2220
|
+
The icon to use for the download links.
|
|
2221
|
+
|
|
2222
|
+
[horizontal]
|
|
2223
|
+
type;; String
|
|
2224
|
+
default;;
|
|
2225
|
+
+
|
|
2226
|
+
`+++download+++`
|
|
2227
|
+
path;; `xref:conf_ppty_links_get_icon[config.links.get.icon]`
|
|
2228
|
+
--
|
|
2229
|
+
|
|
2230
|
+
[[conf_ppty_links_get_text,config.links.get.text]]
|
|
2231
|
+
links.get.text::::
|
|
2232
|
+
+
|
|
2233
|
+
--
|
|
2234
|
+
The text label to use for the download links.
|
|
2235
|
+
May include `{{ code }}` (version ID) as placeholder.
|
|
2236
|
+
|
|
2237
|
+
|
|
2238
|
+
[horizontal]
|
|
2239
|
+
type;; Liquid
|
|
2240
|
+
default;;
|
|
2241
|
+
+
|
|
2242
|
+
`+++Download {{ code }}+++`
|
|
2243
|
+
path;; `xref:conf_ppty_links_get_text[config.links.get.text]`
|
|
2244
|
+
--
|
|
2245
|
+
|
|
2246
|
+
[[conf_ppty_paths,config.paths]]
|
|
2247
|
+
paths::
|
|
2248
|
+
+
|
|
2249
|
+
--
|
|
2250
|
+
The configuration for the paths to include in the release history listings.
|
|
2251
|
+
|
|
2252
|
+
|
|
2253
|
+
[horizontal]
|
|
2254
|
+
path;; `xref:conf_ppty_paths[config.paths]`
|
|
2255
|
+
--
|
|
2256
|
+
|
|
2257
|
+
[[conf_ppty_paths_drafts_dir,config.paths.drafts_dir]]
|
|
2258
|
+
paths.drafts_dir:::
|
|
2259
|
+
+
|
|
2260
|
+
--
|
|
2261
|
+
The path to the output directory for generated drafts (YAML, Markdown, AsciiDoc).
|
|
2262
|
+
|
|
2263
|
+
|
|
2264
|
+
[horizontal]
|
|
2265
|
+
type;; Path
|
|
2266
|
+
default;;
|
|
2267
|
+
+
|
|
2268
|
+
`+++_drafts+++`
|
|
2269
|
+
path;; `xref:conf_ppty_paths_drafts_dir[config.paths.drafts_dir]`
|
|
2270
|
+
--
|
|
2271
|
+
|
|
2272
|
+
[[conf_ppty_paths_enrich_dir,config.paths.enrich_dir]]
|
|
2273
|
+
paths.enrich_dir:::
|
|
2274
|
+
+
|
|
2275
|
+
--
|
|
2276
|
+
The path to the output directory for enriched files (HTML, PDF).
|
|
2277
|
+
|
|
2278
|
+
|
|
2279
|
+
[horizontal]
|
|
2280
|
+
type;; Path
|
|
2281
|
+
default;;
|
|
2282
|
+
+
|
|
2283
|
+
`+++_publish+++`
|
|
2284
|
+
path;; `xref:conf_ppty_paths_enrich_dir[config.paths.enrich_dir]`
|
|
2285
|
+
--
|
|
2286
|
+
|
|
2287
|
+
[[conf_ppty_paths_output_dir,config.paths.output_dir]]
|
|
2288
|
+
paths.output_dir:::
|
|
2289
|
+
+
|
|
2290
|
+
--
|
|
2291
|
+
The base directory from which any other output paths are relative.
|
|
2292
|
+
This is the parent directory for <<conf_ppty_paths_drafts_dir>> and <<conf_ppty_paths_enrich_dir>>.
|
|
2293
|
+
It also serves as a base path for any argued files.
|
|
2294
|
+
|
|
2295
|
+
Example: If this property is set to `_output`, and <<conf_ppty_paths_drafts_dir>> is `_drafts`, then running `rhx 1.1.0 --md --yaml --asciidoc` would generate the files at `_releasehx/_drafts/`.
|
|
2296
|
+
|
|
2297
|
+
|
|
2298
|
+
[horizontal]
|
|
2299
|
+
type;; Path
|
|
2300
|
+
default;;
|
|
2301
|
+
+
|
|
2302
|
+
`+++.+++`
|
|
2303
|
+
path;; `xref:conf_ppty_paths_output_dir[config.paths.output_dir]`
|
|
2304
|
+
--
|
|
2305
|
+
|
|
2306
|
+
[[conf_ppty_paths_draft_filename,config.paths.draft_filename]]
|
|
2307
|
+
paths.draft_filename:::
|
|
2308
|
+
+
|
|
2309
|
+
--
|
|
2310
|
+
The filename template for the draft files.
|
|
2311
|
+
|
|
2312
|
+
May include `{{ version }}` and `{{ format_ext }}` as placeholders, where `format_ext` is determined at file-write time and based on preferences defined in the `config.extensions` block.
|
|
2313
|
+
|
|
2314
|
+
|
|
2315
|
+
[horizontal]
|
|
2316
|
+
type;; FileName
|
|
2317
|
+
templating;; liquid, delayed rendering
|
|
2318
|
+
default;;
|
|
2319
|
+
+
|
|
2320
|
+
....
|
|
2321
|
+
{{ version }}.{{ format_ext }}
|
|
2322
|
+
....
|
|
2323
|
+
path;; `xref:conf_ppty_paths_draft_filename[config.paths.draft_filename]`
|
|
2324
|
+
--
|
|
2325
|
+
|
|
2326
|
+
[[conf_ppty_paths_enrich_filename,config.paths.enrich_filename]]
|
|
2327
|
+
paths.enrich_filename:::
|
|
2328
|
+
+
|
|
2329
|
+
--
|
|
2330
|
+
The filename template for the enriched files.
|
|
2331
|
+
|
|
2332
|
+
May include `{{ version }}` and `{{ format_ext }}` as placeholders, where `format_ext`.
|
|
2333
|
+
|
|
2334
|
+
Published file extensions must be: `.html`, `.pdf`.
|
|
2335
|
+
They can be set with <<conf_ppty_extensions_html>> and <<conf_ppty_extensions_pdf>> properties, respectively.
|
|
2336
|
+
|
|
2337
|
+
|
|
2338
|
+
[horizontal]
|
|
2339
|
+
type;; FileName
|
|
2340
|
+
templating;; liquid, delayed rendering
|
|
2341
|
+
default;;
|
|
2342
|
+
+
|
|
2343
|
+
....
|
|
2344
|
+
release-history-{{ version }}.{{ format_ext }}
|
|
2345
|
+
....
|
|
2346
|
+
path;; `xref:conf_ppty_paths_enrich_filename[config.paths.enrich_filename]`
|
|
2347
|
+
--
|
|
2348
|
+
|
|
2349
|
+
[[conf_ppty_paths_payloads_dir,config.paths.payloads_dir]]
|
|
2350
|
+
paths.payloads_dir:::
|
|
2351
|
+
+
|
|
2352
|
+
--
|
|
2353
|
+
The path to the directory for storing API payloads.
|
|
2354
|
+
This is used to store the raw API responses for debugging and reference.
|
|
2355
|
+
|
|
2356
|
+
|
|
2357
|
+
[horizontal]
|
|
2358
|
+
type;; Path
|
|
2359
|
+
default;;
|
|
2360
|
+
+
|
|
2361
|
+
`+++_payloads+++`
|
|
2362
|
+
path;; `xref:conf_ppty_paths_payloads_dir[config.paths.payloads_dir]`
|
|
2363
|
+
--
|
|
2364
|
+
|
|
2365
|
+
[[conf_ppty_paths_cache,config.paths.cache]]
|
|
2366
|
+
paths.cache:::
|
|
2367
|
+
+
|
|
2368
|
+
--
|
|
2369
|
+
Settings for the ReleaseHx application cache.
|
|
2370
|
+
|
|
2371
|
+
|
|
2372
|
+
[horizontal]
|
|
2373
|
+
path;; `xref:conf_ppty_paths_cache[config.paths.cache]`
|
|
2374
|
+
--
|
|
2375
|
+
|
|
2376
|
+
[[conf_ppty_paths_cache_enabled,config.paths.cache.enabled]]
|
|
2377
|
+
paths.cache.enabled::::
|
|
2378
|
+
+
|
|
2379
|
+
--
|
|
2380
|
+
Enable automatic caching of API responses to improve performance and reduce API calls.
|
|
2381
|
+
|
|
2382
|
+
|
|
2383
|
+
[horizontal]
|
|
2384
|
+
type;; Boolean
|
|
2385
|
+
default;;
|
|
2386
|
+
+
|
|
2387
|
+
`+++false+++`
|
|
2388
|
+
path;; `xref:conf_ppty_paths_cache_enabled[config.paths.cache.enabled]`
|
|
2389
|
+
--
|
|
2390
|
+
|
|
2391
|
+
[[conf_ppty_paths_cache_ttl_hours,config.paths.cache.ttl_hours]]
|
|
2392
|
+
paths.cache.ttl_hours::::
|
|
2393
|
+
+
|
|
2394
|
+
--
|
|
2395
|
+
Time-to-live for cached API responses in hours.
|
|
2396
|
+
After this time, cached responses will be considered stale and fresh data will be fetched from the API.
|
|
2397
|
+
|
|
2398
|
+
|
|
2399
|
+
[horizontal]
|
|
2400
|
+
type;; Integer
|
|
2401
|
+
default;;
|
|
2402
|
+
+
|
|
2403
|
+
`+++24+++`
|
|
2404
|
+
path;; `xref:conf_ppty_paths_cache_ttl_hours[config.paths.cache.ttl_hours]`
|
|
2405
|
+
--
|
|
2406
|
+
|
|
2407
|
+
[[conf_ppty_paths_cache_dir,config.paths.cache.dir]]
|
|
2408
|
+
paths.cache.dir::::
|
|
2409
|
+
+
|
|
2410
|
+
--
|
|
2411
|
+
The directory where cached API responses are stored.
|
|
2412
|
+
Cache files are organized by API type, project, and version.
|
|
2413
|
+
|
|
2414
|
+
|
|
2415
|
+
[horizontal]
|
|
2416
|
+
type;; Path
|
|
2417
|
+
default;;
|
|
2418
|
+
+
|
|
2419
|
+
`+++.releasehx/cache+++`
|
|
2420
|
+
path;; `xref:conf_ppty_paths_cache_dir[config.paths.cache.dir]`
|
|
2421
|
+
--
|
|
2422
|
+
|
|
2423
|
+
[[conf_ppty_paths_cache_prompt_gitignore,config.paths.cache.prompt_gitignore]]
|
|
2424
|
+
paths.cache.prompt_gitignore::::
|
|
2425
|
+
+
|
|
2426
|
+
--
|
|
2427
|
+
Quietly check the project's git status after writing to cache and, if cache is found untracked, suggest adding this cache path to .gitignore or deleting and disabling caching.
|
|
2428
|
+
|
|
2429
|
+
|
|
2430
|
+
[horizontal]
|
|
2431
|
+
type;; Boolean
|
|
2432
|
+
default;;
|
|
2433
|
+
+
|
|
2434
|
+
`+++true+++`
|
|
2435
|
+
path;; `xref:conf_ppty_paths_cache_prompt_gitignore[config.paths.cache.prompt_gitignore]`
|
|
2436
|
+
--
|
|
2437
|
+
|
|
2438
|
+
[[conf_ppty_paths_templates_dir,config.paths.templates_dir]]
|
|
2439
|
+
paths.templates_dir:::
|
|
2440
|
+
+
|
|
2441
|
+
--
|
|
2442
|
+
The path to the templates directory.
|
|
2443
|
+
|
|
2444
|
+
|
|
2445
|
+
[horizontal]
|
|
2446
|
+
type;; Path
|
|
2447
|
+
default;;
|
|
2448
|
+
+
|
|
2449
|
+
`+++_templates+++`
|
|
2450
|
+
path;; `xref:conf_ppty_paths_templates_dir[config.paths.templates_dir]`
|
|
2451
|
+
--
|
|
2452
|
+
|
|
2453
|
+
[[conf_ppty_paths_mappings_dir,config.paths.mappings_dir]]
|
|
2454
|
+
paths.mappings_dir:::
|
|
2455
|
+
+
|
|
2456
|
+
--
|
|
2457
|
+
The path to the directory containing user-defined API mappings.
|
|
2458
|
+
|
|
2459
|
+
ReleaseHx checks here first for a file named `<origin_source_name>.yaml` or `<origin_source_name>.yml`, where `<origin_source_name>` is set in the `origin.source` property.
|
|
2460
|
+
If no file is found, the mapping is expected to be supplied by the gem (see `<GEM_ROOT>/mappings/`).
|
|
2461
|
+
|
|
2462
|
+
|
|
2463
|
+
[horizontal]
|
|
2464
|
+
type;; String
|
|
2465
|
+
default;;
|
|
2466
|
+
+
|
|
2467
|
+
`+++_mappings+++`
|
|
2468
|
+
path;; `xref:conf_ppty_paths_mappings_dir[config.paths.mappings_dir]`
|
|
2469
|
+
--
|
|
2470
|
+
|
|
2471
|
+
[[conf_ppty_paths_api_clients_dir,config.paths.api_clients_dir]]
|
|
2472
|
+
paths.api_clients_dir:::
|
|
2473
|
+
+
|
|
2474
|
+
--
|
|
2475
|
+
The path to the directory containing user-defined API client definitions.
|
|
2476
|
+
|
|
2477
|
+
ReleaseHx checks here first for a file named `<api_from_name>.yaml`, where `<api_from_name>` is set in the <<conf_ppty_origin_source>>` property.
|
|
2478
|
+
If no file is found, the client class is expected to be supplied by the gem (see `<GEM_ROOT>/lib/releasehx/apis/`).
|
|
2479
|
+
|
|
2480
|
+
|
|
2481
|
+
[horizontal]
|
|
2482
|
+
type;; String
|
|
2483
|
+
default;;
|
|
2484
|
+
+
|
|
2485
|
+
`+++_apis+++`
|
|
2486
|
+
path;; `xref:conf_ppty_paths_api_clients_dir[config.paths.api_clients_dir]`
|
|
2487
|
+
--
|
|
2488
|
+
|
|
2489
|
+
[[conf_ppty_modes,config.modes]]
|
|
2490
|
+
modes::
|
|
2491
|
+
+
|
|
2492
|
+
--
|
|
2493
|
+
Default settings for `rhx` command executions.
|
|
2494
|
+
|
|
2495
|
+
|
|
2496
|
+
[horizontal]
|
|
2497
|
+
path;; `xref:conf_ppty_modes[config.modes]`
|
|
2498
|
+
--
|
|
2499
|
+
|
|
2500
|
+
[[conf_ppty_modes_wrapped,config.modes.wrapped]]
|
|
2501
|
+
modes.wrapped:::
|
|
2502
|
+
+
|
|
2503
|
+
--
|
|
2504
|
+
Include (or exclude) head, header, and footer elements when enriching to HTML.
|
|
2505
|
+
|
|
2506
|
+
|
|
2507
|
+
[horizontal]
|
|
2508
|
+
type;; Boolean
|
|
2509
|
+
default;;
|
|
2510
|
+
+
|
|
2511
|
+
`+++false+++`
|
|
2512
|
+
path;; `xref:conf_ppty_modes_wrapped[config.modes.wrapped]`
|
|
2513
|
+
--
|
|
2514
|
+
|
|
2515
|
+
[[conf_ppty_modes_html_frontmatter,config.modes.html_frontmatter]]
|
|
2516
|
+
modes.html_frontmatter:::
|
|
2517
|
+
+
|
|
2518
|
+
--
|
|
2519
|
+
Include frontmatter in the rendered HTML.
|
|
2520
|
+
|
|
2521
|
+
See the `templates.page_frontmatter` property for details.
|
|
2522
|
+
|
|
2523
|
+
|
|
2524
|
+
[horizontal]
|
|
2525
|
+
type;; Boolean
|
|
2526
|
+
default;;
|
|
2527
|
+
+
|
|
2528
|
+
`+++true+++`
|
|
2529
|
+
path;; `xref:conf_ppty_modes_html_frontmatter[config.modes.html_frontmatter]`
|
|
2530
|
+
--
|
|
2531
|
+
|
|
2532
|
+
[[conf_ppty_modes_markdown_frontmatter,config.modes.markdown_frontmatter]]
|
|
2533
|
+
modes.markdown_frontmatter:::
|
|
2534
|
+
+
|
|
2535
|
+
--
|
|
2536
|
+
Include frontmatter in Markdown drafts.
|
|
2537
|
+
|
|
2538
|
+
Uses the `templates.markdown_frontmatter` template.
|
|
2539
|
+
|
|
2540
|
+
|
|
2541
|
+
[horizontal]
|
|
2542
|
+
type;; Boolean
|
|
2543
|
+
default;;
|
|
2544
|
+
+
|
|
2545
|
+
`+++false+++`
|
|
2546
|
+
path;; `xref:conf_ppty_modes_markdown_frontmatter[config.modes.markdown_frontmatter]`
|
|
2547
|
+
--
|
|
2548
|
+
|
|
2549
|
+
[[conf_ppty_modes_asciidoc_frontmatter,config.modes.asciidoc_frontmatter]]
|
|
2550
|
+
modes.asciidoc_frontmatter:::
|
|
2551
|
+
+
|
|
2552
|
+
--
|
|
2553
|
+
Include frontmatter in AsciiDoc drafts.
|
|
2554
|
+
|
|
2555
|
+
Uses the `templates.asciidoc_frontmatter` template.
|
|
2556
|
+
|
|
2557
|
+
|
|
2558
|
+
[horizontal]
|
|
2559
|
+
type;; Boolean
|
|
2560
|
+
path;; `xref:conf_ppty_modes_asciidoc_frontmatter[config.modes.asciidoc_frontmatter]`
|
|
2561
|
+
--
|
|
2562
|
+
|
|
2563
|
+
[[conf_ppty_modes_fetch,config.modes.fetch]]
|
|
2564
|
+
modes.fetch:::
|
|
2565
|
+
+
|
|
2566
|
+
--
|
|
2567
|
+
What to fetch when gathering issues from API.
|
|
2568
|
+
|
|
2569
|
+
Valid entries:
|
|
2570
|
+
|
|
2571
|
+
* `all-tagged` -- fetches issues with `release_note_needed` tag.
|
|
2572
|
+
|
|
2573
|
+
|
|
2574
|
+
[horizontal]
|
|
2575
|
+
type;; String
|
|
2576
|
+
default;;
|
|
2577
|
+
+
|
|
2578
|
+
`+++notes-only+++`
|
|
2579
|
+
path;; `xref:conf_ppty_modes_fetch[config.modes.fetch]`
|
|
2580
|
+
--
|
|
2581
|
+
|
|
2582
|
+
[[conf_ppty_modes_remove_excess_lines,config.modes.remove_excess_lines]]
|
|
2583
|
+
modes.remove_excess_lines:::
|
|
2584
|
+
+
|
|
2585
|
+
--
|
|
2586
|
+
Reduces _N_+ consecutive blank lines to _N_ lines.
|
|
2587
|
+
|
|
2588
|
+
|
|
2589
|
+
[horizontal]
|
|
2590
|
+
type;; Integer
|
|
2591
|
+
default;;
|
|
2592
|
+
+
|
|
2593
|
+
`+++1+++`
|
|
2594
|
+
path;; `xref:conf_ppty_modes_remove_excess_lines[config.modes.remove_excess_lines]`
|
|
2595
|
+
--
|
|
2596
|
+
|
|
2597
|
+
[[conf_ppty_rhyml,config.rhyml]]
|
|
2598
|
+
rhyml::
|
|
2599
|
+
+
|
|
2600
|
+
--
|
|
2601
|
+
Settings related to RHYML data objects and documents.
|
|
2602
|
+
|
|
2603
|
+
|
|
2604
|
+
[horizontal]
|
|
2605
|
+
path;; `xref:conf_ppty_rhyml[config.rhyml]`
|
|
2606
|
+
--
|
|
2607
|
+
|
|
2608
|
+
[[conf_ppty_rhyml_markup,config.rhyml.markup]]
|
|
2609
|
+
rhyml.markup:::
|
|
2610
|
+
+
|
|
2611
|
+
--
|
|
2612
|
+
The markup format for the `note` or `memo` properties of RHYML objects.
|
|
2613
|
+
|
|
2614
|
+
Change to `asciidoc` to convert upstream Markdown to AsciiDoc.
|
|
2615
|
+
|
|
2616
|
+
This setting can be set (and overridden) with the `$config.markup` property in any given RHYML document.
|
|
2617
|
+
|
|
2618
|
+
|
|
2619
|
+
[horizontal]
|
|
2620
|
+
type;; String
|
|
2621
|
+
default;;
|
|
2622
|
+
+
|
|
2623
|
+
`+++markdown+++`
|
|
2624
|
+
path;; `xref:conf_ppty_rhyml_markup[config.rhyml.markup]`
|
|
2625
|
+
--
|
|
2626
|
+
|
|
2627
|
+
[[conf_ppty_rhyml_chid,config.rhyml.chid]]
|
|
2628
|
+
rhyml.chid:::
|
|
2629
|
+
+
|
|
2630
|
+
--
|
|
2631
|
+
The template for automatic change ID/slug construction, if available at draft-time.
|
|
2632
|
+
|
|
2633
|
+
A liquid template with access to local variables including:
|
|
2634
|
+
|
|
2635
|
+
Release variables::
|
|
2636
|
+
|
|
2637
|
+
* `release.code`
|
|
2638
|
+
* `release.date`
|
|
2639
|
+
* `release.hash`
|
|
2640
|
+
|
|
2641
|
+
Work/change item variables::
|
|
2642
|
+
|
|
2643
|
+
* `change.tick`
|
|
2644
|
+
* `change.hash`
|
|
2645
|
+
* `change.type`
|
|
2646
|
+
* `change.part`
|
|
2647
|
+
* `change.summ`
|
|
2648
|
+
|
|
2649
|
+
The template established here is only for drafting `chid` slugs.
|
|
2650
|
+
It is not used down the line to validate `chid` entries, which will be valid as long as they are Slug-formatted strings.
|
|
2651
|
+
|
|
2652
|
+
|
|
2653
|
+
[horizontal]
|
|
2654
|
+
type;; Slug
|
|
2655
|
+
templating;; liquid, delayed rendering
|
|
2656
|
+
default;;
|
|
2657
|
+
+
|
|
2658
|
+
....
|
|
2659
|
+
{{- change.tick }}-{{ change.summ | truncate: 20 | slugify }}
|
|
2660
|
+
|
|
2661
|
+
....
|
|
2662
|
+
path;; `xref:conf_ppty_rhyml_chid[config.rhyml.chid]`
|
|
2663
|
+
--
|
|
2664
|
+
|
|
2665
|
+
[[conf_ppty_rhyml_empty_notes,config.rhyml.empty_notes]]
|
|
2666
|
+
rhyml.empty_notes:::
|
|
2667
|
+
+
|
|
2668
|
+
--
|
|
2669
|
+
What to do for issues that lack a release note but have the `release_note_needed` tag (or a label otherwise declared in <<conf_ppty_tags_release_note_needed_slug>>).
|
|
2670
|
+
|
|
2671
|
+
* `skip` the issue when drafting notes (can update with `--amend`)
|
|
2672
|
+
* `empty` include the issue with an empty note
|
|
2673
|
+
* `dump` the complete issue body/description and commit message as the `note` property
|
|
2674
|
+
// * `ai` generate a note using generative AI
|
|
2675
|
+
|
|
2676
|
+
|
|
2677
|
+
[horizontal]
|
|
2678
|
+
type;; String
|
|
2679
|
+
default;;
|
|
2680
|
+
+
|
|
2681
|
+
`+++skip+++`
|
|
2682
|
+
path;; `xref:conf_ppty_rhyml_empty_notes[config.rhyml.empty_notes]`
|
|
2683
|
+
--
|
|
2684
|
+
|
|
2685
|
+
[[conf_ppty_rhyml_empty_notes_content,config.rhyml.empty_notes_content]]
|
|
2686
|
+
rhyml.empty_notes_content:::
|
|
2687
|
+
+
|
|
2688
|
+
--
|
|
2689
|
+
The content to use for empty notes when <<conf_ppty_rhyml_empty_notes>> is set to 'empty'
|
|
2690
|
+
|
|
2691
|
+
|
|
2692
|
+
[horizontal]
|
|
2693
|
+
type;; String
|
|
2694
|
+
default;;
|
|
2695
|
+
+
|
|
2696
|
+
`+++RELEASE NOTE NEEDED+++`
|
|
2697
|
+
path;; `xref:conf_ppty_rhyml_empty_notes_content[config.rhyml.empty_notes_content]`
|
|
2698
|
+
--
|
|
2699
|
+
|
|
2700
|
+
[[conf_ppty_rhyml_max_parts,config.rhyml.max_parts]]
|
|
2701
|
+
rhyml.max_parts:::
|
|
2702
|
+
+
|
|
2703
|
+
--
|
|
2704
|
+
The maximum number of affected _part_ categories that can be recorded for a single change.
|
|
2705
|
+
|
|
2706
|
+
When `0`, _part_ records are disabled for all changes.
|
|
2707
|
+
When `1`, only one _part_ is allowed per change (String).
|
|
2708
|
+
When `2` or more, a single affiliated _part_ category may be recorded using the `part` property, but more than one must be recorded using the `parts` property (Array).
|
|
2709
|
+
|
|
2710
|
+
|
|
2711
|
+
[horizontal]
|
|
2712
|
+
type;; Integer
|
|
2713
|
+
default;;
|
|
2714
|
+
+
|
|
2715
|
+
`+++1+++`
|
|
2716
|
+
path;; `xref:conf_ppty_rhyml_max_parts[config.rhyml.max_parts]`
|
|
2717
|
+
--
|
|
2718
|
+
|
|
2719
|
+
[[conf_ppty_rhyml_pasterize_summ,config.rhyml.pasterize_summ]]
|
|
2720
|
+
rhyml.pasterize_summ:::
|
|
2721
|
+
+
|
|
2722
|
+
--
|
|
2723
|
+
Whether to convert verbs in the `summ` property to past tense when drafting.
|
|
2724
|
+
Replaces common words like `adds` with `added`, `fix` with `fixed`, etc.
|
|
2725
|
+
|
|
2726
|
+
|
|
2727
|
+
[horizontal]
|
|
2728
|
+
type;; Boolean
|
|
2729
|
+
default;;
|
|
2730
|
+
+
|
|
2731
|
+
`+++false+++`
|
|
2732
|
+
path;; `xref:conf_ppty_rhyml_pasterize_summ[config.rhyml.pasterize_summ]`
|
|
2733
|
+
--
|
|
2734
|
+
|
|
2735
|
+
[[conf_ppty_rhyml_pasterize_head,config.rhyml.pasterize_head]]
|
|
2736
|
+
rhyml.pasterize_head:::
|
|
2737
|
+
+
|
|
2738
|
+
--
|
|
2739
|
+
Whether to convert verbs in the `head` property to past tense when drafting.
|
|
2740
|
+
Replaces common words like `adds` with `added`, `fix` with `fixed`, etc.
|
|
2741
|
+
|
|
2742
|
+
|
|
2743
|
+
[horizontal]
|
|
2744
|
+
type;; Boolean
|
|
2745
|
+
default;;
|
|
2746
|
+
+
|
|
2747
|
+
`+++false+++`
|
|
2748
|
+
path;; `xref:conf_ppty_rhyml_pasterize_head[config.rhyml.pasterize_head]`
|
|
2749
|
+
--
|
|
2750
|
+
|
|
2751
|
+
[[conf_ppty_history,config.history]]
|
|
2752
|
+
history::
|
|
2753
|
+
+
|
|
2754
|
+
--
|
|
2755
|
+
Configurations for the overall document, when applicable.
|
|
2756
|
+
|
|
2757
|
+
|
|
2758
|
+
[horizontal]
|
|
2759
|
+
path;; `xref:conf_ppty_history[config.history]`
|
|
2760
|
+
--
|
|
2761
|
+
|
|
2762
|
+
[[conf_ppty_history_head,config.history.head]]
|
|
2763
|
+
history.head:::
|
|
2764
|
+
+
|
|
2765
|
+
--
|
|
2766
|
+
The header for the release history output.
|
|
2767
|
+
|
|
2768
|
+
|
|
2769
|
+
[horizontal]
|
|
2770
|
+
type;; String
|
|
2771
|
+
templating;; liquid, delayed rendering
|
|
2772
|
+
default;;
|
|
2773
|
+
+
|
|
2774
|
+
....
|
|
2775
|
+
Release History -- {{ release.code }} - {{ release.date }}
|
|
2776
|
+
....
|
|
2777
|
+
path;; `xref:conf_ppty_history_head[config.history.head]`
|
|
2778
|
+
--
|
|
2779
|
+
|
|
2780
|
+
[[conf_ppty_history_htag,config.history.htag]]
|
|
2781
|
+
history.htag:::
|
|
2782
|
+
+
|
|
2783
|
+
--
|
|
2784
|
+
The heading level (H1, H2, etc) for the release history header.
|
|
2785
|
+
|
|
2786
|
+
|
|
2787
|
+
[horizontal]
|
|
2788
|
+
type;; String
|
|
2789
|
+
default;;
|
|
2790
|
+
+
|
|
2791
|
+
`+++h1+++`
|
|
2792
|
+
path;; `xref:conf_ppty_history_htag[config.history.htag]`
|
|
2793
|
+
--
|
|
2794
|
+
|
|
2795
|
+
[[conf_ppty_history_markdown_frontmatter,config.history.markdown_frontmatter]]
|
|
2796
|
+
history.markdown_frontmatter:::
|
|
2797
|
+
+
|
|
2798
|
+
--
|
|
2799
|
+
Designates the content inserted at the top of Markdown files as document-level metadata.
|
|
2800
|
+
|
|
2801
|
+
A Liquid template to be prepended at the top of Markdown draft files.
|
|
2802
|
+
|
|
2803
|
+
Templates may contain the following variables, automatically generated, as applicable:
|
|
2804
|
+
|
|
2805
|
+
* `date` (DateTime)
|
|
2806
|
+
* `version` (String)
|
|
2807
|
+
* `title` (String)
|
|
2808
|
+
|
|
2809
|
+
|
|
2810
|
+
[horizontal]
|
|
2811
|
+
type;; Liquid
|
|
2812
|
+
default;;
|
|
2813
|
+
+
|
|
2814
|
+
....
|
|
2815
|
+
---
|
|
2816
|
+
title: Release History for {{ release.code }}
|
|
2817
|
+
version: {{ release.code }}
|
|
2818
|
+
date: {{ release.date }}
|
|
2819
|
+
---
|
|
2820
|
+
|
|
2821
|
+
....
|
|
2822
|
+
path;; `xref:conf_ppty_history_markdown_frontmatter[config.history.markdown_frontmatter]`
|
|
2823
|
+
--
|
|
2824
|
+
|
|
2825
|
+
[[conf_ppty_history_asciidoc_frontmatter,config.history.asciidoc_frontmatter]]
|
|
2826
|
+
history.asciidoc_frontmatter:::
|
|
2827
|
+
+
|
|
2828
|
+
--
|
|
2829
|
+
Designates the way front-matter is inserted at the top of AsciiDoc files.
|
|
2830
|
+
Several variables are available to templates.
|
|
2831
|
+
|
|
2832
|
+
AsciiDoc frontmatter templates may also contain AsciiDoc attribute placeholders.
|
|
2833
|
+
|
|
2834
|
+
|
|
2835
|
+
[horizontal]
|
|
2836
|
+
type;; Liquid
|
|
2837
|
+
default;;
|
|
2838
|
+
+
|
|
2839
|
+
....
|
|
2840
|
+
:page-title: Release History for {{ release.code }}
|
|
2841
|
+
:page-version: {{ release.code }}
|
|
2842
|
+
:page-date: {{ release.date }}
|
|
2843
|
+
|
|
2844
|
+
....
|
|
2845
|
+
path;; `xref:conf_ppty_history_asciidoc_frontmatter[config.history.asciidoc_frontmatter]`
|
|
2846
|
+
--
|
|
2847
|
+
|
|
2848
|
+
[[conf_ppty_history_html_frontmatter,config.history.html_frontmatter]]
|
|
2849
|
+
history.html_frontmatter:::
|
|
2850
|
+
+
|
|
2851
|
+
--
|
|
2852
|
+
Designates the way front-matter is inserted at the top of _unwrapped_ rendered HTML.
|
|
2853
|
+
|
|
2854
|
+
The `frontmatter` property is a Liquid template that is inserted at the top of the rendered HTML file.
|
|
2855
|
+
|
|
2856
|
+
It may include `{{ title }}`, `{{ version }}`, `{{ date }}`, as well as any `vars`-scoped variables as you pass in.
|
|
2857
|
+
|
|
2858
|
+
|
|
2859
|
+
[horizontal]
|
|
2860
|
+
type;; Liquid
|
|
2861
|
+
default;;
|
|
2862
|
+
+
|
|
2863
|
+
....
|
|
2864
|
+
---
|
|
2865
|
+
title: Release History for {{ release.code }}
|
|
2866
|
+
version: {{ release.code }}
|
|
2867
|
+
date: {{ release.date }}
|
|
2868
|
+
---
|
|
2869
|
+
|
|
2870
|
+
....
|
|
2871
|
+
path;; `xref:conf_ppty_history_html_frontmatter[config.history.html_frontmatter]`
|
|
2872
|
+
--
|
|
2873
|
+
|
|
2874
|
+
[[conf_ppty_history_items,config.history.items]]
|
|
2875
|
+
history.items:::
|
|
2876
|
+
+
|
|
2877
|
+
--
|
|
2878
|
+
Settings pertaining to displayed items across Changelog and Release Notes sections.
|
|
2879
|
+
|
|
2880
|
+
Most of these settings can be defined separately for each section under <<conf_ppty_changelog_items>> and <<conf_ppty_notes_items>>.
|
|
2881
|
+
If an identically named setting exists, it will override the primary designator defined in this `config.history.items` block.
|
|
2882
|
+
|
|
2883
|
+
|
|
2884
|
+
[horizontal]
|
|
2885
|
+
path;; `xref:conf_ppty_history_items[config.history.items]`
|
|
2886
|
+
--
|
|
2887
|
+
|
|
2888
|
+
[[conf_ppty_history_items_allow_redundant,config.history.items.allow_redundant]]
|
|
2889
|
+
history.items.allow_redundant::::
|
|
2890
|
+
+
|
|
2891
|
+
--
|
|
2892
|
+
Whether to allow duplicate entries in a given section, for instance across groups for `part:group` sorts where a change affects multiple parts.
|
|
2893
|
+
|
|
2894
|
+
|
|
2895
|
+
[horizontal]
|
|
2896
|
+
type;; Boolean
|
|
2897
|
+
default;;
|
|
2898
|
+
+
|
|
2899
|
+
`+++false+++`
|
|
2900
|
+
path;; `xref:conf_ppty_history_items_allow_redundant[config.history.items.allow_redundant]`
|
|
2901
|
+
--
|
|
2902
|
+
|
|
2903
|
+
[[conf_ppty_history_items_show_issue_links,config.history.items.show_issue_links]]
|
|
2904
|
+
history.items.show_issue_links::::
|
|
2905
|
+
+
|
|
2906
|
+
--
|
|
2907
|
+
Whether to include web links in item metadata.
|
|
2908
|
+
|
|
2909
|
+
Requires `links.web` to be defined.
|
|
2910
|
+
|
|
2911
|
+
|
|
2912
|
+
[horizontal]
|
|
2913
|
+
type;; Boolean
|
|
2914
|
+
default;;
|
|
2915
|
+
+
|
|
2916
|
+
`+++false+++`
|
|
2917
|
+
path;; `xref:conf_ppty_history_items_show_issue_links[config.history.items.show_issue_links]`
|
|
2918
|
+
--
|
|
2919
|
+
|
|
2920
|
+
[[conf_ppty_history_items_show_git_links,config.history.items.show_git_links]]
|
|
2921
|
+
history.items.show_git_links::::
|
|
2922
|
+
+
|
|
2923
|
+
--
|
|
2924
|
+
Whether to include git links in item metadata.
|
|
2925
|
+
|
|
2926
|
+
Requires `links.git` to be defined.
|
|
2927
|
+
|
|
2928
|
+
|
|
2929
|
+
[horizontal]
|
|
2930
|
+
type;; Boolean
|
|
2931
|
+
default;;
|
|
2932
|
+
+
|
|
2933
|
+
`+++false+++`
|
|
2934
|
+
path;; `xref:conf_ppty_history_items_show_git_links[config.history.items.show_git_links]`
|
|
2935
|
+
--
|
|
2936
|
+
|
|
2937
|
+
[[conf_ppty_history_items_metadata_labels,config.history.items.metadata_labels]]
|
|
2938
|
+
history.items.metadata_labels::::
|
|
2939
|
+
+
|
|
2940
|
+
--
|
|
2941
|
+
If and where to display icons in relation to labels in item metadata.
|
|
2942
|
+
|
|
2943
|
+
Use `before` or `after` to choose a spot, `none` or `'$nil'` to disable.
|
|
2944
|
+
|
|
2945
|
+
|
|
2946
|
+
[horizontal]
|
|
2947
|
+
type;; String
|
|
2948
|
+
default;;
|
|
2949
|
+
+
|
|
2950
|
+
`+++before+++`
|
|
2951
|
+
path;; `xref:conf_ppty_history_items_metadata_labels[config.history.items.metadata_labels]`
|
|
2952
|
+
--
|
|
2953
|
+
|
|
2954
|
+
[[conf_ppty_history_items_metadata_icons,config.history.items.metadata_icons]]
|
|
2955
|
+
history.items.metadata_icons::::
|
|
2956
|
+
+
|
|
2957
|
+
--
|
|
2958
|
+
Whether to include icons for metadata in item metadata.
|
|
2959
|
+
|
|
2960
|
+
|
|
2961
|
+
[horizontal]
|
|
2962
|
+
type;; Boolean
|
|
2963
|
+
default;;
|
|
2964
|
+
+
|
|
2965
|
+
`+++before+++`
|
|
2966
|
+
path;; `xref:conf_ppty_history_items_metadata_icons[config.history.items.metadata_icons]`
|
|
2967
|
+
--
|
|
2968
|
+
|
|
2969
|
+
[[conf_ppty_history_items_show_lead,config.history.items.show_lead]]
|
|
2970
|
+
history.items.show_lead::::
|
|
2971
|
+
+
|
|
2972
|
+
--
|
|
2973
|
+
Whether to include the lead-in text for the section in the item metadata.
|
|
2974
|
+
This is useful for displaying the section header in the item metadata.
|
|
2975
|
+
|
|
2976
|
+
|
|
2977
|
+
[horizontal]
|
|
2978
|
+
type;; Boolean
|
|
2979
|
+
default;;
|
|
2980
|
+
+
|
|
2981
|
+
`+++false+++`
|
|
2982
|
+
path;; `xref:conf_ppty_history_items_show_lead[config.history.items.show_lead]`
|
|
2983
|
+
--
|
|
2984
|
+
|
|
2985
|
+
[[conf_ppty_history_items_show_type_label,config.history.items.show_type_label]]
|
|
2986
|
+
history.items.show_type_label::::
|
|
2987
|
+
+
|
|
2988
|
+
--
|
|
2989
|
+
Whether to show the type label in the item metadata output.
|
|
2990
|
+
If `false`, the type will be listed unlabeled in the output, for templates that support this option.
|
|
2991
|
+
|
|
2992
|
+
Corresponds to the <<conf_ppty_history_labeling_type_label>> property, which defines the content displayed when this property is `true` for a given section of the history output.
|
|
2993
|
+
|
|
2994
|
+
|
|
2995
|
+
[horizontal]
|
|
2996
|
+
type;; Boolean
|
|
2997
|
+
default;;
|
|
2998
|
+
+
|
|
2999
|
+
`+++false+++`
|
|
3000
|
+
path;; `xref:conf_ppty_history_items_show_type_label[config.history.items.show_type_label]`
|
|
3001
|
+
--
|
|
3002
|
+
|
|
3003
|
+
[[conf_ppty_history_items_show_parts_label,config.history.items.show_parts_label]]
|
|
3004
|
+
history.items.show_parts_label::::
|
|
3005
|
+
+
|
|
3006
|
+
--
|
|
3007
|
+
Whether to show the parts label in the item metadata output.
|
|
3008
|
+
If `false`, parts will be listed unlabeled in the output, for templates that support this option.
|
|
3009
|
+
|
|
3010
|
+
Corresponds to the <<conf_ppty_history_labeling_parts_label>> property (and optionally the <<conf_ppty_history_labeling_part_label>>), which defines the content displayed when this property is `true` for a given section of the history output.
|
|
3011
|
+
|
|
3012
|
+
|
|
3013
|
+
[horizontal]
|
|
3014
|
+
type;; Boolean
|
|
3015
|
+
default;;
|
|
3016
|
+
+
|
|
3017
|
+
`+++false+++`
|
|
3018
|
+
path;; `xref:conf_ppty_history_items_show_parts_label[config.history.items.show_parts_label]`
|
|
3019
|
+
--
|
|
3020
|
+
|
|
3021
|
+
[[conf_ppty_history_items_show_tags_label,config.history.items.show_tags_label]]
|
|
3022
|
+
history.items.show_tags_label::::
|
|
3023
|
+
+
|
|
3024
|
+
--
|
|
3025
|
+
Whether to show the tags label in the item metadata output.
|
|
3026
|
+
If `false`, tags will be listed unlabeled in the output, for templates that support this option.
|
|
3027
|
+
|
|
3028
|
+
Corresponds to the <<conf_ppty_history_labeling_tags_label>> property (and optionally the <<conf_ppty_history_labeling_tag_label>>), which defines the content displayed when this property is `true` for a given section of the history output.
|
|
3029
|
+
|
|
3030
|
+
|
|
3031
|
+
[horizontal]
|
|
3032
|
+
type;; Boolean
|
|
3033
|
+
default;;
|
|
3034
|
+
+
|
|
3035
|
+
`+++false+++`
|
|
3036
|
+
path;; `xref:conf_ppty_history_items_show_tags_label[config.history.items.show_tags_label]`
|
|
3037
|
+
--
|
|
3038
|
+
|
|
3039
|
+
[[conf_ppty_history_items_show_lead_label,config.history.items.show_lead_label]]
|
|
3040
|
+
history.items.show_lead_label::::
|
|
3041
|
+
+
|
|
3042
|
+
--
|
|
3043
|
+
Whether to show the lead label in the item metadata output.
|
|
3044
|
+
If `false`, the lead will be listed unlabeled in the output, for templates that support this option.
|
|
3045
|
+
|
|
3046
|
+
Corresponds to the <<conf_ppty_history_labeling_lead_label>> property, which defines the content displayed when this property is `true` for a given section of the history output.
|
|
3047
|
+
|
|
3048
|
+
|
|
3049
|
+
[horizontal]
|
|
3050
|
+
type;; Boolean
|
|
3051
|
+
default;;
|
|
3052
|
+
+
|
|
3053
|
+
`+++false+++`
|
|
3054
|
+
path;; `xref:conf_ppty_history_items_show_lead_label[config.history.items.show_lead_label]`
|
|
3055
|
+
--
|
|
3056
|
+
|
|
3057
|
+
[[conf_ppty_history_items_show_auths_label,config.history.items.show_auths_label]]
|
|
3058
|
+
history.items.show_auths_label::::
|
|
3059
|
+
+
|
|
3060
|
+
--
|
|
3061
|
+
Whether to show the authors label in the item metadata output.
|
|
3062
|
+
If `false`, authors will be listed unlabeled in the output, for templates that support this option.
|
|
3063
|
+
|
|
3064
|
+
Corresponds to the <<conf_ppty_history_labeling_auth_label>> property, which defines the content displayed when this property is `true` for a given section of the history output.
|
|
3065
|
+
|
|
3066
|
+
|
|
3067
|
+
[horizontal]
|
|
3068
|
+
type;; Boolean
|
|
3069
|
+
default;;
|
|
3070
|
+
+
|
|
3071
|
+
`+++false+++`
|
|
3072
|
+
path;; `xref:conf_ppty_history_items_show_auths_label[config.history.items.show_auths_label]`
|
|
3073
|
+
--
|
|
3074
|
+
|
|
3075
|
+
[[conf_ppty_history_labeling,config.history.labeling]]
|
|
3076
|
+
history.labeling:::
|
|
3077
|
+
+
|
|
3078
|
+
--
|
|
3079
|
+
Settings for labeling items in the release history output.
|
|
3080
|
+
These properties establish how metadata and other elements apply to a given subject's nomenclature.
|
|
3081
|
+
If you want to refer to "`tags`" as "`labels`" or "`parts`" as "`components`", map those namespaces here.
|
|
3082
|
+
|
|
3083
|
+
|
|
3084
|
+
[horizontal]
|
|
3085
|
+
path;; `xref:conf_ppty_history_labeling[config.history.labeling]`
|
|
3086
|
+
--
|
|
3087
|
+
|
|
3088
|
+
[[conf_ppty_history_labeling_singularize_labels,config.history.labeling.singularize_labels]]
|
|
3089
|
+
history.labeling.singularize_labels::::
|
|
3090
|
+
+
|
|
3091
|
+
--
|
|
3092
|
+
Whether to singularize labels in the output _when only one instance_ of the category is present.
|
|
3093
|
+
For instance, if a change has only one part and the `conf_ppty_history_labeling_part_label` is set to `Part`, the output will use labeling like *Part:* instead of *Parts:*.
|
|
3094
|
+
|
|
3095
|
+
This also applies to `tag_label` and `auth_label` as well as the `part_label`.
|
|
3096
|
+
The `type` and `lead` labels are not affected by this setting.
|
|
3097
|
+
|
|
3098
|
+
|
|
3099
|
+
[horizontal]
|
|
3100
|
+
type;; Boolean
|
|
3101
|
+
default;;
|
|
3102
|
+
+
|
|
3103
|
+
`+++true+++`
|
|
3104
|
+
path;; `xref:conf_ppty_history_labeling_singularize_labels[config.history.labeling.singularize_labels]`
|
|
3105
|
+
--
|
|
3106
|
+
|
|
3107
|
+
[[conf_ppty_history_labeling_type_label,config.history.labeling.type_label]]
|
|
3108
|
+
history.labeling.type_label::::
|
|
3109
|
+
+
|
|
3110
|
+
--
|
|
3111
|
+
The label to use for the type of change.
|
|
3112
|
+
Defaults to the `type.text` property of the change.
|
|
3113
|
+
|
|
3114
|
+
|
|
3115
|
+
[horizontal]
|
|
3116
|
+
type;; String
|
|
3117
|
+
default;;
|
|
3118
|
+
+
|
|
3119
|
+
`+++type+++`
|
|
3120
|
+
path;; `xref:conf_ppty_history_labeling_type_label[config.history.labeling.type_label]`
|
|
3121
|
+
--
|
|
3122
|
+
|
|
3123
|
+
[[conf_ppty_history_labeling_type_icon,config.history.labeling.type_icon]]
|
|
3124
|
+
history.labeling.type_icon::::
|
|
3125
|
+
+
|
|
3126
|
+
--
|
|
3127
|
+
The icon to use for the type of change.
|
|
3128
|
+
Defaults to the `type.icon` property of the change.
|
|
3129
|
+
|
|
3130
|
+
|
|
3131
|
+
[horizontal]
|
|
3132
|
+
type;; String
|
|
3133
|
+
path;; `xref:conf_ppty_history_labeling_type_icon[config.history.labeling.type_icon]`
|
|
3134
|
+
--
|
|
3135
|
+
|
|
3136
|
+
[[conf_ppty_history_labeling_parts_label,config.history.labeling.parts_label]]
|
|
3137
|
+
history.labeling.parts_label::::
|
|
3138
|
+
+
|
|
3139
|
+
--
|
|
3140
|
+
The label to use for the part/component affected by the change.
|
|
3141
|
+
|
|
3142
|
+
|
|
3143
|
+
[horizontal]
|
|
3144
|
+
type;; String
|
|
3145
|
+
default;;
|
|
3146
|
+
+
|
|
3147
|
+
`+++Components+++`
|
|
3148
|
+
path;; `xref:conf_ppty_history_labeling_parts_label[config.history.labeling.parts_label]`
|
|
3149
|
+
--
|
|
3150
|
+
|
|
3151
|
+
[[conf_ppty_history_labeling_part_label,config.history.labeling.part_label]]
|
|
3152
|
+
history.labeling.part_label::::
|
|
3153
|
+
+
|
|
3154
|
+
--
|
|
3155
|
+
The label to use for the _singular_ part/component affected by the change, when only one part is permitted.
|
|
3156
|
+
|
|
3157
|
+
This value will apply either when <<conf_ppty_rhyml_max_parts>> is set to `1` or when the change has only one part _and_ <<conf_ppty_history_labeling_singularize_labels>> is `true`.
|
|
3158
|
+
|
|
3159
|
+
|
|
3160
|
+
[horizontal]
|
|
3161
|
+
type;; String
|
|
3162
|
+
default;;
|
|
3163
|
+
+
|
|
3164
|
+
`+++Part+++`
|
|
3165
|
+
path;; `xref:conf_ppty_history_labeling_part_label[config.history.labeling.part_label]`
|
|
3166
|
+
--
|
|
3167
|
+
|
|
3168
|
+
[[conf_ppty_history_labeling_parts_icon,config.history.labeling.parts_icon]]
|
|
3169
|
+
history.labeling.parts_icon::::
|
|
3170
|
+
+
|
|
3171
|
+
--
|
|
3172
|
+
The icon to use for the part/component affected by the change.
|
|
3173
|
+
|
|
3174
|
+
|
|
3175
|
+
[horizontal]
|
|
3176
|
+
type;; String
|
|
3177
|
+
default;;
|
|
3178
|
+
+
|
|
3179
|
+
`+++puzzle-piece+++`
|
|
3180
|
+
path;; `xref:conf_ppty_history_labeling_parts_icon[config.history.labeling.parts_icon]`
|
|
3181
|
+
--
|
|
3182
|
+
|
|
3183
|
+
[[conf_ppty_history_labeling_tags_label,config.history.labeling.tags_label]]
|
|
3184
|
+
history.labeling.tags_label::::
|
|
3185
|
+
+
|
|
3186
|
+
--
|
|
3187
|
+
The tags associated with the change, if any.
|
|
3188
|
+
Defaults to an empty array.
|
|
3189
|
+
|
|
3190
|
+
|
|
3191
|
+
[horizontal]
|
|
3192
|
+
type;; Array
|
|
3193
|
+
default;;
|
|
3194
|
+
+
|
|
3195
|
+
`+++Tags+++`
|
|
3196
|
+
path;; `xref:conf_ppty_history_labeling_tags_label[config.history.labeling.tags_label]`
|
|
3197
|
+
--
|
|
3198
|
+
|
|
3199
|
+
[[conf_ppty_history_labeling_tag_label,config.history.labeling.tag_label]]
|
|
3200
|
+
history.labeling.tag_label::::
|
|
3201
|
+
+
|
|
3202
|
+
--
|
|
3203
|
+
The label to use for the _singular_ tag associated with the change, when only one tag is permitted.
|
|
3204
|
+
|
|
3205
|
+
This value will apply either when <<conf_ppty_rhyml_max_parts>> is set to `1` or when the change has only one tag _and_ <<conf_ppty_history_labeling_singularize_labels>> is `true`.
|
|
3206
|
+
|
|
3207
|
+
In supporting templates, this label will only be displayed if the show_tags_label` setting is `true` for the relevant section.
|
|
3208
|
+
|
|
3209
|
+
|
|
3210
|
+
[horizontal]
|
|
3211
|
+
type;; String
|
|
3212
|
+
default;;
|
|
3213
|
+
+
|
|
3214
|
+
`+++Tag+++`
|
|
3215
|
+
path;; `xref:conf_ppty_history_labeling_tag_label[config.history.labeling.tag_label]`
|
|
3216
|
+
--
|
|
3217
|
+
|
|
3218
|
+
[[conf_ppty_history_labeling_tags_icon,config.history.labeling.tags_icon]]
|
|
3219
|
+
history.labeling.tags_icon::::
|
|
3220
|
+
+
|
|
3221
|
+
--
|
|
3222
|
+
The icon to use for the tags associated with the change.
|
|
3223
|
+
|
|
3224
|
+
|
|
3225
|
+
[horizontal]
|
|
3226
|
+
type;; String
|
|
3227
|
+
default;;
|
|
3228
|
+
+
|
|
3229
|
+
`+++tags+++`
|
|
3230
|
+
path;; `xref:conf_ppty_history_labeling_tags_icon[config.history.labeling.tags_icon]`
|
|
3231
|
+
--
|
|
3232
|
+
|
|
3233
|
+
[[conf_ppty_history_labeling_lead_label,config.history.labeling.lead_label]]
|
|
3234
|
+
history.labeling.lead_label::::
|
|
3235
|
+
+
|
|
3236
|
+
--
|
|
3237
|
+
The label to use for the lead contributor of the change.
|
|
3238
|
+
|
|
3239
|
+
|
|
3240
|
+
[horizontal]
|
|
3241
|
+
type;; String
|
|
3242
|
+
default;;
|
|
3243
|
+
+
|
|
3244
|
+
`+++Contributed by+++`
|
|
3245
|
+
path;; `xref:conf_ppty_history_labeling_lead_label[config.history.labeling.lead_label]`
|
|
3246
|
+
--
|
|
3247
|
+
|
|
3248
|
+
[[conf_ppty_history_labeling_lead_icon,config.history.labeling.lead_icon]]
|
|
3249
|
+
history.labeling.lead_icon::::
|
|
3250
|
+
+
|
|
3251
|
+
--
|
|
3252
|
+
The icon to use for the lead contributor of the change.
|
|
3253
|
+
|
|
3254
|
+
|
|
3255
|
+
[horizontal]
|
|
3256
|
+
type;; String
|
|
3257
|
+
default;;
|
|
3258
|
+
+
|
|
3259
|
+
`+++user+++`
|
|
3260
|
+
path;; `xref:conf_ppty_history_labeling_lead_icon[config.history.labeling.lead_icon]`
|
|
3261
|
+
--
|
|
3262
|
+
|
|
3263
|
+
[[conf_ppty_history_labeling_auths_label,config.history.labeling.auths_label]]
|
|
3264
|
+
history.labeling.auths_label::::
|
|
3265
|
+
+
|
|
3266
|
+
--
|
|
3267
|
+
The label to use for the authors of the change.
|
|
3268
|
+
This is used when multiple authors are present.
|
|
3269
|
+
|
|
3270
|
+
|
|
3271
|
+
[horizontal]
|
|
3272
|
+
type;; String
|
|
3273
|
+
default;;
|
|
3274
|
+
+
|
|
3275
|
+
`+++Contributors+++`
|
|
3276
|
+
path;; `xref:conf_ppty_history_labeling_auths_label[config.history.labeling.auths_label]`
|
|
3277
|
+
--
|
|
3278
|
+
|
|
3279
|
+
[[conf_ppty_history_labeling_auth_label,config.history.labeling.auth_label]]
|
|
3280
|
+
history.labeling.auth_label::::
|
|
3281
|
+
+
|
|
3282
|
+
--
|
|
3283
|
+
The label to use for the _singular_ author of the change, when only one author is listed and <<conf_ppty_history_labeling_singularize_labels>> is `true`.
|
|
3284
|
+
|
|
3285
|
+
|
|
3286
|
+
[horizontal]
|
|
3287
|
+
type;; String
|
|
3288
|
+
path;; `xref:conf_ppty_history_labeling_auth_label[config.history.labeling.auth_label]`
|
|
3289
|
+
--
|
|
3290
|
+
|
|
3291
|
+
[[conf_ppty_history_labeling_join_string,config.history.labeling.join_string]]
|
|
3292
|
+
history.labeling.join_string::::
|
|
3293
|
+
+
|
|
3294
|
+
--
|
|
3295
|
+
The string to use to join multiple tags, parts, or authors in the output.
|
|
3296
|
+
Defaults to a comma and space (`, `).
|
|
3297
|
+
|
|
3298
|
+
|
|
3299
|
+
[horizontal]
|
|
3300
|
+
type;; String
|
|
3301
|
+
default;;
|
|
3302
|
+
+
|
|
3303
|
+
`+++, +++`
|
|
3304
|
+
path;; `xref:conf_ppty_history_labeling_join_string[config.history.labeling.join_string]`
|
|
3305
|
+
--
|
|
3306
|
+
|
|
3307
|
+
[[conf_ppty_changelog,config.changelog]]
|
|
3308
|
+
changelog::
|
|
3309
|
+
+
|
|
3310
|
+
--
|
|
3311
|
+
The configuration for the changelog output.
|
|
3312
|
+
|
|
3313
|
+
|
|
3314
|
+
[horizontal]
|
|
3315
|
+
path;; `xref:conf_ppty_changelog[config.changelog]`
|
|
3316
|
+
--
|
|
3317
|
+
|
|
3318
|
+
[[conf_ppty_changelog_head,config.changelog.head]]
|
|
3319
|
+
changelog.head:::
|
|
3320
|
+
+
|
|
3321
|
+
--
|
|
3322
|
+
The header for the changelog output.
|
|
3323
|
+
|
|
3324
|
+
|
|
3325
|
+
[horizontal]
|
|
3326
|
+
type;; String
|
|
3327
|
+
templating;; liquid, delayed rendering
|
|
3328
|
+
default;;
|
|
3329
|
+
+
|
|
3330
|
+
`+++Changelog+++`
|
|
3331
|
+
path;; `xref:conf_ppty_changelog_head[config.changelog.head]`
|
|
3332
|
+
--
|
|
3333
|
+
|
|
3334
|
+
[[conf_ppty_changelog_text,config.changelog.text]]
|
|
3335
|
+
changelog.text:::
|
|
3336
|
+
+
|
|
3337
|
+
--
|
|
3338
|
+
The text for the changelog output.
|
|
3339
|
+
Change to `null` to hide.
|
|
3340
|
+
|
|
3341
|
+
|
|
3342
|
+
[horizontal]
|
|
3343
|
+
type;; String
|
|
3344
|
+
templating;; liquid, delayed rendering
|
|
3345
|
+
default;;
|
|
3346
|
+
+
|
|
3347
|
+
....
|
|
3348
|
+
Summaries of all user-facing changes made since the previous release.
|
|
3349
|
+
|
|
3350
|
+
....
|
|
3351
|
+
path;; `xref:conf_ppty_changelog_text[config.changelog.text]`
|
|
3352
|
+
--
|
|
3353
|
+
|
|
3354
|
+
[[conf_ppty_changelog_htag,config.changelog.htag]]
|
|
3355
|
+
changelog.htag:::
|
|
3356
|
+
+
|
|
3357
|
+
--
|
|
3358
|
+
The heading level (H1, H2, etc) for the changelog section header.
|
|
3359
|
+
|
|
3360
|
+
|
|
3361
|
+
[horizontal]
|
|
3362
|
+
type;; String
|
|
3363
|
+
default;;
|
|
3364
|
+
+
|
|
3365
|
+
`+++h2+++`
|
|
3366
|
+
path;; `xref:conf_ppty_changelog_htag[config.changelog.htag]`
|
|
3367
|
+
--
|
|
3368
|
+
|
|
3369
|
+
[[conf_ppty_changelog_spot,config.changelog.spot]]
|
|
3370
|
+
changelog.spot:::
|
|
3371
|
+
+
|
|
3372
|
+
--
|
|
3373
|
+
Where in the document to place the changelog (`1` = top, `2` = bottom).
|
|
3374
|
+
|
|
3375
|
+
|
|
3376
|
+
[horizontal]
|
|
3377
|
+
type;; Integer
|
|
3378
|
+
default;;
|
|
3379
|
+
+
|
|
3380
|
+
`+++2+++`
|
|
3381
|
+
path;; `xref:conf_ppty_changelog_spot[config.changelog.spot]`
|
|
3382
|
+
--
|
|
3383
|
+
|
|
3384
|
+
[[conf_ppty_changelog_sort,config.changelog.sort]]
|
|
3385
|
+
changelog.sort:::
|
|
3386
|
+
+
|
|
3387
|
+
--
|
|
3388
|
+
The sort order for the changelog output.
|
|
3389
|
+
|
|
3390
|
+
Indicate whether you wish to _group_ output by this sort criterion, or else just order by that criteria, with or without a label denoting the criterion.
|
|
3391
|
+
|
|
3392
|
+
If `<criterion>:group` (default), the output will be grouped into sections with the group instance
|
|
3393
|
+
If `<criterion>:grouping1`, the criterion will be added to the first of 2 grouping tiers into which the output will be divided.
|
|
3394
|
+
If `<criterion>:grouping2`, the criterion will be added to the second of 2 grouping tiers into which the output will be divided.
|
|
3395
|
+
If `<criterion>:label`, the output will be order by the criterion, with a label indicating the criterion.
|
|
3396
|
+
If `<criterion>:none`, the output will be ordered by the criterion, with no label.
|
|
3397
|
+
|
|
3398
|
+
For example:
|
|
3399
|
+
|
|
3400
|
+
[source,yaml]
|
|
3401
|
+
----
|
|
3402
|
+
sort:
|
|
3403
|
+
- 'part:group'
|
|
3404
|
+
- 'type:label'
|
|
3405
|
+
----
|
|
3406
|
+
|
|
3407
|
+
Would produce something like:
|
|
3408
|
+
|
|
3409
|
+
[source,markdown]
|
|
3410
|
+
----
|
|
3411
|
+
## Web UI
|
|
3412
|
+
|
|
3413
|
+
- Feature description or summary [New feature]
|
|
3414
|
+
|
|
3415
|
+
- Another feature description or summary [New feature]
|
|
3416
|
+
|
|
3417
|
+
- Improvement description or summary [Improvement]
|
|
3418
|
+
|
|
3419
|
+
## Backend
|
|
3420
|
+
|
|
3421
|
+
- Feature description or summary [New feature]
|
|
3422
|
+
|
|
3423
|
+
- Bug fix description or summary [Bug Fixes]
|
|
3424
|
+
----
|
|
3425
|
+
|
|
3426
|
+
For 2-tiered grouping arrangements, use something like:
|
|
3427
|
+
|
|
3428
|
+
[source,yaml]
|
|
3429
|
+
----
|
|
3430
|
+
sort:
|
|
3431
|
+
- 'part:grouping1'
|
|
3432
|
+
- 'type:grouping2'
|
|
3433
|
+
----
|
|
3434
|
+
|
|
3435
|
+
This would output for instance:
|
|
3436
|
+
|
|
3437
|
+
[source,markdown]
|
|
3438
|
+
----
|
|
3439
|
+
## Web UI
|
|
3440
|
+
|
|
3441
|
+
### New features
|
|
3442
|
+
- Feature description or summary
|
|
3443
|
+
- Another feature description or summary
|
|
3444
|
+
|
|
3445
|
+
### Improvements
|
|
3446
|
+
- Improvement description or summary
|
|
3447
|
+
----
|
|
3448
|
+
|
|
3449
|
+
You may also use tag-based groupings, but the tags must be listed explicitly.
|
|
3450
|
+
|
|
3451
|
+
[source,yaml]
|
|
3452
|
+
----
|
|
3453
|
+
sort:
|
|
3454
|
+
- 'breaking:group'
|
|
3455
|
+
- 'deprecation:group'
|
|
3456
|
+
- 'type:group'
|
|
3457
|
+
- 'part:label'
|
|
3458
|
+
----
|
|
3459
|
+
|
|
3460
|
+
This would output something akin to:
|
|
3461
|
+
|
|
3462
|
+
[source,markdown]
|
|
3463
|
+
----
|
|
3464
|
+
## Breaking Changes
|
|
3465
|
+
- We are breaking this thing! [Web UI]
|
|
3466
|
+
|
|
3467
|
+
## Deprecations
|
|
3468
|
+
- We are deprecating this thing! [Backend]
|
|
3469
|
+
|
|
3470
|
+
## New features
|
|
3471
|
+
- Feature description or summary [Web UI]
|
|
3472
|
+
- Another feature description or summary [Web UI]
|
|
3473
|
+
|
|
3474
|
+
## Improvements
|
|
3475
|
+
- Improvement description or summary [Backend]
|
|
3476
|
+
----
|
|
3477
|
+
|
|
3478
|
+
|
|
3479
|
+
[horizontal]
|
|
3480
|
+
type;; Array
|
|
3481
|
+
default;;
|
|
3482
|
+
+
|
|
3483
|
+
....
|
|
3484
|
+
- part:grouping1
|
|
3485
|
+
....
|
|
3486
|
+
path;; `xref:conf_ppty_changelog_sort[config.changelog.sort]`
|
|
3487
|
+
--
|
|
3488
|
+
|
|
3489
|
+
[[conf_ppty_changelog_items,config.changelog.items]]
|
|
3490
|
+
changelog.items:::
|
|
3491
|
+
+
|
|
3492
|
+
--
|
|
3493
|
+
Settings that affect the frame/shape and arrangement of individual changelog entries.
|
|
3494
|
+
|
|
3495
|
+
|
|
3496
|
+
[horizontal]
|
|
3497
|
+
path;; `xref:conf_ppty_changelog_items[config.changelog.items]`
|
|
3498
|
+
--
|
|
3499
|
+
|
|
3500
|
+
[[conf_ppty_changelog_items_frame,config.changelog.items.frame]]
|
|
3501
|
+
changelog.items.frame::::
|
|
3502
|
+
+
|
|
3503
|
+
--
|
|
3504
|
+
The layout for the changelog entry display.
|
|
3505
|
+
|
|
3506
|
+
Can be `ordered`, `unordered`, `paragraph`, or `basic`.
|
|
3507
|
+
|
|
3508
|
+
|
|
3509
|
+
[horizontal]
|
|
3510
|
+
type;; String
|
|
3511
|
+
default;;
|
|
3512
|
+
+
|
|
3513
|
+
`+++unordered+++`
|
|
3514
|
+
path;; `xref:conf_ppty_changelog_items_frame[config.changelog.items.frame]`
|
|
3515
|
+
--
|
|
3516
|
+
|
|
3517
|
+
[[conf_ppty_changelog_items_allow_redundant,config.changelog.items.allow_redundant]]
|
|
3518
|
+
changelog.items.allow_redundant::::
|
|
3519
|
+
+
|
|
3520
|
+
--
|
|
3521
|
+
Whether to allow duplicate entries in a given section, for instance across groups for `part:group` sorts where a change affects multiple parts.
|
|
3522
|
+
|
|
3523
|
+
|
|
3524
|
+
[horizontal]
|
|
3525
|
+
type;; Boolean
|
|
3526
|
+
default;;
|
|
3527
|
+
+
|
|
3528
|
+
`+++false+++`
|
|
3529
|
+
path;; `xref:conf_ppty_changelog_items_allow_redundant[config.changelog.items.allow_redundant]`
|
|
3530
|
+
--
|
|
3531
|
+
|
|
3532
|
+
[[conf_ppty_changelog_items_show_git_links,config.changelog.items.show_git_links]]
|
|
3533
|
+
changelog.items.show_git_links::::
|
|
3534
|
+
+
|
|
3535
|
+
--
|
|
3536
|
+
Whether to include git links in item metadata.
|
|
3537
|
+
|
|
3538
|
+
Requires `links.git` to be defined.
|
|
3539
|
+
|
|
3540
|
+
|
|
3541
|
+
[horizontal]
|
|
3542
|
+
type;; Boolean
|
|
3543
|
+
default;;
|
|
3544
|
+
+
|
|
3545
|
+
`+++false+++`
|
|
3546
|
+
path;; `xref:conf_ppty_changelog_items_show_git_links[config.changelog.items.show_git_links]`
|
|
3547
|
+
--
|
|
3548
|
+
|
|
3549
|
+
[[conf_ppty_changelog_items_show_issue_links,config.changelog.items.show_issue_links]]
|
|
3550
|
+
changelog.items.show_issue_links::::
|
|
3551
|
+
+
|
|
3552
|
+
--
|
|
3553
|
+
Whether to include web links in item metadata.
|
|
3554
|
+
|
|
3555
|
+
Requires `links.web` to be defined.
|
|
3556
|
+
|
|
3557
|
+
|
|
3558
|
+
[horizontal]
|
|
3559
|
+
type;; Boolean
|
|
3560
|
+
default;;
|
|
3561
|
+
+
|
|
3562
|
+
`+++false+++`
|
|
3563
|
+
path;; `xref:conf_ppty_changelog_items_show_issue_links[config.changelog.items.show_issue_links]`
|
|
3564
|
+
--
|
|
3565
|
+
|
|
3566
|
+
[[conf_ppty_changelog_items_metadata_labels,config.changelog.items.metadata_labels]]
|
|
3567
|
+
changelog.items.metadata_labels::::
|
|
3568
|
+
+
|
|
3569
|
+
--
|
|
3570
|
+
If and where to display icons in relation to labels in item metadata.
|
|
3571
|
+
|
|
3572
|
+
Use `before` or `after` to choose a spot, `none` or `'$nil'` to disable.
|
|
3573
|
+
|
|
3574
|
+
|
|
3575
|
+
[horizontal]
|
|
3576
|
+
type;; String
|
|
3577
|
+
default;;
|
|
3578
|
+
+
|
|
3579
|
+
`+++before+++`
|
|
3580
|
+
path;; `xref:conf_ppty_changelog_items_metadata_labels[config.changelog.items.metadata_labels]`
|
|
3581
|
+
--
|
|
3582
|
+
|
|
3583
|
+
[[conf_ppty_changelog_items_metadata_icons,config.changelog.items.metadata_icons]]
|
|
3584
|
+
changelog.items.metadata_icons::::
|
|
3585
|
+
+
|
|
3586
|
+
--
|
|
3587
|
+
Whether to include icons for metadata in item metadata.
|
|
3588
|
+
|
|
3589
|
+
|
|
3590
|
+
[horizontal]
|
|
3591
|
+
type;; Boolean
|
|
3592
|
+
default;;
|
|
3593
|
+
+
|
|
3594
|
+
`+++before+++`
|
|
3595
|
+
path;; `xref:conf_ppty_changelog_items_metadata_icons[config.changelog.items.metadata_icons]`
|
|
3596
|
+
--
|
|
3597
|
+
|
|
3598
|
+
[[conf_ppty_changelog_items_show_lead,config.changelog.items.show_lead]]
|
|
3599
|
+
changelog.items.show_lead::::
|
|
3600
|
+
+
|
|
3601
|
+
--
|
|
3602
|
+
Whether to include the lead-in text for the section in the item metadata.
|
|
3603
|
+
This is useful for displaying the section header in the item metadata.
|
|
3604
|
+
|
|
3605
|
+
|
|
3606
|
+
[horizontal]
|
|
3607
|
+
type;; Boolean
|
|
3608
|
+
default;;
|
|
3609
|
+
+
|
|
3610
|
+
`+++false+++`
|
|
3611
|
+
path;; `xref:conf_ppty_changelog_items_show_lead[config.changelog.items.show_lead]`
|
|
3612
|
+
--
|
|
3613
|
+
|
|
3614
|
+
[[conf_ppty_changelog_items_show_type_label,config.changelog.items.show_type_label]]
|
|
3615
|
+
changelog.items.show_type_label::::
|
|
3616
|
+
+
|
|
3617
|
+
--
|
|
3618
|
+
Whether to show the type label in the item metadata output.
|
|
3619
|
+
If `false`, the type will be listed unlabeled in the output, for templates that support this option.
|
|
3620
|
+
|
|
3621
|
+
Corresponds to the <<conf_ppty_history_labeling_type_label>> property, which defines the content displayed when this property is `true` for a given section of the history output.
|
|
3622
|
+
|
|
3623
|
+
|
|
3624
|
+
[horizontal]
|
|
3625
|
+
type;; Boolean
|
|
3626
|
+
default;;
|
|
3627
|
+
+
|
|
3628
|
+
`+++false+++`
|
|
3629
|
+
path;; `xref:conf_ppty_changelog_items_show_type_label[config.changelog.items.show_type_label]`
|
|
3630
|
+
--
|
|
3631
|
+
|
|
3632
|
+
[[conf_ppty_changelog_items_show_parts_label,config.changelog.items.show_parts_label]]
|
|
3633
|
+
changelog.items.show_parts_label::::
|
|
3634
|
+
+
|
|
3635
|
+
--
|
|
3636
|
+
Whether to show the parts label in the item metadata output.
|
|
3637
|
+
If `false`, parts will be listed unlabeled in the output, for templates that support this option.
|
|
3638
|
+
|
|
3639
|
+
Corresponds to the <<conf_ppty_history_labeling_parts_label>> property (and optionally the <<conf_ppty_history_labeling_part_label>>), which defines the content displayed when this property is `true` for a given section of the history output.
|
|
3640
|
+
|
|
3641
|
+
|
|
3642
|
+
[horizontal]
|
|
3643
|
+
type;; Boolean
|
|
3644
|
+
default;;
|
|
3645
|
+
+
|
|
3646
|
+
`+++false+++`
|
|
3647
|
+
path;; `xref:conf_ppty_changelog_items_show_parts_label[config.changelog.items.show_parts_label]`
|
|
3648
|
+
--
|
|
3649
|
+
|
|
3650
|
+
[[conf_ppty_changelog_items_show_tags_label,config.changelog.items.show_tags_label]]
|
|
3651
|
+
changelog.items.show_tags_label::::
|
|
3652
|
+
+
|
|
3653
|
+
--
|
|
3654
|
+
Whether to show the tags label in the item metadata output.
|
|
3655
|
+
If `false`, tags will be listed unlabeled in the output, for templates that support this option.
|
|
3656
|
+
|
|
3657
|
+
Corresponds to the <<conf_ppty_history_labeling_tags_label>> property (and optionally the <<conf_ppty_history_labeling_tag_label>>), which defines the content displayed when this property is `true` for a given section of the history output.
|
|
3658
|
+
|
|
3659
|
+
|
|
3660
|
+
[horizontal]
|
|
3661
|
+
type;; Boolean
|
|
3662
|
+
default;;
|
|
3663
|
+
+
|
|
3664
|
+
`+++false+++`
|
|
3665
|
+
path;; `xref:conf_ppty_changelog_items_show_tags_label[config.changelog.items.show_tags_label]`
|
|
3666
|
+
--
|
|
3667
|
+
|
|
3668
|
+
[[conf_ppty_changelog_items_show_lead_label,config.changelog.items.show_lead_label]]
|
|
3669
|
+
changelog.items.show_lead_label::::
|
|
3670
|
+
+
|
|
3671
|
+
--
|
|
3672
|
+
Whether to show the lead label in the item metadata output.
|
|
3673
|
+
If `false`, the lead will be listed unlabeled in the output, for templates that support this option.
|
|
3674
|
+
|
|
3675
|
+
Corresponds to the <<conf_ppty_history_labeling_lead_label>> property, which defines the content displayed when this property is `true` for a given section of the history output.
|
|
3676
|
+
|
|
3677
|
+
|
|
3678
|
+
[horizontal]
|
|
3679
|
+
type;; Boolean
|
|
3680
|
+
default;;
|
|
3681
|
+
+
|
|
3682
|
+
`+++false+++`
|
|
3683
|
+
path;; `xref:conf_ppty_changelog_items_show_lead_label[config.changelog.items.show_lead_label]`
|
|
3684
|
+
--
|
|
3685
|
+
|
|
3686
|
+
[[conf_ppty_changelog_items_show_auths_label,config.changelog.items.show_auths_label]]
|
|
3687
|
+
changelog.items.show_auths_label::::
|
|
3688
|
+
+
|
|
3689
|
+
--
|
|
3690
|
+
Whether to show the authors label in the item metadata output.
|
|
3691
|
+
If `false`, authors will be listed unlabeled in the output, for templates that support this option.
|
|
3692
|
+
|
|
3693
|
+
Corresponds to the <<conf_ppty_history_labeling_auth_label>> property, which defines the content displayed when this property is `true` for a given section of the history output.
|
|
3694
|
+
|
|
3695
|
+
|
|
3696
|
+
[horizontal]
|
|
3697
|
+
type;; Boolean
|
|
3698
|
+
default;;
|
|
3699
|
+
+
|
|
3700
|
+
`+++false+++`
|
|
3701
|
+
path;; `xref:conf_ppty_changelog_items_show_auths_label[config.changelog.items.show_auths_label]`
|
|
3702
|
+
--
|
|
3703
|
+
|
|
3704
|
+
[[conf_ppty_notes,config.notes]]
|
|
3705
|
+
notes::
|
|
3706
|
+
+
|
|
3707
|
+
--
|
|
3708
|
+
The configuration for the Release Notes listing section.
|
|
3709
|
+
|
|
3710
|
+
|
|
3711
|
+
[horizontal]
|
|
3712
|
+
path;; `xref:conf_ppty_notes[config.notes]`
|
|
3713
|
+
--
|
|
3714
|
+
|
|
3715
|
+
[[conf_ppty_notes_head,config.notes.head]]
|
|
3716
|
+
notes.head:::
|
|
3717
|
+
+
|
|
3718
|
+
--
|
|
3719
|
+
The header for the notes output.
|
|
3720
|
+
|
|
3721
|
+
|
|
3722
|
+
[horizontal]
|
|
3723
|
+
type;; String
|
|
3724
|
+
templating;; liquid, delayed rendering
|
|
3725
|
+
default;;
|
|
3726
|
+
+
|
|
3727
|
+
`+++Release Notes+++`
|
|
3728
|
+
path;; `xref:conf_ppty_notes_head[config.notes.head]`
|
|
3729
|
+
--
|
|
3730
|
+
|
|
3731
|
+
[[conf_ppty_notes_text,config.notes.text]]
|
|
3732
|
+
notes.text:::
|
|
3733
|
+
+
|
|
3734
|
+
--
|
|
3735
|
+
The text for the release notes output.
|
|
3736
|
+
Change to `null` to hide.
|
|
3737
|
+
|
|
3738
|
+
|
|
3739
|
+
[horizontal]
|
|
3740
|
+
type;; String
|
|
3741
|
+
templating;; liquid, delayed rendering
|
|
3742
|
+
default;;
|
|
3743
|
+
+
|
|
3744
|
+
....
|
|
3745
|
+
Descriptions of any specially notable changes or additions since the previous release.
|
|
3746
|
+
|
|
3747
|
+
....
|
|
3748
|
+
path;; `xref:conf_ppty_notes_text[config.notes.text]`
|
|
3749
|
+
--
|
|
3750
|
+
|
|
3751
|
+
[[conf_ppty_notes_htag,config.notes.htag]]
|
|
3752
|
+
notes.htag:::
|
|
3753
|
+
+
|
|
3754
|
+
--
|
|
3755
|
+
The heading level (H1, H2, etc) for the release notes section header.
|
|
3756
|
+
|
|
3757
|
+
|
|
3758
|
+
[horizontal]
|
|
3759
|
+
type;; String
|
|
3760
|
+
default;;
|
|
3761
|
+
+
|
|
3762
|
+
`+++h2+++`
|
|
3763
|
+
path;; `xref:conf_ppty_notes_htag[config.notes.htag]`
|
|
3764
|
+
--
|
|
3765
|
+
|
|
3766
|
+
[[conf_ppty_notes_spot,config.notes.spot]]
|
|
3767
|
+
notes.spot:::
|
|
3768
|
+
+
|
|
3769
|
+
--
|
|
3770
|
+
Where in the document to place the Release Notes relative to the Changelog.
|
|
3771
|
+
|
|
3772
|
+
|
|
3773
|
+
[horizontal]
|
|
3774
|
+
type;; Integer
|
|
3775
|
+
default;;
|
|
3776
|
+
+
|
|
3777
|
+
`+++1+++`
|
|
3778
|
+
path;; `xref:conf_ppty_notes_spot[config.notes.spot]`
|
|
3779
|
+
--
|
|
3780
|
+
|
|
3781
|
+
[[conf_ppty_notes_sort,config.notes.sort]]
|
|
3782
|
+
notes.sort:::
|
|
3783
|
+
+
|
|
3784
|
+
--
|
|
3785
|
+
The sort *order* for the release notes output.
|
|
3786
|
+
|
|
3787
|
+
Indicate whether you wish to _group_ output by this sort criterion, or else just order by that criteria, with or without a label denoting the criterion.
|
|
3788
|
+
|
|
3789
|
+
If `<criterion>:group` (default), the output will be grouped into sections with the group instance
|
|
3790
|
+
If `<criterion>:grouping1`, the criterion will be added to the first of 2 grouping tiers into which the output will be divided.
|
|
3791
|
+
If `<criterion>:grouping2`, the criterion will be added to the second of 2 grouping tiers into which the output will be divided.
|
|
3792
|
+
If `<criterion>:label`, the output will be order by the criterion, with a label indicating the criterion.
|
|
3793
|
+
If `<criterion>:none`, the output will be ordered by the criterion, with no label.
|
|
3794
|
+
|
|
3795
|
+
For example:
|
|
3796
|
+
|
|
3797
|
+
[source,yaml]
|
|
3798
|
+
----
|
|
3799
|
+
sort:
|
|
3800
|
+
- 'part:group'
|
|
3801
|
+
- 'type:label'
|
|
3802
|
+
----
|
|
3803
|
+
|
|
3804
|
+
Would produce something like:
|
|
3805
|
+
|
|
3806
|
+
[source,markdown]
|
|
3807
|
+
----
|
|
3808
|
+
## Web UI
|
|
3809
|
+
|
|
3810
|
+
- Feature description or summary [New feature]
|
|
3811
|
+
|
|
3812
|
+
- Another feature description or summary [New feature]
|
|
3813
|
+
|
|
3814
|
+
- Improvement description or summary [Improvement]
|
|
3815
|
+
|
|
3816
|
+
## Backend
|
|
3817
|
+
|
|
3818
|
+
- Feature description or summary [New feature]
|
|
3819
|
+
|
|
3820
|
+
- Bug fix description or summary [Bug Fixes]
|
|
3821
|
+
----
|
|
3822
|
+
|
|
3823
|
+
For 2-tiered grouping arrangements, use something like:
|
|
3824
|
+
|
|
3825
|
+
[source,yaml]
|
|
3826
|
+
----
|
|
3827
|
+
sort:
|
|
3828
|
+
- 'part:grouping1'
|
|
3829
|
+
- 'type:grouping2'
|
|
3830
|
+
----
|
|
3831
|
+
|
|
3832
|
+
This would output for instance:
|
|
3833
|
+
|
|
3834
|
+
[source,markdown]
|
|
3835
|
+
----
|
|
3836
|
+
## Web UI
|
|
3837
|
+
|
|
3838
|
+
### New features
|
|
3839
|
+
- Feature description or summary
|
|
3840
|
+
- Another feature description or summary
|
|
3841
|
+
|
|
3842
|
+
### Improvements
|
|
3843
|
+
- Improvement description or summary
|
|
3844
|
+
----
|
|
3845
|
+
|
|
3846
|
+
You may also use tag-based groupings, but the tags must be listed explicitly.
|
|
3847
|
+
|
|
3848
|
+
[source,yaml]
|
|
3849
|
+
----
|
|
3850
|
+
sort:
|
|
3851
|
+
- 'breaking:group'
|
|
3852
|
+
- 'deprecation:group'
|
|
3853
|
+
- 'type:group'
|
|
3854
|
+
- 'part:label'
|
|
3855
|
+
----
|
|
3856
|
+
|
|
3857
|
+
This would output something akin to:
|
|
3858
|
+
|
|
3859
|
+
[source,markdown]
|
|
3860
|
+
----
|
|
3861
|
+
## Breaking Changes
|
|
3862
|
+
- We are breaking this thing! [Web UI]
|
|
3863
|
+
|
|
3864
|
+
## Deprecations
|
|
3865
|
+
- We are deprecating this thing! [Backend]
|
|
3866
|
+
|
|
3867
|
+
## New features
|
|
3868
|
+
- Feature description or summary [Web UI]
|
|
3869
|
+
- Another feature description or summary [Web UI]
|
|
3870
|
+
|
|
3871
|
+
## Improvements
|
|
3872
|
+
- Improvement description or summary [Backend]
|
|
3873
|
+
----
|
|
3874
|
+
|
|
3875
|
+
|
|
3876
|
+
[horizontal]
|
|
3877
|
+
type;; Array
|
|
3878
|
+
default;;
|
|
3879
|
+
+
|
|
3880
|
+
....
|
|
3881
|
+
- highlight:grouping1
|
|
3882
|
+
- deprecation:grouping1
|
|
3883
|
+
- removal:grouping1
|
|
3884
|
+
- breaking:grouping1
|
|
3885
|
+
- type:grouping1
|
|
3886
|
+
- part:grouping2
|
|
3887
|
+
....
|
|
3888
|
+
path;; `xref:conf_ppty_notes_sort[config.notes.sort]`
|
|
3889
|
+
--
|
|
3890
|
+
|
|
3891
|
+
[[conf_ppty_notes_items,config.notes.items]]
|
|
3892
|
+
notes.items:::
|
|
3893
|
+
+
|
|
3894
|
+
--
|
|
3895
|
+
Settings that affect the frame/shape and arrangement of individual release-note item displays.
|
|
3896
|
+
|
|
3897
|
+
|
|
3898
|
+
[horizontal]
|
|
3899
|
+
path;; `xref:conf_ppty_notes_items[config.notes.items]`
|
|
3900
|
+
--
|
|
3901
|
+
|
|
3902
|
+
[[conf_ppty_notes_items_frame,config.notes.items.frame]]
|
|
3903
|
+
notes.items.frame::::
|
|
3904
|
+
+
|
|
3905
|
+
--
|
|
3906
|
+
The layout for the release-note item display.
|
|
3907
|
+
|
|
3908
|
+
Can be `table-cols-1`, `table-cols-2`, `desc-list`, or `admonition`.
|
|
3909
|
+
|
|
3910
|
+
|
|
3911
|
+
[horizontal]
|
|
3912
|
+
type;; String
|
|
3913
|
+
default;;
|
|
3914
|
+
+
|
|
3915
|
+
`+++table-cols-1+++`
|
|
3916
|
+
path;; `xref:conf_ppty_notes_items_frame[config.notes.items.frame]`
|
|
3917
|
+
--
|
|
3918
|
+
|
|
3919
|
+
[[conf_ppty_notes_items_allow_redundant,config.notes.items.allow_redundant]]
|
|
3920
|
+
notes.items.allow_redundant::::
|
|
3921
|
+
+
|
|
3922
|
+
--
|
|
3923
|
+
Whether to allow duplicate entries in a given section, for instance across groups for `part:group` sorts where a change affects multiple parts.
|
|
3924
|
+
|
|
3925
|
+
|
|
3926
|
+
[horizontal]
|
|
3927
|
+
type;; Boolean
|
|
3928
|
+
default;;
|
|
3929
|
+
+
|
|
3930
|
+
`+++false+++`
|
|
3931
|
+
path;; `xref:conf_ppty_notes_items_allow_redundant[config.notes.items.allow_redundant]`
|
|
3932
|
+
--
|
|
3933
|
+
|
|
3934
|
+
[[conf_ppty_notes_items_show_git_links,config.notes.items.show_git_links]]
|
|
3935
|
+
notes.items.show_git_links::::
|
|
3936
|
+
+
|
|
3937
|
+
--
|
|
3938
|
+
Whether to include git links in item metadata.
|
|
3939
|
+
|
|
3940
|
+
Requires `links.git` to be defined.
|
|
3941
|
+
|
|
3942
|
+
|
|
3943
|
+
[horizontal]
|
|
3944
|
+
type;; Boolean
|
|
3945
|
+
default;;
|
|
3946
|
+
+
|
|
3947
|
+
`+++false+++`
|
|
3948
|
+
path;; `xref:conf_ppty_notes_items_show_git_links[config.notes.items.show_git_links]`
|
|
3949
|
+
--
|
|
3950
|
+
|
|
3951
|
+
[[conf_ppty_notes_items_show_issue_links,config.notes.items.show_issue_links]]
|
|
3952
|
+
notes.items.show_issue_links::::
|
|
3953
|
+
+
|
|
3954
|
+
--
|
|
3955
|
+
Whether to include web links in item metadata.
|
|
3956
|
+
|
|
3957
|
+
Requires `links.web` to be defined.
|
|
3958
|
+
|
|
3959
|
+
|
|
3960
|
+
[horizontal]
|
|
3961
|
+
type;; Boolean
|
|
3962
|
+
default;;
|
|
3963
|
+
+
|
|
3964
|
+
`+++false+++`
|
|
3965
|
+
path;; `xref:conf_ppty_notes_items_show_issue_links[config.notes.items.show_issue_links]`
|
|
3966
|
+
--
|
|
3967
|
+
|
|
3968
|
+
[[conf_ppty_notes_items_metadata_labels,config.notes.items.metadata_labels]]
|
|
3969
|
+
notes.items.metadata_labels::::
|
|
3970
|
+
+
|
|
3971
|
+
--
|
|
3972
|
+
If and where to display icons in relation to labels in item metadata.
|
|
3973
|
+
|
|
3974
|
+
Use `before` or `after` to choose a spot, `none` or `'$nil'` to disable.
|
|
3975
|
+
|
|
3976
|
+
|
|
3977
|
+
[horizontal]
|
|
3978
|
+
type;; String
|
|
3979
|
+
default;;
|
|
3980
|
+
+
|
|
3981
|
+
`+++before+++`
|
|
3982
|
+
path;; `xref:conf_ppty_notes_items_metadata_labels[config.notes.items.metadata_labels]`
|
|
3983
|
+
--
|
|
3984
|
+
|
|
3985
|
+
[[conf_ppty_notes_items_metadata_icons,config.notes.items.metadata_icons]]
|
|
3986
|
+
notes.items.metadata_icons::::
|
|
3987
|
+
+
|
|
3988
|
+
--
|
|
3989
|
+
Whether to include icons for metadata in item metadata.
|
|
3990
|
+
|
|
3991
|
+
|
|
3992
|
+
[horizontal]
|
|
3993
|
+
type;; Boolean
|
|
3994
|
+
default;;
|
|
3995
|
+
+
|
|
3996
|
+
`+++before+++`
|
|
3997
|
+
path;; `xref:conf_ppty_notes_items_metadata_icons[config.notes.items.metadata_icons]`
|
|
3998
|
+
--
|
|
3999
|
+
|
|
4000
|
+
[[conf_ppty_notes_items_show_lead,config.notes.items.show_lead]]
|
|
4001
|
+
notes.items.show_lead::::
|
|
4002
|
+
+
|
|
4003
|
+
--
|
|
4004
|
+
Whether to include the lead-in text for the section in the item metadata.
|
|
4005
|
+
This is useful for displaying the section header in the item metadata.
|
|
4006
|
+
|
|
4007
|
+
|
|
4008
|
+
[horizontal]
|
|
4009
|
+
type;; Boolean
|
|
4010
|
+
default;;
|
|
4011
|
+
+
|
|
4012
|
+
`+++false+++`
|
|
4013
|
+
path;; `xref:conf_ppty_notes_items_show_lead[config.notes.items.show_lead]`
|
|
4014
|
+
--
|
|
4015
|
+
|
|
4016
|
+
[[conf_ppty_notes_items_show_type_label,config.notes.items.show_type_label]]
|
|
4017
|
+
notes.items.show_type_label::::
|
|
4018
|
+
+
|
|
4019
|
+
--
|
|
4020
|
+
Whether to show the type label in the item metadata output.
|
|
4021
|
+
If `false`, the type will be listed unlabeled in the output, for templates that support this option.
|
|
4022
|
+
|
|
4023
|
+
Corresponds to the <<conf_ppty_history_labeling_type_label>> property, which defines the content displayed when this property is `true` for a given section of the history output.
|
|
4024
|
+
|
|
4025
|
+
|
|
4026
|
+
[horizontal]
|
|
4027
|
+
type;; Boolean
|
|
4028
|
+
default;;
|
|
4029
|
+
+
|
|
4030
|
+
`+++false+++`
|
|
4031
|
+
path;; `xref:conf_ppty_notes_items_show_type_label[config.notes.items.show_type_label]`
|
|
4032
|
+
--
|
|
4033
|
+
|
|
4034
|
+
[[conf_ppty_notes_items_show_parts_label,config.notes.items.show_parts_label]]
|
|
4035
|
+
notes.items.show_parts_label::::
|
|
4036
|
+
+
|
|
4037
|
+
--
|
|
4038
|
+
Whether to show the parts label in the item metadata output.
|
|
4039
|
+
If `false`, parts will be listed unlabeled in the output, for templates that support this option.
|
|
4040
|
+
|
|
4041
|
+
Corresponds to the <<conf_ppty_history_labeling_parts_label>> property (and optionally the <<conf_ppty_history_labeling_part_label>>), which defines the content displayed when this property is `true` for a given section of the history output.
|
|
4042
|
+
|
|
4043
|
+
|
|
4044
|
+
[horizontal]
|
|
4045
|
+
type;; Boolean
|
|
4046
|
+
default;;
|
|
4047
|
+
+
|
|
4048
|
+
`+++false+++`
|
|
4049
|
+
path;; `xref:conf_ppty_notes_items_show_parts_label[config.notes.items.show_parts_label]`
|
|
4050
|
+
--
|
|
4051
|
+
|
|
4052
|
+
[[conf_ppty_notes_items_show_tags_label,config.notes.items.show_tags_label]]
|
|
4053
|
+
notes.items.show_tags_label::::
|
|
4054
|
+
+
|
|
4055
|
+
--
|
|
4056
|
+
Whether to show the tags label in the item metadata output.
|
|
4057
|
+
If `false`, tags will be listed unlabeled in the output, for templates that support this option.
|
|
4058
|
+
|
|
4059
|
+
Corresponds to the <<conf_ppty_history_labeling_tags_label>> property (and optionally the <<conf_ppty_history_labeling_tag_label>>), which defines the content displayed when this property is `true` for a given section of the history output.
|
|
4060
|
+
|
|
4061
|
+
|
|
4062
|
+
[horizontal]
|
|
4063
|
+
type;; Boolean
|
|
4064
|
+
default;;
|
|
4065
|
+
+
|
|
4066
|
+
`+++false+++`
|
|
4067
|
+
path;; `xref:conf_ppty_notes_items_show_tags_label[config.notes.items.show_tags_label]`
|
|
4068
|
+
--
|
|
4069
|
+
|
|
4070
|
+
[[conf_ppty_notes_items_show_lead_label,config.notes.items.show_lead_label]]
|
|
4071
|
+
notes.items.show_lead_label::::
|
|
4072
|
+
+
|
|
4073
|
+
--
|
|
4074
|
+
Whether to show the lead label in the item metadata output.
|
|
4075
|
+
If `false`, the lead will be listed unlabeled in the output, for templates that support this option.
|
|
4076
|
+
|
|
4077
|
+
Corresponds to the <<conf_ppty_history_labeling_lead_label>> property, which defines the content displayed when this property is `true` for a given section of the history output.
|
|
4078
|
+
|
|
4079
|
+
|
|
4080
|
+
[horizontal]
|
|
4081
|
+
type;; Boolean
|
|
4082
|
+
default;;
|
|
4083
|
+
+
|
|
4084
|
+
`+++false+++`
|
|
4085
|
+
path;; `xref:conf_ppty_notes_items_show_lead_label[config.notes.items.show_lead_label]`
|
|
4086
|
+
--
|
|
4087
|
+
|
|
4088
|
+
[[conf_ppty_notes_items_show_auths_label,config.notes.items.show_auths_label]]
|
|
4089
|
+
notes.items.show_auths_label::::
|
|
4090
|
+
+
|
|
4091
|
+
--
|
|
4092
|
+
Whether to show the authors label in the item metadata output.
|
|
4093
|
+
If `false`, authors will be listed unlabeled in the output, for templates that support this option.
|
|
4094
|
+
|
|
4095
|
+
Corresponds to the <<conf_ppty_history_labeling_auth_label>> property, which defines the content displayed when this property is `true` for a given section of the history output.
|
|
4096
|
+
|
|
4097
|
+
|
|
4098
|
+
[horizontal]
|
|
4099
|
+
type;; Boolean
|
|
4100
|
+
default;;
|
|
4101
|
+
+
|
|
4102
|
+
`+++false+++`
|
|
4103
|
+
path;; `xref:conf_ppty_notes_items_show_auths_label[config.notes.items.show_auths_label]`
|
|
4104
|
+
--
|