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,1546 @@
|
|
|
1
|
+
{
|
|
2
|
+
"format": "releasehx-config-reference",
|
|
3
|
+
"version": 1,
|
|
4
|
+
"properties": {
|
|
5
|
+
"$meta": {
|
|
6
|
+
"path": "$meta",
|
|
7
|
+
"desc": "The metadata settings for the configuration file.\n",
|
|
8
|
+
"properties": {
|
|
9
|
+
"markup": {
|
|
10
|
+
"path": "$meta.markup",
|
|
11
|
+
"desc": "The markup format used in strings in this configuration file.\nMay be `asciidoc` or `markdown`.\n\nThis 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.\nAll default values are cross-compatible.\n",
|
|
12
|
+
"type": "String",
|
|
13
|
+
"default": "markdown"
|
|
14
|
+
},
|
|
15
|
+
"slug_type": {
|
|
16
|
+
"path": "$meta.slug_type",
|
|
17
|
+
"desc": "The format of slugs used in your application, for use with `sluggerize` Liquid filter.\n\nMust be `kebab` (ex: `hyphen-delimited-slug`) or `snake` (ex: `underscore_delimited_slug`).\n",
|
|
18
|
+
"type": "String",
|
|
19
|
+
"default": "kebab"
|
|
20
|
+
},
|
|
21
|
+
"tplt_lang": {
|
|
22
|
+
"path": "$meta.tplt_lang",
|
|
23
|
+
"desc": "The default format used in fields of `Template` type.\nMust be `liquid` or `erb`.\n",
|
|
24
|
+
"type": "String",
|
|
25
|
+
"default": "liquid"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"origin": {
|
|
30
|
+
"path": "origin",
|
|
31
|
+
"desc": "The API or file source for the issues.\n",
|
|
32
|
+
"properties": {
|
|
33
|
+
"source": {
|
|
34
|
+
"path": "origin.source",
|
|
35
|
+
"desc": "The type of API or file to use for the issues source.\nMay be `jira`, `github`, `gitlab`, or `rhyml`.\n",
|
|
36
|
+
"docs": "The `jira`, `github`, and `gitlab` types are all REST APIs that return an individualized JSON payload upon request, to be converted to RHYML format.\n\nAlternately, you may use a file directly written in <<rhyml,RHYML-style YAML>> (`rhyml`).\n\nIf you wish to mix Git and API sources, this field should still reference the API.\n\nCustom 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).\n",
|
|
37
|
+
"type": "String",
|
|
38
|
+
"default": "rhyml"
|
|
39
|
+
},
|
|
40
|
+
"project": {
|
|
41
|
+
"path": "origin.project",
|
|
42
|
+
"desc": "The string used to identify the project in the remote API.\nOnly required if the API requires a project identifier.\n",
|
|
43
|
+
"type": "Slug"
|
|
44
|
+
},
|
|
45
|
+
"href": {
|
|
46
|
+
"path": "origin.href",
|
|
47
|
+
"desc": "The local or remote URI for the API or JSON file.\nEither the REST API endpoint path or the path to a local or remote JSON file containing the issues data.\n\nThis field may be templated, accepting Liquid placeholders like `{{ proj }}` (the sibling `project` property) or `{{ version }}` (the argued release version code).\n",
|
|
48
|
+
"type": "URI",
|
|
49
|
+
"templating": {
|
|
50
|
+
"delay": false
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"auth": {
|
|
54
|
+
"path": "origin.auth",
|
|
55
|
+
"desc": "Properties related to API authentication.\n\nThis 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.\n",
|
|
56
|
+
"properties": {
|
|
57
|
+
"mode": {
|
|
58
|
+
"path": "origin.auth.mode",
|
|
59
|
+
"desc": "The type of authentication to use.\n\nOptions are: `basic`, `token`, `bearer`, `header`, `query`, `none`.\n"
|
|
60
|
+
},
|
|
61
|
+
"header": {
|
|
62
|
+
"path": "origin.auth.header",
|
|
63
|
+
"desc": "The header to use for authentication.\nOnly used if `origin.auth.mode` is `header`.\n",
|
|
64
|
+
"type": "String"
|
|
65
|
+
},
|
|
66
|
+
"cred_uri": {
|
|
67
|
+
"path": "origin.auth.cred_uri",
|
|
68
|
+
"desc": "The location of the API credentials file for declaring API authentication arguments without environment variables.\n\nThe value can be a local path with read access or an HTTP path (not recommended unless ReleaseHx is always executed on an organizational VPN).\n",
|
|
69
|
+
"docs": "The default order of credential strings defaults to:\n\n....\nAPI_KEY\nUSERNAME\nORGANIZATION\n....\n\nHowever, this format can be customized using <<conf_ppty_cred_key_line>>, <<conf_ppty_cred_user_line>>, and <<conf_ppty_cred_org_line>>.\n\nNote 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>>.\n\n[IMPORTANT]\nThis file should probably be added to `.gitignore` in your application repo.\n",
|
|
70
|
+
"type": "URI",
|
|
71
|
+
"default": "RELEASEHX_API_CRED"
|
|
72
|
+
},
|
|
73
|
+
"cred_key_line": {
|
|
74
|
+
"path": "origin.auth.cred_key_line",
|
|
75
|
+
"desc": "Number of the line of the credentials file (at <<conf_ppty_origin_auth_cred_uri>>) on which the key or token string appears.\n",
|
|
76
|
+
"type": "Number",
|
|
77
|
+
"default": 1
|
|
78
|
+
},
|
|
79
|
+
"cred_user_line": {
|
|
80
|
+
"path": "origin.auth.cred_user_line",
|
|
81
|
+
"desc": "Number of the line of the credentials file (at <<conf_ppty_origin_auth_cred_uri>>) on which the user string appears.\n",
|
|
82
|
+
"type": "Number",
|
|
83
|
+
"default": 2
|
|
84
|
+
},
|
|
85
|
+
"cred_org_line": {
|
|
86
|
+
"path": "origin.auth.cred_org_line",
|
|
87
|
+
"desc": "Number of the line of the credentials file (at <<conf_ppty_origin_auth_cred_uri>>) on which the org string appears.\n",
|
|
88
|
+
"type": "Number",
|
|
89
|
+
"default": 3
|
|
90
|
+
},
|
|
91
|
+
"key_env": {
|
|
92
|
+
"path": "origin.auth.key_env",
|
|
93
|
+
"desc": "Name of the environment variable containing the API key or token.\nWill override the key line in an existing credentials file (see <<conf_ppty_origin_auth_cred_uri>>).\n",
|
|
94
|
+
"type": "String",
|
|
95
|
+
"default": "RELEASEHX_API_KEY"
|
|
96
|
+
},
|
|
97
|
+
"user_env": {
|
|
98
|
+
"path": "origin.auth.user_env",
|
|
99
|
+
"desc": "Name of the environment variable containing the API username.\nWill override the user line in an existing credentials file (see <<conf_ppty_origin_auth_cred_uri>>).\n",
|
|
100
|
+
"type": "String",
|
|
101
|
+
"default": "RELEASEHX_API_USER"
|
|
102
|
+
},
|
|
103
|
+
"org_env": {
|
|
104
|
+
"path": "origin.auth.org_env",
|
|
105
|
+
"desc": "Name of the environment variable containing the organization credential.\nWill override the org line in an existing credentials file (see <<conf_ppty_origin_auth_cred_uri>>).\n",
|
|
106
|
+
"type": "String",
|
|
107
|
+
"default": "RELEASEHX_API_ORG"
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
"conversions": {
|
|
114
|
+
"path": "conversions",
|
|
115
|
+
"desc": "Details about content origination, as well as markup sources and conversion.\nUsed to assist mapping between API source payloads and the corresponding properties of their target RHYML _change_ records.\n",
|
|
116
|
+
"properties": {
|
|
117
|
+
"summ": {
|
|
118
|
+
"path": "conversions.summ",
|
|
119
|
+
"desc": "The source of the summary (Changelog) content.\nMust be `issue_heading`, `custom_field`, or `commit_message_heading`.\n\nIf `issue_heading`, the summary or title field will be used.\nIf `commit_message_heading`, the first line of the Git commit will be used.\n",
|
|
120
|
+
"type": "String",
|
|
121
|
+
"default": "issue"
|
|
122
|
+
},
|
|
123
|
+
"head": {
|
|
124
|
+
"path": "conversions.head",
|
|
125
|
+
"desc": "The source of release-note headlines, when it is not the same as the summary.\n\nUnless a `head` is available in the RHYML source, the `summ` will be used.\nBy default, ReleaseHx does not generate a `head` property for work items.\n\nPotential values: `issue_heading`, `release_note_heading`, or `commit_message_heading`.\n",
|
|
126
|
+
"docs": "When set to *`issue_heading`*, the RHYML `head` property will derive from the issue title or summary.\n\nWhen 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`.\nWhen set to `commit_message_heading`, the RHYML `head` property will derive from the first line of the commit message.\n",
|
|
127
|
+
"type": "String"
|
|
128
|
+
},
|
|
129
|
+
"note": {
|
|
130
|
+
"path": "conversions.note",
|
|
131
|
+
"desc": "The source of the release notes content.\nMust be `issue_body`, `custom_field`, or `commit_message`.\n\nDefaults to `issue_body` for GitHub and GitLab, but to `custom_field` for Jira.\n",
|
|
132
|
+
"type": "String"
|
|
133
|
+
},
|
|
134
|
+
"note_custom_field": {
|
|
135
|
+
"path": "conversions.note_custom_field",
|
|
136
|
+
"desc": "The name of the custom field to use for the release notes content.\nOnly used if `conversions.note` is `custom_field`.\n\nThis purposely has no default, as you will probably have to look up the actual field ID, which will be something like `customfield_10010`.\n",
|
|
137
|
+
"type": "String"
|
|
138
|
+
},
|
|
139
|
+
"note_pattern": {
|
|
140
|
+
"path": "conversions.note_pattern",
|
|
141
|
+
"desc": "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.\n\nDefaults to a Markdown or AsciiDoc header or HTML comment with the case-insensitive string `release note` in it.\n\nUses Capture group `note` in the Regular Expression to establish the entire note content.\n\nSee the `conversions.head_pattern` property for details on extracting a heading (`head` in RHYML) from the `note` content.\n",
|
|
142
|
+
"type": "RegExp",
|
|
143
|
+
"default": "/^((#|=)+ (Draft )?Release Note.*)|(<!-- (draft )?release note -->)\\n(?<note>\\w(.|\\n)+)/gmi"
|
|
144
|
+
},
|
|
145
|
+
"head_pattern": {
|
|
146
|
+
"path": "conversions.head_pattern",
|
|
147
|
+
"desc": "The Regular Expressions pattern to match in the `note` text to be used to establish a heading for the note (`head`).\nThis text is removed from the `note` value during a draft operation, if the pattern matches.\n\nDefaults to a Markdown or AsciiDoc header or HTML comment with the case-insensitive string `release note` in it.\n\nThe `head` capture group is snipped from text matching this pattern.\n",
|
|
148
|
+
"type": "RegExp",
|
|
149
|
+
"default": "/^(?<head>[A-Z].*[^.!])\\n\\n[A-Z].*/gm"
|
|
150
|
+
},
|
|
151
|
+
"markup": {
|
|
152
|
+
"path": "conversions.markup",
|
|
153
|
+
"desc": "The origin markup format for notes.\nMay be `markdown` or `asciidoc`.\n",
|
|
154
|
+
"type": "String",
|
|
155
|
+
"default": "markdown"
|
|
156
|
+
},
|
|
157
|
+
"engine": {
|
|
158
|
+
"path": "conversions.engine",
|
|
159
|
+
"desc": "The markup converter to use for the issues.\nDefaults to `asciidoctor` for AsciiDoc and `redcarpet` for Markdown.\nOptions include `asciidoctor`, `redcarpet`, `commonmarker`, `kramdown`, or `pandoc`.\n",
|
|
160
|
+
"type": "String"
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
"extensions": {
|
|
165
|
+
"path": "extensions",
|
|
166
|
+
"desc": "Default file extensions.",
|
|
167
|
+
"properties": {
|
|
168
|
+
"markdown": {
|
|
169
|
+
"path": "extensions.markdown",
|
|
170
|
+
"desc": "File extension for Markdown drafts.",
|
|
171
|
+
"type": "String",
|
|
172
|
+
"default": "md"
|
|
173
|
+
},
|
|
174
|
+
"asciidoc": {
|
|
175
|
+
"path": "extensions.asciidoc",
|
|
176
|
+
"desc": "File extension for AsciiDoc drafts.",
|
|
177
|
+
"type": "String",
|
|
178
|
+
"default": "adoc"
|
|
179
|
+
},
|
|
180
|
+
"yaml": {
|
|
181
|
+
"path": "extensions.yaml",
|
|
182
|
+
"desc": "File extension for YAML drafts.",
|
|
183
|
+
"type": "String",
|
|
184
|
+
"default": "yml"
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
"types": {
|
|
189
|
+
"path": "types",
|
|
190
|
+
"desc": "Issue types to include in the release history, in the order of display.\n\nList as many as you wish to match up with corresponding metadata at the source.\n",
|
|
191
|
+
"type": "Map",
|
|
192
|
+
"properties": {
|
|
193
|
+
"label_prefix": {
|
|
194
|
+
"path": "types.label_prefix",
|
|
195
|
+
"desc": "The prefix used in issue labels to identify type labels.\nFor example, 'type:' would match labels like 'type:feature', 'type:bug'.\nAnother common pattern is 'kind:' for labels like 'kind:feature', 'kind:enhancement'.\n\nIf set to an empty string or null, type detection will only look for direct label matches\nagainst the configured type slugs (e.g., looking for 'bug', 'feature' labels directly).\n",
|
|
196
|
+
"docs": "This setting allows you to customize how your organization names type labels.\nThe mapping system will look for labels that start with this prefix to determine the type of each change.\n\nExamples:\n\n* `type:` matches `type:feature`, `type:bug`\n* `kind:` matches `kind:enhancement`, `kind:defect` \n* `category-` matches `category-feature`, `category-bugfix`\n\nWhen no prefix is configured (empty string), the system will look for labels that directly match\nthe `slug` property of each configured type.\n",
|
|
197
|
+
"type": "String",
|
|
198
|
+
"default": ""
|
|
199
|
+
},
|
|
200
|
+
"feature": {
|
|
201
|
+
"path": "types.feature",
|
|
202
|
+
"desc": "A new capability, functionality, or interface element.\n",
|
|
203
|
+
"properties": {
|
|
204
|
+
"slug": {
|
|
205
|
+
"path": "types.feature.slug",
|
|
206
|
+
"desc": "The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.\n",
|
|
207
|
+
"type": "String",
|
|
208
|
+
"default": "feature"
|
|
209
|
+
},
|
|
210
|
+
"text": {
|
|
211
|
+
"path": "types.feature.text",
|
|
212
|
+
"desc": "The display label for the type in the release history output.\nDefaults to the capitalized key name.\n",
|
|
213
|
+
"type": "String",
|
|
214
|
+
"default": "New feature"
|
|
215
|
+
},
|
|
216
|
+
"head": {
|
|
217
|
+
"path": "types.feature.head",
|
|
218
|
+
"desc": "The header for the type in the release history output.\nDefaults in templates to the `text` property pluralized.\n",
|
|
219
|
+
"type": "String",
|
|
220
|
+
"default": "New features"
|
|
221
|
+
},
|
|
222
|
+
"icon": {
|
|
223
|
+
"path": "types.feature.icon",
|
|
224
|
+
"desc": "The icon to use for issues of this type.\n",
|
|
225
|
+
"type": "String",
|
|
226
|
+
"default": "plus-square-o"
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
"bug": {
|
|
231
|
+
"path": "types.bug",
|
|
232
|
+
"desc": "A fix for a previously reported issue.\n",
|
|
233
|
+
"properties": {
|
|
234
|
+
"slug": {
|
|
235
|
+
"path": "types.bug.slug",
|
|
236
|
+
"desc": "The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.\n",
|
|
237
|
+
"type": "String",
|
|
238
|
+
"default": "bug"
|
|
239
|
+
},
|
|
240
|
+
"text": {
|
|
241
|
+
"path": "types.bug.text",
|
|
242
|
+
"desc": "The display label for the type in the release history output.\nDefaults to the capitalized key name.\n",
|
|
243
|
+
"type": "String",
|
|
244
|
+
"default": "Bug fix"
|
|
245
|
+
},
|
|
246
|
+
"head": {
|
|
247
|
+
"path": "types.bug.head",
|
|
248
|
+
"desc": "The header for the type in the release history output.\nDefaults in templates to the `text` property pluralized.\n",
|
|
249
|
+
"type": "String",
|
|
250
|
+
"default": "Bug fixes"
|
|
251
|
+
},
|
|
252
|
+
"icon": {
|
|
253
|
+
"path": "types.bug.icon",
|
|
254
|
+
"desc": "The icon to use for issues of this type.\n",
|
|
255
|
+
"type": "String",
|
|
256
|
+
"default": "bug"
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
"improvement": {
|
|
261
|
+
"path": "types.improvement",
|
|
262
|
+
"desc": "An enhancement to an existing capability, functionality, or interface element.\n",
|
|
263
|
+
"properties": {
|
|
264
|
+
"slug": {
|
|
265
|
+
"path": "types.improvement.slug",
|
|
266
|
+
"desc": "The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.\n",
|
|
267
|
+
"type": "String",
|
|
268
|
+
"default": "improvement"
|
|
269
|
+
},
|
|
270
|
+
"text": {
|
|
271
|
+
"path": "types.improvement.text",
|
|
272
|
+
"desc": "The display label for the type in the release history output.\nDefaults to the capitalized key name.\n",
|
|
273
|
+
"type": "String",
|
|
274
|
+
"default": "Improvement"
|
|
275
|
+
},
|
|
276
|
+
"head": {
|
|
277
|
+
"path": "types.improvement.head",
|
|
278
|
+
"desc": "The header for the type in the release history output.\nDefaults in templates to the `text` property pluralized.\n",
|
|
279
|
+
"type": "String",
|
|
280
|
+
"default": "Improvements"
|
|
281
|
+
},
|
|
282
|
+
"icon": {
|
|
283
|
+
"path": "types.improvement.icon",
|
|
284
|
+
"desc": "The icon to use for issues of this type.\n",
|
|
285
|
+
"type": "String",
|
|
286
|
+
"default": "wrench"
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
"documentation": {
|
|
291
|
+
"path": "types.documentation",
|
|
292
|
+
"desc": "An update to the documentation.\n",
|
|
293
|
+
"properties": {
|
|
294
|
+
"slug": {
|
|
295
|
+
"path": "types.documentation.slug",
|
|
296
|
+
"desc": "The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.\n",
|
|
297
|
+
"type": "String",
|
|
298
|
+
"default": "documentation"
|
|
299
|
+
},
|
|
300
|
+
"text": {
|
|
301
|
+
"path": "types.documentation.text",
|
|
302
|
+
"desc": "The display label for the type in the release history output.\nDefaults to the capitalized key name.\n",
|
|
303
|
+
"type": "String",
|
|
304
|
+
"default": "Documentation"
|
|
305
|
+
},
|
|
306
|
+
"head": {
|
|
307
|
+
"path": "types.documentation.head",
|
|
308
|
+
"desc": "The header for the type in the release history output.\nDefaults in templates to the `text` property pluralized.\n",
|
|
309
|
+
"type": "String",
|
|
310
|
+
"default": "Docs Changes"
|
|
311
|
+
},
|
|
312
|
+
"icon": {
|
|
313
|
+
"path": "types.documentation.icon",
|
|
314
|
+
"desc": "The icon to use for issues of this type.\n",
|
|
315
|
+
"type": "String",
|
|
316
|
+
"default": "book"
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
},
|
|
320
|
+
"<type_name>": {
|
|
321
|
+
"path": "types.<type_name>",
|
|
322
|
+
"desc": "The corresponding issue type.\n\nThe key should be a simple string for referencing the slug in RHYML and ReleaseHx templates.\nThis is what will be entered in a change's `type` property in RHYML.\n",
|
|
323
|
+
"properties": {
|
|
324
|
+
"slug": {
|
|
325
|
+
"path": "types.<type_name>.slug",
|
|
326
|
+
"desc": "The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.\n",
|
|
327
|
+
"type": "String"
|
|
328
|
+
},
|
|
329
|
+
"text": {
|
|
330
|
+
"path": "types.<type_name>.text",
|
|
331
|
+
"desc": "The display label for the type in the release history output.\nDefaults to the capitalized key name.\n",
|
|
332
|
+
"type": "String"
|
|
333
|
+
},
|
|
334
|
+
"head": {
|
|
335
|
+
"path": "types.<type_name>.head",
|
|
336
|
+
"desc": "The header for the type in the release history output.\nDefaults in templates to the `text` property pluralized.\n",
|
|
337
|
+
"type": "String"
|
|
338
|
+
},
|
|
339
|
+
"icon": {
|
|
340
|
+
"path": "types.<type_name>.icon",
|
|
341
|
+
"desc": "The icon to use for issues of this type.\n",
|
|
342
|
+
"type": "String"
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
},
|
|
348
|
+
"parts": {
|
|
349
|
+
"path": "parts",
|
|
350
|
+
"desc": "The map of product components to include in the release history, in the order of display.\n\nList as many as you wish to match up with corresponding metadata at the source.\n",
|
|
351
|
+
"type": "Map",
|
|
352
|
+
"properties": {
|
|
353
|
+
"label_prefix": {
|
|
354
|
+
"path": "parts.label_prefix",
|
|
355
|
+
"desc": "The prefix used in issue labels to identify component/part labels.\nFor example, 'part:' would match labels like 'part:frontend', 'part:backend'.\nAnother common pattern is 'component:' for labels like 'component:ui', 'component:api'.\n",
|
|
356
|
+
"docs": "This setting allows you to customize how your organization names component labels.\nThe mapping system will look for labels that start with this prefix to determine which parts/components are affected by each change.\n\nExamples:\n\n* `part:` matches `part:frontend`, `part:backend`\n* `component:` matches `component:ui`, `component:api`\n* `area-` matches `area-security`, `area-performance`\n",
|
|
357
|
+
"type": "String",
|
|
358
|
+
"default": "part:"
|
|
359
|
+
},
|
|
360
|
+
"<part_name>": {
|
|
361
|
+
"path": "parts.<part_name>",
|
|
362
|
+
"desc": "The corresponding product component.\n\nThe key should be a simple string for referencing the slug in RHYML and ReleaseHx templates.\nThis is what will be entered in a change's `part` property in RHYML.\n",
|
|
363
|
+
"type": "Map",
|
|
364
|
+
"properties": {
|
|
365
|
+
"slug": {
|
|
366
|
+
"path": "parts.<part_name>.slug",
|
|
367
|
+
"desc": "The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.\n\n[NOTE]\nThis technically does not have to be a \"`Slug`\" String, if the system permits spaces, colons, etc.\nIt just needs to _exactly_ match whatever String the remote API returns to represent the label/tag.\n",
|
|
368
|
+
"type": "String"
|
|
369
|
+
},
|
|
370
|
+
"text": {
|
|
371
|
+
"path": "parts.<part_name>.text",
|
|
372
|
+
"desc": "The display text for the component in the release history output.\nDefaults to the capitalized key name.\n",
|
|
373
|
+
"type": "String"
|
|
374
|
+
},
|
|
375
|
+
"head": {
|
|
376
|
+
"path": "parts.<part_name>.head",
|
|
377
|
+
"desc": "The header for the component in the release history output.\nDefaults in templates to the `text` property pluralized.\n",
|
|
378
|
+
"type": "String"
|
|
379
|
+
},
|
|
380
|
+
"icon": {
|
|
381
|
+
"path": "parts.<part_name>.icon",
|
|
382
|
+
"desc": "The icon to use for issues that affect this component.\n",
|
|
383
|
+
"type": "String"
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
},
|
|
389
|
+
"tags": {
|
|
390
|
+
"path": "tags",
|
|
391
|
+
"desc": "Handling for tags, labels, or toggles associated with source Issues.\n\nSubordinate property keys (other than `include` and `exclude`) represent individual tag names, with the default set documented here.\nThe property `<your_tag_name>` represents arbitrarily named tags, any number of which you are welcome to add.\n\nThis block serves to filter out any unrelated labels/tags ingested from APIs during the conversion from payload to RHYML draft.\nOnly tags with their own property here will be ported from the issue source to the RHYML change record's `tags` Array.\n",
|
|
392
|
+
"type": "Array",
|
|
393
|
+
"properties": {
|
|
394
|
+
"_include": {
|
|
395
|
+
"path": "tags._include",
|
|
396
|
+
"desc": "The tags, labels, or toggles that trigger inclusion in the release history.\n",
|
|
397
|
+
"type": "Array",
|
|
398
|
+
"default": [
|
|
399
|
+
"highlight",
|
|
400
|
+
"deprecation",
|
|
401
|
+
"removal",
|
|
402
|
+
"breaking",
|
|
403
|
+
"experimental",
|
|
404
|
+
"changelog"
|
|
405
|
+
]
|
|
406
|
+
},
|
|
407
|
+
"_exclude": {
|
|
408
|
+
"path": "tags._exclude",
|
|
409
|
+
"desc": "The list of tags that cause a change/issue to be excluded from the release history.\n",
|
|
410
|
+
"type": "Array",
|
|
411
|
+
"default": []
|
|
412
|
+
},
|
|
413
|
+
"highlight": {
|
|
414
|
+
"path": "tags.highlight",
|
|
415
|
+
"desc": "The tag, label, or toggle that indicates an issue is to be highlighted or prioritized in sorts.",
|
|
416
|
+
"properties": {
|
|
417
|
+
"head": {
|
|
418
|
+
"path": "tags.highlight.head",
|
|
419
|
+
"desc": "How this tag will display as a grouping title.",
|
|
420
|
+
"type": "String",
|
|
421
|
+
"default": "Highlights"
|
|
422
|
+
},
|
|
423
|
+
"text": {
|
|
424
|
+
"path": "tags.highlight.text",
|
|
425
|
+
"desc": "How this tag will display as a label.",
|
|
426
|
+
"type": "String",
|
|
427
|
+
"default": "highlight"
|
|
428
|
+
},
|
|
429
|
+
"slug": {
|
|
430
|
+
"path": "tags.highlight.slug",
|
|
431
|
+
"desc": "The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.\n\n[NOTE]\nThis technically does not have to be a \"`Slug`\" String, if the system permits spaces.\nIt just needs to exactly match whatever String the remote API returns to represent the label/tag.\n",
|
|
432
|
+
"type": "String",
|
|
433
|
+
"default": "highlighted"
|
|
434
|
+
},
|
|
435
|
+
"icon": {
|
|
436
|
+
"path": "tags.highlight.icon",
|
|
437
|
+
"desc": "The icon to use for issues so-tagged.\n",
|
|
438
|
+
"type": "String",
|
|
439
|
+
"default": "star"
|
|
440
|
+
},
|
|
441
|
+
"drop": {
|
|
442
|
+
"path": "tags.highlight.drop",
|
|
443
|
+
"desc": "Whether to drop this tag when creating a RHYML object from API source.\nBasically decides whether this tag is user-facing.\n",
|
|
444
|
+
"type": "Boolean",
|
|
445
|
+
"default": false
|
|
446
|
+
},
|
|
447
|
+
"groupable": {
|
|
448
|
+
"path": "tags.highlight.groupable",
|
|
449
|
+
"desc": "Whether this tag can be used to group issues in the release history.\n",
|
|
450
|
+
"type": "Boolean",
|
|
451
|
+
"default": true
|
|
452
|
+
}
|
|
453
|
+
}
|
|
454
|
+
},
|
|
455
|
+
"breaking": {
|
|
456
|
+
"path": "tags.breaking",
|
|
457
|
+
"desc": "The tag, label, or toggle that indicates a potentially disruptive change.",
|
|
458
|
+
"properties": {
|
|
459
|
+
"head": {
|
|
460
|
+
"path": "tags.breaking.head",
|
|
461
|
+
"desc": "How this tag will display as a grouping title.",
|
|
462
|
+
"type": "String",
|
|
463
|
+
"default": "Breaking Changes"
|
|
464
|
+
},
|
|
465
|
+
"text": {
|
|
466
|
+
"path": "tags.breaking.text",
|
|
467
|
+
"desc": "How this tag will display as a label.",
|
|
468
|
+
"type": "String",
|
|
469
|
+
"default": "Breaking"
|
|
470
|
+
},
|
|
471
|
+
"slug": {
|
|
472
|
+
"path": "tags.breaking.slug",
|
|
473
|
+
"desc": "The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.\n\n[NOTE]\nThis technically does not have to be a \"`Slug`\" String, if the system permits spaces.\nIt just needs to exactly match whatever String the remote API returns to represent the label/tag.\n",
|
|
474
|
+
"type": "String",
|
|
475
|
+
"default": "breaking"
|
|
476
|
+
},
|
|
477
|
+
"icon": {
|
|
478
|
+
"path": "tags.breaking.icon",
|
|
479
|
+
"desc": "The icon to use for issues so-tagged.\n",
|
|
480
|
+
"type": "String",
|
|
481
|
+
"default": "exclamation-triangle"
|
|
482
|
+
},
|
|
483
|
+
"drop": {
|
|
484
|
+
"path": "tags.breaking.drop",
|
|
485
|
+
"desc": "Whether to drop this tag when creating a RHYML object from API source.\nBasically decides whether this tag is user-facing.\n",
|
|
486
|
+
"type": "Boolean",
|
|
487
|
+
"default": false
|
|
488
|
+
},
|
|
489
|
+
"groupable": {
|
|
490
|
+
"path": "tags.breaking.groupable",
|
|
491
|
+
"desc": "Whether this tag can be used to group issues in the release history.\n",
|
|
492
|
+
"type": "Boolean",
|
|
493
|
+
"default": true
|
|
494
|
+
}
|
|
495
|
+
}
|
|
496
|
+
},
|
|
497
|
+
"removal": {
|
|
498
|
+
"path": "tags.removal",
|
|
499
|
+
"desc": "The tag, label, or toggle that indicates a change includes a feature removal.",
|
|
500
|
+
"properties": {
|
|
501
|
+
"head": {
|
|
502
|
+
"path": "tags.removal.head",
|
|
503
|
+
"desc": "How this tag will display as a grouping title.",
|
|
504
|
+
"type": "String",
|
|
505
|
+
"default": "Feature Removals"
|
|
506
|
+
},
|
|
507
|
+
"text": {
|
|
508
|
+
"path": "tags.removal.text",
|
|
509
|
+
"desc": "How this tag will display as a label.",
|
|
510
|
+
"type": "String",
|
|
511
|
+
"default": "Removed"
|
|
512
|
+
},
|
|
513
|
+
"slug": {
|
|
514
|
+
"path": "tags.removal.slug",
|
|
515
|
+
"desc": "The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.\n\n[NOTE]\nThis technically does not have to be a \"`Slug`\" String, if the system permits spaces.\nIt just needs to exactly match whatever String the remote API returns to represent the label/tag.\n",
|
|
516
|
+
"type": "String",
|
|
517
|
+
"default": "removal"
|
|
518
|
+
},
|
|
519
|
+
"icon": {
|
|
520
|
+
"path": "tags.removal.icon",
|
|
521
|
+
"desc": "The icon to use for issues so-tagged.\n",
|
|
522
|
+
"type": "String",
|
|
523
|
+
"default": "sign-out"
|
|
524
|
+
},
|
|
525
|
+
"drop": {
|
|
526
|
+
"path": "tags.removal.drop",
|
|
527
|
+
"desc": "Whether to drop this tag when creating a RHYML object from API source.\nBasically decides whether this tag is user-facing.\n",
|
|
528
|
+
"type": "Boolean",
|
|
529
|
+
"default": false
|
|
530
|
+
},
|
|
531
|
+
"groupable": {
|
|
532
|
+
"path": "tags.removal.groupable",
|
|
533
|
+
"desc": "Whether this tag can be used to group issues in the release history.\n",
|
|
534
|
+
"type": "Boolean",
|
|
535
|
+
"default": true
|
|
536
|
+
}
|
|
537
|
+
}
|
|
538
|
+
},
|
|
539
|
+
"deprecation": {
|
|
540
|
+
"path": "tags.deprecation",
|
|
541
|
+
"desc": "The tag, label, or toggle that indicates an issue includes a feature discontinuation announcement.",
|
|
542
|
+
"properties": {
|
|
543
|
+
"head": {
|
|
544
|
+
"path": "tags.deprecation.head",
|
|
545
|
+
"desc": "How this tag will display as a grouping title.",
|
|
546
|
+
"type": "String",
|
|
547
|
+
"default": "Deprecations"
|
|
548
|
+
},
|
|
549
|
+
"text": {
|
|
550
|
+
"path": "tags.deprecation.text",
|
|
551
|
+
"desc": "How this tag will display as a label.",
|
|
552
|
+
"type": "String",
|
|
553
|
+
"default": "Deprecated"
|
|
554
|
+
},
|
|
555
|
+
"slug": {
|
|
556
|
+
"path": "tags.deprecation.slug",
|
|
557
|
+
"desc": "The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.\n\n[NOTE]\nThis technically does not have to be a \"`Slug`\" String, if the system permits spaces.\nIt just needs to exactly match whatever String the remote API returns to represent the label/tag.\n",
|
|
558
|
+
"type": "String",
|
|
559
|
+
"default": "deprecation"
|
|
560
|
+
},
|
|
561
|
+
"icon": {
|
|
562
|
+
"path": "tags.deprecation.icon",
|
|
563
|
+
"desc": "The icon to use for issues so-tagged.\n",
|
|
564
|
+
"type": "String",
|
|
565
|
+
"default": "exclamation-triangle"
|
|
566
|
+
},
|
|
567
|
+
"drop": {
|
|
568
|
+
"path": "tags.deprecation.drop",
|
|
569
|
+
"desc": "Whether to drop this tag when creating a RHYML object from API source.\nBasically decides whether this tag is user-facing.\n",
|
|
570
|
+
"type": "Boolean",
|
|
571
|
+
"default": false
|
|
572
|
+
},
|
|
573
|
+
"groupable": {
|
|
574
|
+
"path": "tags.deprecation.groupable",
|
|
575
|
+
"desc": "Whether this tag can be used to group issues in the release history.\n",
|
|
576
|
+
"type": "Boolean",
|
|
577
|
+
"default": true
|
|
578
|
+
}
|
|
579
|
+
}
|
|
580
|
+
},
|
|
581
|
+
"security": {
|
|
582
|
+
"path": "tags.security",
|
|
583
|
+
"desc": "The tag, label, or toggle that indicates a change includes a security-related alteration.\n",
|
|
584
|
+
"properties": {
|
|
585
|
+
"head": {
|
|
586
|
+
"path": "tags.security.head",
|
|
587
|
+
"desc": "How this tag will display as a grouping title.",
|
|
588
|
+
"type": "String",
|
|
589
|
+
"default": "Security Fixes"
|
|
590
|
+
},
|
|
591
|
+
"text": {
|
|
592
|
+
"path": "tags.security.text",
|
|
593
|
+
"desc": "How this tag will display as a label.",
|
|
594
|
+
"type": "String",
|
|
595
|
+
"default": "Security"
|
|
596
|
+
},
|
|
597
|
+
"slug": {
|
|
598
|
+
"path": "tags.security.slug",
|
|
599
|
+
"desc": "The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.\n\n[NOTE]\nThis technically does not have to be a \"`Slug`\" String, if the system permits spaces.\nIt just needs to exactly match whatever String the remote API returns to represent the label/tag.\n",
|
|
600
|
+
"type": "String",
|
|
601
|
+
"default": "security"
|
|
602
|
+
},
|
|
603
|
+
"icon": {
|
|
604
|
+
"path": "tags.security.icon",
|
|
605
|
+
"desc": "The icon to use for issues so-tagged.\n",
|
|
606
|
+
"type": "String",
|
|
607
|
+
"default": "shield"
|
|
608
|
+
},
|
|
609
|
+
"drop": {
|
|
610
|
+
"path": "tags.security.drop",
|
|
611
|
+
"desc": "Whether to drop this tag when creating a RHYML object from API source.\nBasically decides whether this tag is user-facing.\n",
|
|
612
|
+
"type": "Boolean",
|
|
613
|
+
"default": false
|
|
614
|
+
},
|
|
615
|
+
"groupable": {
|
|
616
|
+
"path": "tags.security.groupable",
|
|
617
|
+
"desc": "Whether this tag can be used to group issues in the release history.\n",
|
|
618
|
+
"type": "Boolean",
|
|
619
|
+
"default": true
|
|
620
|
+
}
|
|
621
|
+
}
|
|
622
|
+
},
|
|
623
|
+
"experimental": {
|
|
624
|
+
"path": "tags.experimental",
|
|
625
|
+
"desc": "The tag, label, or toggle that indicates a feature that is not yet stable or may not be permanent.",
|
|
626
|
+
"properties": {
|
|
627
|
+
"head": {
|
|
628
|
+
"path": "tags.experimental.head",
|
|
629
|
+
"desc": "How this tag will display as a grouping title.",
|
|
630
|
+
"type": "String",
|
|
631
|
+
"default": "Experimental Features"
|
|
632
|
+
},
|
|
633
|
+
"text": {
|
|
634
|
+
"path": "tags.experimental.text",
|
|
635
|
+
"desc": "How this tag will display as a label.",
|
|
636
|
+
"type": "String",
|
|
637
|
+
"default": "Experimental"
|
|
638
|
+
},
|
|
639
|
+
"slug": {
|
|
640
|
+
"path": "tags.experimental.slug",
|
|
641
|
+
"desc": "The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.\n\n[NOTE]\nThis technically does not have to be a \"`Slug`\" String, if the system permits spaces.\nIt just needs to exactly match whatever String the remote API returns to represent the label/tag.\n",
|
|
642
|
+
"type": "String",
|
|
643
|
+
"default": "experimental"
|
|
644
|
+
},
|
|
645
|
+
"icon": {
|
|
646
|
+
"path": "tags.experimental.icon",
|
|
647
|
+
"desc": "The icon to use for issues so-tagged.\n",
|
|
648
|
+
"type": "String",
|
|
649
|
+
"default": "flask"
|
|
650
|
+
},
|
|
651
|
+
"drop": {
|
|
652
|
+
"path": "tags.experimental.drop",
|
|
653
|
+
"desc": "Whether to drop this tag when creating a RHYML object from API source.\nBasically decides whether this tag is user-facing.\n",
|
|
654
|
+
"type": "Boolean",
|
|
655
|
+
"default": false
|
|
656
|
+
},
|
|
657
|
+
"groupable": {
|
|
658
|
+
"path": "tags.experimental.groupable",
|
|
659
|
+
"desc": "Whether this tag can be used to group issues in the release history.\n",
|
|
660
|
+
"type": "Boolean",
|
|
661
|
+
"default": true
|
|
662
|
+
}
|
|
663
|
+
}
|
|
664
|
+
},
|
|
665
|
+
"internal": {
|
|
666
|
+
"path": "tags.internal",
|
|
667
|
+
"desc": "The tag, label, or toggle that indicates an issue documents a feature that is not intended for \"`public`\" use or visibility.",
|
|
668
|
+
"properties": {
|
|
669
|
+
"head": {
|
|
670
|
+
"path": "tags.internal.head",
|
|
671
|
+
"desc": "How this tag will display as a grouping title.",
|
|
672
|
+
"type": "String",
|
|
673
|
+
"default": "Internal Changes"
|
|
674
|
+
},
|
|
675
|
+
"text": {
|
|
676
|
+
"path": "tags.internal.text",
|
|
677
|
+
"desc": "How this tag will display as a label.",
|
|
678
|
+
"type": "String",
|
|
679
|
+
"default": "Internal"
|
|
680
|
+
},
|
|
681
|
+
"slug": {
|
|
682
|
+
"path": "tags.internal.slug",
|
|
683
|
+
"desc": "The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.\n\n[NOTE]\nThis technically does not have to be a \"`Slug`\" String, if the system permits spaces.\nIt just needs to exactly match whatever String the remote API returns to represent the label/tag.\n",
|
|
684
|
+
"type": "String",
|
|
685
|
+
"default": "internal"
|
|
686
|
+
},
|
|
687
|
+
"icon": {
|
|
688
|
+
"path": "tags.internal.icon",
|
|
689
|
+
"desc": "The icon to use for issues so-tagged.\n",
|
|
690
|
+
"type": "String",
|
|
691
|
+
"default": "lock"
|
|
692
|
+
},
|
|
693
|
+
"drop": {
|
|
694
|
+
"path": "tags.internal.drop",
|
|
695
|
+
"desc": "Whether to drop this tag when creating a RHYML object from API source.\nBasically decides whether this tag is user-facing.\n",
|
|
696
|
+
"type": "Boolean",
|
|
697
|
+
"default": false
|
|
698
|
+
},
|
|
699
|
+
"groupable": {
|
|
700
|
+
"path": "tags.internal.groupable",
|
|
701
|
+
"desc": "Whether this tag can be used to group issues in the release history.\n",
|
|
702
|
+
"type": "Boolean",
|
|
703
|
+
"default": true
|
|
704
|
+
}
|
|
705
|
+
}
|
|
706
|
+
},
|
|
707
|
+
"changelog": {
|
|
708
|
+
"path": "tags.changelog",
|
|
709
|
+
"desc": "The tag, label, or toggle that indicates an issue should appear in the Changelog even if it does not have a Release Note.\n\nThere is no icon associated with changelog-tagged issues, as it is only declaring that an issue belongs in the Changelog.\n",
|
|
710
|
+
"properties": {
|
|
711
|
+
"slug": {
|
|
712
|
+
"path": "tags.changelog.slug",
|
|
713
|
+
"desc": "The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.\n\n[NOTE]\nThis technically does not have to be a \"`Slug`\" String, if the system permits spaces.\nIt just needs to exactly match whatever String the remote API returns to represent the label/tag.\n",
|
|
714
|
+
"type": "String",
|
|
715
|
+
"default": "changelog"
|
|
716
|
+
},
|
|
717
|
+
"drop": {
|
|
718
|
+
"path": "tags.changelog.drop",
|
|
719
|
+
"desc": "Whether to drop this tag when creating a RHYML object from API source.\nBasically decides whether this tag is user-facing.\n",
|
|
720
|
+
"type": "Boolean",
|
|
721
|
+
"default": true
|
|
722
|
+
},
|
|
723
|
+
"groupable": {
|
|
724
|
+
"path": "tags.changelog.groupable",
|
|
725
|
+
"desc": "Whether this tag can be used to group issues in the release history.\n",
|
|
726
|
+
"type": "Boolean",
|
|
727
|
+
"default": false
|
|
728
|
+
}
|
|
729
|
+
}
|
|
730
|
+
},
|
|
731
|
+
"release_note_needed": {
|
|
732
|
+
"path": "tags.release_note_needed",
|
|
733
|
+
"desc": "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.\nThis tag can be automatically removed, and it does not show up in published Changelog or Release Notes (unless you add it).",
|
|
734
|
+
"properties": {
|
|
735
|
+
"slug": {
|
|
736
|
+
"path": "tags.release_note_needed.slug",
|
|
737
|
+
"desc": "The literal string used in the Issues system for tagging or labeling an issue to be handled, if different than the key name.\n\n[NOTE]\nThis technically does not have to be a \"`Slug`\" String, if the system permits spaces.\nIt just needs to exactly match whatever String the remote API returns to represent the label/tag.\n",
|
|
738
|
+
"type": "String",
|
|
739
|
+
"default": "release_note_needed"
|
|
740
|
+
},
|
|
741
|
+
"drop": {
|
|
742
|
+
"path": "tags.release_note_needed.drop",
|
|
743
|
+
"desc": "Whether to drop this tag when creating a RHYML object from API source.\nBasically decides whether this tag is user-facing.\n",
|
|
744
|
+
"type": "Boolean",
|
|
745
|
+
"default": true
|
|
746
|
+
},
|
|
747
|
+
"groupable": {
|
|
748
|
+
"path": "tags.release_note_needed.groupable",
|
|
749
|
+
"desc": "Whether this tag can be used to group issues in the release history.\n",
|
|
750
|
+
"type": "Boolean",
|
|
751
|
+
"default": false
|
|
752
|
+
}
|
|
753
|
+
}
|
|
754
|
+
},
|
|
755
|
+
"<your_tag_name>": {
|
|
756
|
+
"path": "tags.<your_tag_name>",
|
|
757
|
+
"desc": "Unlimited custom tags of your choosing, associated with a tag, label, or toggle in the Issues system _or_ manually assignable in RHYML.",
|
|
758
|
+
"docs": "These property represents any arbitrarily named tags you might wish to add.\nNo `slug` sub-property is available because the name of this property should exactly match your tag/label.\n",
|
|
759
|
+
"properties": {
|
|
760
|
+
"head": {
|
|
761
|
+
"path": "tags.<your_tag_name>.head",
|
|
762
|
+
"desc": "How this tag will display as a grouping title.",
|
|
763
|
+
"type": "String"
|
|
764
|
+
},
|
|
765
|
+
"text": {
|
|
766
|
+
"path": "tags.<your_tag_name>.text",
|
|
767
|
+
"desc": "How this tag will display as a label.",
|
|
768
|
+
"type": "String"
|
|
769
|
+
},
|
|
770
|
+
"icon": {
|
|
771
|
+
"path": "tags.<your_tag_name>.icon",
|
|
772
|
+
"desc": "The icon to use for issues so-tagged.\n",
|
|
773
|
+
"type": "String"
|
|
774
|
+
},
|
|
775
|
+
"drop": {
|
|
776
|
+
"path": "tags.<your_tag_name>.drop",
|
|
777
|
+
"desc": "Whether to drop this tag when creating a RHYML object from API source.\nBasically decides whether this tag is user-facing.\n",
|
|
778
|
+
"type": "Boolean"
|
|
779
|
+
},
|
|
780
|
+
"groupable": {
|
|
781
|
+
"path": "tags.<your_tag_name>.groupable",
|
|
782
|
+
"desc": "Whether this tag can be used to group issues in the release history.\n",
|
|
783
|
+
"type": "Boolean"
|
|
784
|
+
}
|
|
785
|
+
}
|
|
786
|
+
}
|
|
787
|
+
}
|
|
788
|
+
},
|
|
789
|
+
"links": {
|
|
790
|
+
"path": "links",
|
|
791
|
+
"desc": "Path templates and other metadata for building links to online references like issues (web) and commits (git).\n",
|
|
792
|
+
"properties": {
|
|
793
|
+
"web": {
|
|
794
|
+
"path": "links.web",
|
|
795
|
+
"desc": "Properties to enable linking to issue-management system ticket URLs corresponding to individual changes.",
|
|
796
|
+
"properties": {
|
|
797
|
+
"href": {
|
|
798
|
+
"path": "links.web.href",
|
|
799
|
+
"desc": "The URL template for the links to the issue-management system ticket URL.\nMay include `{{ tick }}` placeholder or any other from the change object.\n",
|
|
800
|
+
"docs": "For example:\n\n* `https://jira.example.com/issues/{{ tick }}`\n* `https://github.com/example/project/issues/{{ tick }}`\n\nWeb 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.\n",
|
|
801
|
+
"type": "Liquid"
|
|
802
|
+
},
|
|
803
|
+
"icon": {
|
|
804
|
+
"path": "links.web.icon",
|
|
805
|
+
"desc": "The icon to use for the issue links.",
|
|
806
|
+
"type": "String",
|
|
807
|
+
"default": "ticket"
|
|
808
|
+
},
|
|
809
|
+
"text": {
|
|
810
|
+
"path": "links.web.text",
|
|
811
|
+
"desc": "The text label to use for the issue links.\nMay include placeholders for any variables in the `change` object.\n",
|
|
812
|
+
"type": "Liquid",
|
|
813
|
+
"default": "{{ tick }}"
|
|
814
|
+
}
|
|
815
|
+
}
|
|
816
|
+
},
|
|
817
|
+
"git": {
|
|
818
|
+
"path": "links.git",
|
|
819
|
+
"desc": "Properties to enable linking to the Git commit URL corresponding to individual changes.\n",
|
|
820
|
+
"properties": {
|
|
821
|
+
"href": {
|
|
822
|
+
"path": "links.git.href",
|
|
823
|
+
"desc": "The URL template for the git links in the release history listings.\nMay include `{{ hash }}` placeholder.\n",
|
|
824
|
+
"docs": "For example:\n\n* `https://git.example.com/project/commit/{{ hash }}`\n* `https://github.com/example/project/commit/{{ hash }}`\n\nGit 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.\n",
|
|
825
|
+
"type": "Liquid"
|
|
826
|
+
},
|
|
827
|
+
"icon": {
|
|
828
|
+
"path": "links.git.icon",
|
|
829
|
+
"desc": "The icon to use for the git links.",
|
|
830
|
+
"type": "String",
|
|
831
|
+
"default": "code-fork"
|
|
832
|
+
},
|
|
833
|
+
"text": {
|
|
834
|
+
"path": "links.git.text",
|
|
835
|
+
"desc": "The text label to use for the git links.\nMay include `{{ hash }}` placeholder.\n",
|
|
836
|
+
"type": "Liquid",
|
|
837
|
+
"default": "{{ hash | slice: 0, 7 }}"
|
|
838
|
+
}
|
|
839
|
+
}
|
|
840
|
+
},
|
|
841
|
+
"user": {
|
|
842
|
+
"path": "links.user",
|
|
843
|
+
"properties": {
|
|
844
|
+
"href": {
|
|
845
|
+
"path": "links.user.href",
|
|
846
|
+
"desc": "A template for forming links to bio or homepages for the lead contributor of a change.\nMay include `{{ username }}` placeholder.\n",
|
|
847
|
+
"docs": "For example:\n\n* `https://github.com/{{ username }}`\n",
|
|
848
|
+
"type": "Template",
|
|
849
|
+
"templating": {
|
|
850
|
+
"delay": true,
|
|
851
|
+
"default": "liquid"
|
|
852
|
+
}
|
|
853
|
+
},
|
|
854
|
+
"icon": {
|
|
855
|
+
"path": "links.user.icon",
|
|
856
|
+
"desc": "The icon to use for the user links.",
|
|
857
|
+
"type": "String",
|
|
858
|
+
"default": "user"
|
|
859
|
+
},
|
|
860
|
+
"text": {
|
|
861
|
+
"path": "links.user.text",
|
|
862
|
+
"desc": "The text label to use for the user links.\nMay include `{{ username }}` placeholder.\n",
|
|
863
|
+
"type": "Liquid",
|
|
864
|
+
"default": "{{ username }}"
|
|
865
|
+
}
|
|
866
|
+
}
|
|
867
|
+
},
|
|
868
|
+
"get": {
|
|
869
|
+
"path": "links.get",
|
|
870
|
+
"desc": "Properties to enable linking to the download or installation instructions for the release.\n",
|
|
871
|
+
"properties": {
|
|
872
|
+
"href": {
|
|
873
|
+
"path": "links.get.href",
|
|
874
|
+
"desc": "The URL template for the release download page.\nMay include `{{ code }}` (version ID) as placeholder.\n",
|
|
875
|
+
"docs": "For example:\n\n* `https://example.com/releases/{{ code }}`\n* `https://example.com/dl/{{ code | replace: '.', '-' }}`\n\nThe existence of this property causes the download link or element to appear in the Release History page.\n",
|
|
876
|
+
"type": "Liquid"
|
|
877
|
+
},
|
|
878
|
+
"icon": {
|
|
879
|
+
"path": "links.get.icon",
|
|
880
|
+
"desc": "The icon to use for the download links.",
|
|
881
|
+
"type": "String",
|
|
882
|
+
"default": "download"
|
|
883
|
+
},
|
|
884
|
+
"text": {
|
|
885
|
+
"path": "links.get.text",
|
|
886
|
+
"desc": "The text label to use for the download links.\nMay include `{{ code }}` (version ID) as placeholder.\n",
|
|
887
|
+
"type": "Liquid",
|
|
888
|
+
"default": "Download {{ code }}"
|
|
889
|
+
}
|
|
890
|
+
}
|
|
891
|
+
}
|
|
892
|
+
}
|
|
893
|
+
},
|
|
894
|
+
"paths": {
|
|
895
|
+
"path": "paths",
|
|
896
|
+
"desc": "The configuration for the paths to include in the release history listings.\n",
|
|
897
|
+
"properties": {
|
|
898
|
+
"drafts_dir": {
|
|
899
|
+
"path": "paths.drafts_dir",
|
|
900
|
+
"desc": "The path to the output directory for generated drafts (YAML, Markdown, AsciiDoc).\n",
|
|
901
|
+
"type": "Path",
|
|
902
|
+
"default": "_drafts"
|
|
903
|
+
},
|
|
904
|
+
"enrich_dir": {
|
|
905
|
+
"path": "paths.enrich_dir",
|
|
906
|
+
"desc": "The path to the output directory for enriched files (HTML, PDF).\n",
|
|
907
|
+
"type": "Path",
|
|
908
|
+
"default": "_publish"
|
|
909
|
+
},
|
|
910
|
+
"output_dir": {
|
|
911
|
+
"path": "paths.output_dir",
|
|
912
|
+
"desc": "The base directory from which any other output paths are relative.\nThis is the parent directory for <<conf_ppty_paths_drafts_dir>> and <<conf_ppty_paths_enrich_dir>>.\nIt also serves as a base path for any argued files.\n\nExample: 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/`.\n",
|
|
913
|
+
"type": "Path",
|
|
914
|
+
"default": "."
|
|
915
|
+
},
|
|
916
|
+
"draft_filename": {
|
|
917
|
+
"path": "paths.draft_filename",
|
|
918
|
+
"desc": "The filename template for the draft files.\n",
|
|
919
|
+
"docs": "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.\n",
|
|
920
|
+
"type": "FileName",
|
|
921
|
+
"templating": {
|
|
922
|
+
"delay": true,
|
|
923
|
+
"default": "liquid"
|
|
924
|
+
},
|
|
925
|
+
"default": "{{ version }}.{{ format_ext }}"
|
|
926
|
+
},
|
|
927
|
+
"enrich_filename": {
|
|
928
|
+
"path": "paths.enrich_filename",
|
|
929
|
+
"desc": "The filename template for the enriched files.\n",
|
|
930
|
+
"docs": "May include `{{ version }}` and `{{ format_ext }}` as placeholders, where `format_ext`.\n\nPublished file extensions must be: `.html`, `.pdf`.\nThey can be set with <<conf_ppty_extensions_html>> and <<conf_ppty_extensions_pdf>> properties, respectively.\n",
|
|
931
|
+
"type": "FileName",
|
|
932
|
+
"templating": {
|
|
933
|
+
"delay": true,
|
|
934
|
+
"default": "liquid"
|
|
935
|
+
},
|
|
936
|
+
"default": "release-history-{{ version }}.{{ format_ext }}"
|
|
937
|
+
},
|
|
938
|
+
"payloads_dir": {
|
|
939
|
+
"path": "paths.payloads_dir",
|
|
940
|
+
"desc": "The path to the directory for storing API payloads.\nThis is used to store the raw API responses for debugging and reference.\n",
|
|
941
|
+
"type": "Path",
|
|
942
|
+
"default": "_payloads"
|
|
943
|
+
},
|
|
944
|
+
"cache": {
|
|
945
|
+
"path": "paths.cache",
|
|
946
|
+
"desc": "Settings for the ReleaseHx application cache.\n",
|
|
947
|
+
"properties": {
|
|
948
|
+
"enabled": {
|
|
949
|
+
"path": "paths.cache.enabled",
|
|
950
|
+
"desc": "Enable automatic caching of API responses to improve performance and reduce API calls.\n",
|
|
951
|
+
"type": "Boolean",
|
|
952
|
+
"default": false
|
|
953
|
+
},
|
|
954
|
+
"ttl_hours": {
|
|
955
|
+
"path": "paths.cache.ttl_hours",
|
|
956
|
+
"desc": "Time-to-live for cached API responses in hours.\nAfter this time, cached responses will be considered stale and fresh data will be fetched from the API.\n",
|
|
957
|
+
"type": "Integer",
|
|
958
|
+
"default": 24
|
|
959
|
+
},
|
|
960
|
+
"dir": {
|
|
961
|
+
"path": "paths.cache.dir",
|
|
962
|
+
"desc": "The directory where cached API responses are stored.\nCache files are organized by API type, project, and version.\n",
|
|
963
|
+
"type": "Path",
|
|
964
|
+
"default": ".releasehx/cache"
|
|
965
|
+
},
|
|
966
|
+
"prompt_gitignore": {
|
|
967
|
+
"path": "paths.cache.prompt_gitignore",
|
|
968
|
+
"desc": "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.\n",
|
|
969
|
+
"type": "Boolean",
|
|
970
|
+
"default": true
|
|
971
|
+
}
|
|
972
|
+
}
|
|
973
|
+
},
|
|
974
|
+
"templates_dir": {
|
|
975
|
+
"path": "paths.templates_dir",
|
|
976
|
+
"desc": "The path to the templates directory.\n",
|
|
977
|
+
"type": "Path",
|
|
978
|
+
"default": "_templates"
|
|
979
|
+
},
|
|
980
|
+
"mappings_dir": {
|
|
981
|
+
"path": "paths.mappings_dir",
|
|
982
|
+
"desc": "The path to the directory containing user-defined API mappings.\n\nReleaseHx 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.\nIf no file is found, the mapping is expected to be supplied by the gem (see `<GEM_ROOT>/mappings/`).\n",
|
|
983
|
+
"type": "String",
|
|
984
|
+
"default": "_mappings"
|
|
985
|
+
},
|
|
986
|
+
"api_clients_dir": {
|
|
987
|
+
"path": "paths.api_clients_dir",
|
|
988
|
+
"desc": "The path to the directory containing user-defined API client definitions.\n\nReleaseHx checks here first for a file named `<api_from_name>.yaml`, where `<api_from_name>` is set in the <<conf_ppty_origin_source>>` property.\nIf no file is found, the client class is expected to be supplied by the gem (see `<GEM_ROOT>/lib/releasehx/apis/`).\n",
|
|
989
|
+
"type": "String",
|
|
990
|
+
"default": "_apis"
|
|
991
|
+
}
|
|
992
|
+
}
|
|
993
|
+
},
|
|
994
|
+
"modes": {
|
|
995
|
+
"path": "modes",
|
|
996
|
+
"desc": "Default settings for `rhx` command executions.\n",
|
|
997
|
+
"properties": {
|
|
998
|
+
"wrapped": {
|
|
999
|
+
"path": "modes.wrapped",
|
|
1000
|
+
"desc": "Include (or exclude) head, header, and footer elements when enriching to HTML.\n",
|
|
1001
|
+
"type": "Boolean",
|
|
1002
|
+
"default": false
|
|
1003
|
+
},
|
|
1004
|
+
"html_frontmatter": {
|
|
1005
|
+
"path": "modes.html_frontmatter",
|
|
1006
|
+
"desc": "Include frontmatter in the rendered HTML.\n\nSee the `templates.page_frontmatter` property for details.\n",
|
|
1007
|
+
"type": "Boolean",
|
|
1008
|
+
"default": true
|
|
1009
|
+
},
|
|
1010
|
+
"markdown_frontmatter": {
|
|
1011
|
+
"path": "modes.markdown_frontmatter",
|
|
1012
|
+
"desc": "Include frontmatter in Markdown drafts.\n\nUses the `templates.markdown_frontmatter` template.\n",
|
|
1013
|
+
"type": "Boolean",
|
|
1014
|
+
"default": false
|
|
1015
|
+
},
|
|
1016
|
+
"asciidoc_frontmatter": {
|
|
1017
|
+
"path": "modes.asciidoc_frontmatter",
|
|
1018
|
+
"desc": "Include frontmatter in AsciiDoc drafts.\n\nUses the `templates.asciidoc_frontmatter` template.\n",
|
|
1019
|
+
"type": "Boolean"
|
|
1020
|
+
},
|
|
1021
|
+
"fetch": {
|
|
1022
|
+
"path": "modes.fetch",
|
|
1023
|
+
"desc": "What to fetch when gathering issues from API.\n\nValid entries:\n\n* `all-tagged` -- fetches issues with `release_note_needed` tag.\n",
|
|
1024
|
+
"type": "String",
|
|
1025
|
+
"default": "notes-only"
|
|
1026
|
+
},
|
|
1027
|
+
"remove_excess_lines": {
|
|
1028
|
+
"path": "modes.remove_excess_lines",
|
|
1029
|
+
"desc": "Reduces _N_+ consecutive blank lines to _N_ lines.\n",
|
|
1030
|
+
"type": "Integer",
|
|
1031
|
+
"default": 1
|
|
1032
|
+
}
|
|
1033
|
+
}
|
|
1034
|
+
},
|
|
1035
|
+
"rhyml": {
|
|
1036
|
+
"path": "rhyml",
|
|
1037
|
+
"desc": "Settings related to RHYML data objects and documents.\n",
|
|
1038
|
+
"properties": {
|
|
1039
|
+
"markup": {
|
|
1040
|
+
"path": "rhyml.markup",
|
|
1041
|
+
"desc": "The markup format for the `note` or `memo` properties of RHYML objects.\n\nChange to `asciidoc` to convert upstream Markdown to AsciiDoc.\n\nThis setting can be set (and overridden) with the `$config.markup` property in any given RHYML document.\n",
|
|
1042
|
+
"type": "String",
|
|
1043
|
+
"default": "markdown"
|
|
1044
|
+
},
|
|
1045
|
+
"chid": {
|
|
1046
|
+
"path": "rhyml.chid",
|
|
1047
|
+
"desc": "The template for automatic change ID/slug construction, if available at draft-time.\n",
|
|
1048
|
+
"docs": "A liquid template with access to local variables including:\n\nRelease variables::\n\n* `release.code`\n* `release.date`\n* `release.hash`\n\nWork/change item variables::\n\n* `change.tick`\n* `change.hash`\n* `change.type`\n* `change.part`\n* `change.summ`\n\nThe template established here is only for drafting `chid` slugs.\nIt is not used down the line to validate `chid` entries, which will be valid as long as they are Slug-formatted strings.\n",
|
|
1049
|
+
"type": "Slug",
|
|
1050
|
+
"templating": {
|
|
1051
|
+
"delay": true,
|
|
1052
|
+
"default": "liquid"
|
|
1053
|
+
},
|
|
1054
|
+
"default": "{{- change.tick }}-{{ change.summ | truncate: 20 | slugify }}\n"
|
|
1055
|
+
},
|
|
1056
|
+
"empty_notes": {
|
|
1057
|
+
"path": "rhyml.empty_notes",
|
|
1058
|
+
"desc": "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>>).\n\n* `skip` the issue when drafting notes (can update with `--amend`)\n* `empty` include the issue with an empty note\n* `dump` the complete issue body/description and commit message as the `note` property\n// * `ai` generate a note using generative AI\n",
|
|
1059
|
+
"type": "String",
|
|
1060
|
+
"default": "skip"
|
|
1061
|
+
},
|
|
1062
|
+
"empty_notes_content": {
|
|
1063
|
+
"path": "rhyml.empty_notes_content",
|
|
1064
|
+
"desc": "The content to use for empty notes when <<conf_ppty_rhyml_empty_notes>> is set to 'empty'\n",
|
|
1065
|
+
"type": "String",
|
|
1066
|
+
"default": "RELEASE NOTE NEEDED"
|
|
1067
|
+
},
|
|
1068
|
+
"max_parts": {
|
|
1069
|
+
"path": "rhyml.max_parts",
|
|
1070
|
+
"desc": "The maximum number of affected _part_ categories that can be recorded for a single change.\n\nWhen `0`, _part_ records are disabled for all changes.\nWhen `1`, only one _part_ is allowed per change (String).\nWhen `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).\n",
|
|
1071
|
+
"type": "Integer",
|
|
1072
|
+
"default": 1
|
|
1073
|
+
},
|
|
1074
|
+
"pasterize_summ": {
|
|
1075
|
+
"path": "rhyml.pasterize_summ",
|
|
1076
|
+
"desc": "Whether to convert verbs in the `summ` property to past tense when drafting.\nReplaces common words like `adds` with `added`, `fix` with `fixed`, etc.\n",
|
|
1077
|
+
"type": "Boolean",
|
|
1078
|
+
"default": false
|
|
1079
|
+
},
|
|
1080
|
+
"pasterize_head": {
|
|
1081
|
+
"path": "rhyml.pasterize_head",
|
|
1082
|
+
"desc": "Whether to convert verbs in the `head` property to past tense when drafting.\nReplaces common words like `adds` with `added`, `fix` with `fixed`, etc.\n",
|
|
1083
|
+
"type": "Boolean",
|
|
1084
|
+
"default": false
|
|
1085
|
+
}
|
|
1086
|
+
}
|
|
1087
|
+
},
|
|
1088
|
+
"history": {
|
|
1089
|
+
"path": "history",
|
|
1090
|
+
"desc": "Configurations for the overall document, when applicable.\n",
|
|
1091
|
+
"properties": {
|
|
1092
|
+
"head": {
|
|
1093
|
+
"path": "history.head",
|
|
1094
|
+
"desc": "The header for the release history output.\n",
|
|
1095
|
+
"type": "String",
|
|
1096
|
+
"templating": {
|
|
1097
|
+
"delay": true,
|
|
1098
|
+
"default": "liquid"
|
|
1099
|
+
},
|
|
1100
|
+
"default": "Release History -- {{ release.code }} - {{ release.date }}"
|
|
1101
|
+
},
|
|
1102
|
+
"htag": {
|
|
1103
|
+
"path": "history.htag",
|
|
1104
|
+
"desc": "The heading level (H1, H2, etc) for the release history header.\n",
|
|
1105
|
+
"type": "String",
|
|
1106
|
+
"default": "h1"
|
|
1107
|
+
},
|
|
1108
|
+
"markdown_frontmatter": {
|
|
1109
|
+
"path": "history.markdown_frontmatter",
|
|
1110
|
+
"desc": "Designates the content inserted at the top of Markdown files as document-level metadata.\n",
|
|
1111
|
+
"docs": "A Liquid template to be prepended at the top of Markdown draft files.\n\nTemplates may contain the following variables, automatically generated, as applicable:\n\n* `date` (DateTime)\n* `version` (String)\n* `title` (String) \n",
|
|
1112
|
+
"type": "Liquid",
|
|
1113
|
+
"default": "---\ntitle: Release History for {{ release.code }}\nversion: {{ release.code }}\ndate: {{ release.date }}\n---\n"
|
|
1114
|
+
},
|
|
1115
|
+
"asciidoc_frontmatter": {
|
|
1116
|
+
"path": "history.asciidoc_frontmatter",
|
|
1117
|
+
"desc": "Designates the way front-matter is inserted at the top of AsciiDoc files.\nSeveral variables are available to templates.\n\nAsciiDoc frontmatter templates may also contain AsciiDoc attribute placeholders.\n",
|
|
1118
|
+
"type": "Liquid",
|
|
1119
|
+
"default": ":page-title: Release History for {{ release.code }}\n:page-version: {{ release.code }}\n:page-date: {{ release.date }}\n"
|
|
1120
|
+
},
|
|
1121
|
+
"html_frontmatter": {
|
|
1122
|
+
"path": "history.html_frontmatter",
|
|
1123
|
+
"desc": "Designates the way front-matter is inserted at the top of _unwrapped_ rendered HTML.\n",
|
|
1124
|
+
"docs": "The `frontmatter` property is a Liquid template that is inserted at the top of the rendered HTML file.\n\nIt may include `{{ title }}`, `{{ version }}`, `{{ date }}`, as well as any `vars`-scoped variables as you pass in.\n",
|
|
1125
|
+
"type": "Liquid",
|
|
1126
|
+
"default": "---\ntitle: Release History for {{ release.code }}\nversion: {{ release.code }}\ndate: {{ release.date }}\n---\n"
|
|
1127
|
+
},
|
|
1128
|
+
"items": {
|
|
1129
|
+
"path": "history.items",
|
|
1130
|
+
"desc": "Settings pertaining to displayed items across Changelog and Release Notes sections.\n\nMost of these settings can be defined separately for each section under <<conf_ppty_changelog_items>> and <<conf_ppty_notes_items>>.\nIf an identically named setting exists, it will override the primary designator defined in this `config.history.items` block.\n",
|
|
1131
|
+
"properties": {
|
|
1132
|
+
"allow_redundant": {
|
|
1133
|
+
"path": "history.items.allow_redundant",
|
|
1134
|
+
"desc": "Whether to allow duplicate entries in a given section, for instance across groups for `part:group` sorts where a change affects multiple parts.\n",
|
|
1135
|
+
"type": "Boolean",
|
|
1136
|
+
"default": false
|
|
1137
|
+
},
|
|
1138
|
+
"show_issue_links": {
|
|
1139
|
+
"path": "history.items.show_issue_links",
|
|
1140
|
+
"desc": "Whether to include web links in item metadata.\n\nRequires `links.web` to be defined.\n",
|
|
1141
|
+
"type": "Boolean",
|
|
1142
|
+
"default": false
|
|
1143
|
+
},
|
|
1144
|
+
"show_git_links": {
|
|
1145
|
+
"path": "history.items.show_git_links",
|
|
1146
|
+
"desc": "Whether to include git links in item metadata.\n\nRequires `links.git` to be defined.\n",
|
|
1147
|
+
"type": "Boolean",
|
|
1148
|
+
"default": false
|
|
1149
|
+
},
|
|
1150
|
+
"metadata_labels": {
|
|
1151
|
+
"path": "history.items.metadata_labels",
|
|
1152
|
+
"desc": "If and where to display icons in relation to labels in item metadata.\n\nUse `before` or `after` to choose a spot, `none` or `'$nil'` to disable.\n",
|
|
1153
|
+
"type": "String",
|
|
1154
|
+
"default": "before"
|
|
1155
|
+
},
|
|
1156
|
+
"metadata_icons": {
|
|
1157
|
+
"path": "history.items.metadata_icons",
|
|
1158
|
+
"desc": "Whether to include icons for metadata in item metadata.\n",
|
|
1159
|
+
"type": "Boolean",
|
|
1160
|
+
"default": "before"
|
|
1161
|
+
},
|
|
1162
|
+
"show_lead": {
|
|
1163
|
+
"path": "history.items.show_lead",
|
|
1164
|
+
"desc": "Whether to include the lead-in text for the section in the item metadata.\nThis is useful for displaying the section header in the item metadata.\n",
|
|
1165
|
+
"type": "Boolean",
|
|
1166
|
+
"default": false
|
|
1167
|
+
},
|
|
1168
|
+
"show_type_label": {
|
|
1169
|
+
"path": "history.items.show_type_label",
|
|
1170
|
+
"desc": "Whether to show the type label in the item metadata output.\nIf `false`, the type will be listed unlabeled in the output, for templates that support this option.\n\nCorresponds 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.\n",
|
|
1171
|
+
"type": "Boolean",
|
|
1172
|
+
"default": false
|
|
1173
|
+
},
|
|
1174
|
+
"show_parts_label": {
|
|
1175
|
+
"path": "history.items.show_parts_label",
|
|
1176
|
+
"desc": "Whether to show the parts label in the item metadata output.\nIf `false`, parts will be listed unlabeled in the output, for templates that support this option.\n\nCorresponds 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.\n",
|
|
1177
|
+
"type": "Boolean",
|
|
1178
|
+
"default": false
|
|
1179
|
+
},
|
|
1180
|
+
"show_tags_label": {
|
|
1181
|
+
"path": "history.items.show_tags_label",
|
|
1182
|
+
"desc": "Whether to show the tags label in the item metadata output.\nIf `false`, tags will be listed unlabeled in the output, for templates that support this option.\n\nCorresponds 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.\n",
|
|
1183
|
+
"type": "Boolean",
|
|
1184
|
+
"default": false
|
|
1185
|
+
},
|
|
1186
|
+
"show_lead_label": {
|
|
1187
|
+
"path": "history.items.show_lead_label",
|
|
1188
|
+
"desc": "Whether to show the lead label in the item metadata output.\nIf `false`, the lead will be listed unlabeled in the output, for templates that support this option.\n\nCorresponds 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.\n",
|
|
1189
|
+
"type": "Boolean",
|
|
1190
|
+
"default": false
|
|
1191
|
+
},
|
|
1192
|
+
"show_auths_label": {
|
|
1193
|
+
"path": "history.items.show_auths_label",
|
|
1194
|
+
"desc": "Whether to show the authors label in the item metadata output.\nIf `false`, authors will be listed unlabeled in the output, for templates that support this option.\n\nCorresponds 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.\n",
|
|
1195
|
+
"type": "Boolean",
|
|
1196
|
+
"default": false
|
|
1197
|
+
}
|
|
1198
|
+
}
|
|
1199
|
+
},
|
|
1200
|
+
"labeling": {
|
|
1201
|
+
"path": "history.labeling",
|
|
1202
|
+
"desc": "Settings for labeling items in the release history output.\nThese properties establish how metadata and other elements apply to a given subject's nomenclature.\nIf you want to refer to \"`tags`\" as \"`labels`\" or \"`parts`\" as \"`components`\", map those namespaces here.\n",
|
|
1203
|
+
"properties": {
|
|
1204
|
+
"singularize_labels": {
|
|
1205
|
+
"path": "history.labeling.singularize_labels",
|
|
1206
|
+
"desc": "Whether to singularize labels in the output _when only one instance_ of the category is present.\nFor 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:*.\n\nThis also applies to `tag_label` and `auth_label` as well as the `part_label`.\nThe `type` and `lead` labels are not affected by this setting.\n",
|
|
1207
|
+
"type": "Boolean",
|
|
1208
|
+
"default": true
|
|
1209
|
+
},
|
|
1210
|
+
"type_label": {
|
|
1211
|
+
"path": "history.labeling.type_label",
|
|
1212
|
+
"desc": "The label to use for the type of change.\nDefaults to the `type.text` property of the change.\n",
|
|
1213
|
+
"type": "String",
|
|
1214
|
+
"default": "type"
|
|
1215
|
+
},
|
|
1216
|
+
"type_icon": {
|
|
1217
|
+
"path": "history.labeling.type_icon",
|
|
1218
|
+
"desc": "The icon to use for the type of change.\nDefaults to the `type.icon` property of the change.\n",
|
|
1219
|
+
"type": "String"
|
|
1220
|
+
},
|
|
1221
|
+
"parts_label": {
|
|
1222
|
+
"path": "history.labeling.parts_label",
|
|
1223
|
+
"desc": "The label to use for the part/component affected by the change.\n",
|
|
1224
|
+
"type": "String",
|
|
1225
|
+
"default": "Components"
|
|
1226
|
+
},
|
|
1227
|
+
"part_label": {
|
|
1228
|
+
"path": "history.labeling.part_label",
|
|
1229
|
+
"desc": "The label to use for the _singular_ part/component affected by the change, when only one part is permitted.\n\nThis 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`.\n",
|
|
1230
|
+
"type": "String",
|
|
1231
|
+
"default": "Part"
|
|
1232
|
+
},
|
|
1233
|
+
"parts_icon": {
|
|
1234
|
+
"path": "history.labeling.parts_icon",
|
|
1235
|
+
"desc": "The icon to use for the part/component affected by the change.\n",
|
|
1236
|
+
"type": "String",
|
|
1237
|
+
"default": "puzzle-piece"
|
|
1238
|
+
},
|
|
1239
|
+
"tags_label": {
|
|
1240
|
+
"path": "history.labeling.tags_label",
|
|
1241
|
+
"desc": "The tags associated with the change, if any.\nDefaults to an empty array.\n",
|
|
1242
|
+
"type": "Array",
|
|
1243
|
+
"default": "Tags"
|
|
1244
|
+
},
|
|
1245
|
+
"tag_label": {
|
|
1246
|
+
"path": "history.labeling.tag_label",
|
|
1247
|
+
"desc": "The label to use for the _singular_ tag associated with the change, when only one tag is permitted.\n\nThis 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`.\n\nIn supporting templates, this label will only be displayed if the show_tags_label` setting is `true` for the relevant section.\n",
|
|
1248
|
+
"type": "String",
|
|
1249
|
+
"default": "Tag"
|
|
1250
|
+
},
|
|
1251
|
+
"tags_icon": {
|
|
1252
|
+
"path": "history.labeling.tags_icon",
|
|
1253
|
+
"desc": "The icon to use for the tags associated with the change.\n",
|
|
1254
|
+
"type": "String",
|
|
1255
|
+
"default": "tags"
|
|
1256
|
+
},
|
|
1257
|
+
"lead_label": {
|
|
1258
|
+
"path": "history.labeling.lead_label",
|
|
1259
|
+
"desc": "The label to use for the lead contributor of the change.\n",
|
|
1260
|
+
"type": "String",
|
|
1261
|
+
"default": "Contributed by"
|
|
1262
|
+
},
|
|
1263
|
+
"lead_icon": {
|
|
1264
|
+
"path": "history.labeling.lead_icon",
|
|
1265
|
+
"desc": "The icon to use for the lead contributor of the change.\n",
|
|
1266
|
+
"type": "String",
|
|
1267
|
+
"default": "user"
|
|
1268
|
+
},
|
|
1269
|
+
"auths_label": {
|
|
1270
|
+
"path": "history.labeling.auths_label",
|
|
1271
|
+
"desc": "The label to use for the authors of the change.\nThis is used when multiple authors are present.\n",
|
|
1272
|
+
"type": "String",
|
|
1273
|
+
"default": "Contributors"
|
|
1274
|
+
},
|
|
1275
|
+
"auth_label": {
|
|
1276
|
+
"path": "history.labeling.auth_label",
|
|
1277
|
+
"desc": "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`.\n",
|
|
1278
|
+
"type": "String"
|
|
1279
|
+
},
|
|
1280
|
+
"join_string": {
|
|
1281
|
+
"path": "history.labeling.join_string",
|
|
1282
|
+
"desc": "The string to use to join multiple tags, parts, or authors in the output.\nDefaults to a comma and space (`, `).\n",
|
|
1283
|
+
"type": "String",
|
|
1284
|
+
"default": ", "
|
|
1285
|
+
}
|
|
1286
|
+
}
|
|
1287
|
+
}
|
|
1288
|
+
}
|
|
1289
|
+
},
|
|
1290
|
+
"changelog": {
|
|
1291
|
+
"path": "changelog",
|
|
1292
|
+
"desc": "The configuration for the changelog output.\n",
|
|
1293
|
+
"properties": {
|
|
1294
|
+
"head": {
|
|
1295
|
+
"path": "changelog.head",
|
|
1296
|
+
"desc": "The header for the changelog output.\n",
|
|
1297
|
+
"type": "String",
|
|
1298
|
+
"templating": {
|
|
1299
|
+
"delay": true,
|
|
1300
|
+
"default": "liquid"
|
|
1301
|
+
},
|
|
1302
|
+
"default": "Changelog"
|
|
1303
|
+
},
|
|
1304
|
+
"text": {
|
|
1305
|
+
"path": "changelog.text",
|
|
1306
|
+
"desc": "The text for the changelog output.\nChange to `null` to hide.\n",
|
|
1307
|
+
"type": "String",
|
|
1308
|
+
"templating": {
|
|
1309
|
+
"delay": true,
|
|
1310
|
+
"default": "liquid"
|
|
1311
|
+
},
|
|
1312
|
+
"default": "Summaries of all user-facing changes made since the previous release.\n"
|
|
1313
|
+
},
|
|
1314
|
+
"htag": {
|
|
1315
|
+
"path": "changelog.htag",
|
|
1316
|
+
"desc": "The heading level (H1, H2, etc) for the changelog section header.\n",
|
|
1317
|
+
"type": "String",
|
|
1318
|
+
"default": "h2"
|
|
1319
|
+
},
|
|
1320
|
+
"spot": {
|
|
1321
|
+
"path": "changelog.spot",
|
|
1322
|
+
"desc": "Where in the document to place the changelog (`1` = top, `2` = bottom).\n",
|
|
1323
|
+
"type": "Integer",
|
|
1324
|
+
"default": 2
|
|
1325
|
+
},
|
|
1326
|
+
"sort": {
|
|
1327
|
+
"path": "changelog.sort",
|
|
1328
|
+
"desc": "The sort order for the changelog output.\n",
|
|
1329
|
+
"docs": "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.\n\nIf `<criterion>:group` (default), the output will be grouped into sections with the group instance \nIf `<criterion>:grouping1`, the criterion will be added to the first of 2 grouping tiers into which the output will be divided.\nIf `<criterion>:grouping2`, the criterion will be added to the second of 2 grouping tiers into which the output will be divided.\nIf `<criterion>:label`, the output will be order by the criterion, with a label indicating the criterion.\nIf `<criterion>:none`, the output will be ordered by the criterion, with no label.\n\nFor example:\n\n[source,yaml]\n----\nsort:\n - 'part:group'\n - 'type:label'\n----\n\nWould produce something like:\n\n[source,markdown]\n----\n## Web UI\n\n- Feature description or summary [New feature]\n\n- Another feature description or summary [New feature]\n\n- Improvement description or summary [Improvement]\n\n## Backend\n\n- Feature description or summary [New feature]\n\n- Bug fix description or summary [Bug Fixes]\n----\n\nFor 2-tiered grouping arrangements, use something like:\n\n[source,yaml]\n----\nsort:\n - 'part:grouping1'\n - 'type:grouping2'\n----\n\nThis would output for instance:\n\n[source,markdown]\n----\n## Web UI\n\n### New features\n- Feature description or summary\n- Another feature description or summary\n\n### Improvements\n- Improvement description or summary\n----\n\nYou may also use tag-based groupings, but the tags must be listed explicitly.\n\n[source,yaml]\n----\nsort:\n - 'breaking:group'\n - 'deprecation:group'\n - 'type:group'\n - 'part:label'\n----\n\nThis would output something akin to:\n\n[source,markdown]\n----\n## Breaking Changes\n- We are breaking this thing! [Web UI]\n\n## Deprecations\n- We are deprecating this thing! [Backend]\n\n## New features\n- Feature description or summary [Web UI]\n- Another feature description or summary [Web UI]\n\n## Improvements\n- Improvement description or summary [Backend]\n----\n",
|
|
1330
|
+
"type": "Array",
|
|
1331
|
+
"default": [
|
|
1332
|
+
"part:grouping1"
|
|
1333
|
+
]
|
|
1334
|
+
},
|
|
1335
|
+
"items": {
|
|
1336
|
+
"path": "changelog.items",
|
|
1337
|
+
"desc": "Settings that affect the frame/shape and arrangement of individual changelog entries.\n",
|
|
1338
|
+
"properties": {
|
|
1339
|
+
"frame": {
|
|
1340
|
+
"path": "changelog.items.frame",
|
|
1341
|
+
"desc": "The layout for the changelog entry display.\n\nCan be `ordered`, `unordered`, `paragraph`, or `basic`.\n",
|
|
1342
|
+
"type": "String",
|
|
1343
|
+
"default": "unordered"
|
|
1344
|
+
},
|
|
1345
|
+
"allow_redundant": {
|
|
1346
|
+
"path": "changelog.items.allow_redundant",
|
|
1347
|
+
"desc": "Whether to allow duplicate entries in a given section, for instance across groups for `part:group` sorts where a change affects multiple parts.\n",
|
|
1348
|
+
"type": "Boolean",
|
|
1349
|
+
"default": false
|
|
1350
|
+
},
|
|
1351
|
+
"show_git_links": {
|
|
1352
|
+
"path": "changelog.items.show_git_links",
|
|
1353
|
+
"desc": "Whether to include git links in item metadata.\n\nRequires `links.git` to be defined.\n",
|
|
1354
|
+
"type": "Boolean",
|
|
1355
|
+
"default": false
|
|
1356
|
+
},
|
|
1357
|
+
"show_issue_links": {
|
|
1358
|
+
"path": "changelog.items.show_issue_links",
|
|
1359
|
+
"desc": "Whether to include web links in item metadata.\n\nRequires `links.web` to be defined.\n",
|
|
1360
|
+
"type": "Boolean",
|
|
1361
|
+
"default": false
|
|
1362
|
+
},
|
|
1363
|
+
"metadata_labels": {
|
|
1364
|
+
"path": "changelog.items.metadata_labels",
|
|
1365
|
+
"desc": "If and where to display icons in relation to labels in item metadata.\n\nUse `before` or `after` to choose a spot, `none` or `'$nil'` to disable.\n",
|
|
1366
|
+
"type": "String",
|
|
1367
|
+
"default": "before"
|
|
1368
|
+
},
|
|
1369
|
+
"metadata_icons": {
|
|
1370
|
+
"path": "changelog.items.metadata_icons",
|
|
1371
|
+
"desc": "Whether to include icons for metadata in item metadata.\n",
|
|
1372
|
+
"type": "Boolean",
|
|
1373
|
+
"default": "before"
|
|
1374
|
+
},
|
|
1375
|
+
"show_lead": {
|
|
1376
|
+
"path": "changelog.items.show_lead",
|
|
1377
|
+
"desc": "Whether to include the lead-in text for the section in the item metadata.\nThis is useful for displaying the section header in the item metadata.\n",
|
|
1378
|
+
"type": "Boolean",
|
|
1379
|
+
"default": false
|
|
1380
|
+
},
|
|
1381
|
+
"show_type_label": {
|
|
1382
|
+
"path": "changelog.items.show_type_label",
|
|
1383
|
+
"desc": "Whether to show the type label in the item metadata output.\nIf `false`, the type will be listed unlabeled in the output, for templates that support this option.\n\nCorresponds 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.\n",
|
|
1384
|
+
"type": "Boolean",
|
|
1385
|
+
"default": false
|
|
1386
|
+
},
|
|
1387
|
+
"show_parts_label": {
|
|
1388
|
+
"path": "changelog.items.show_parts_label",
|
|
1389
|
+
"desc": "Whether to show the parts label in the item metadata output.\nIf `false`, parts will be listed unlabeled in the output, for templates that support this option.\n\nCorresponds 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.\n",
|
|
1390
|
+
"type": "Boolean",
|
|
1391
|
+
"default": false
|
|
1392
|
+
},
|
|
1393
|
+
"show_tags_label": {
|
|
1394
|
+
"path": "changelog.items.show_tags_label",
|
|
1395
|
+
"desc": "Whether to show the tags label in the item metadata output.\nIf `false`, tags will be listed unlabeled in the output, for templates that support this option.\n\nCorresponds 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.\n",
|
|
1396
|
+
"type": "Boolean",
|
|
1397
|
+
"default": false
|
|
1398
|
+
},
|
|
1399
|
+
"show_lead_label": {
|
|
1400
|
+
"path": "changelog.items.show_lead_label",
|
|
1401
|
+
"desc": "Whether to show the lead label in the item metadata output.\nIf `false`, the lead will be listed unlabeled in the output, for templates that support this option.\n\nCorresponds 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.\n",
|
|
1402
|
+
"type": "Boolean",
|
|
1403
|
+
"default": false
|
|
1404
|
+
},
|
|
1405
|
+
"show_auths_label": {
|
|
1406
|
+
"path": "changelog.items.show_auths_label",
|
|
1407
|
+
"desc": "Whether to show the authors label in the item metadata output.\nIf `false`, authors will be listed unlabeled in the output, for templates that support this option.\n\nCorresponds 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.\n",
|
|
1408
|
+
"type": "Boolean",
|
|
1409
|
+
"default": false
|
|
1410
|
+
}
|
|
1411
|
+
}
|
|
1412
|
+
}
|
|
1413
|
+
}
|
|
1414
|
+
},
|
|
1415
|
+
"notes": {
|
|
1416
|
+
"path": "notes",
|
|
1417
|
+
"desc": "The configuration for the Release Notes listing section.\n",
|
|
1418
|
+
"properties": {
|
|
1419
|
+
"head": {
|
|
1420
|
+
"path": "notes.head",
|
|
1421
|
+
"desc": "The header for the notes output.\n",
|
|
1422
|
+
"type": "String",
|
|
1423
|
+
"templating": {
|
|
1424
|
+
"delay": true,
|
|
1425
|
+
"default": "liquid"
|
|
1426
|
+
},
|
|
1427
|
+
"default": "Release Notes"
|
|
1428
|
+
},
|
|
1429
|
+
"text": {
|
|
1430
|
+
"path": "notes.text",
|
|
1431
|
+
"desc": "The text for the release notes output.\nChange to `null` to hide.\n",
|
|
1432
|
+
"type": "String",
|
|
1433
|
+
"templating": {
|
|
1434
|
+
"delay": true,
|
|
1435
|
+
"default": "liquid"
|
|
1436
|
+
},
|
|
1437
|
+
"default": "Descriptions of any specially notable changes or additions since the previous release.\n"
|
|
1438
|
+
},
|
|
1439
|
+
"htag": {
|
|
1440
|
+
"path": "notes.htag",
|
|
1441
|
+
"desc": "The heading level (H1, H2, etc) for the release notes section header.\n",
|
|
1442
|
+
"type": "String",
|
|
1443
|
+
"default": "h2"
|
|
1444
|
+
},
|
|
1445
|
+
"spot": {
|
|
1446
|
+
"path": "notes.spot",
|
|
1447
|
+
"desc": "Where in the document to place the Release Notes relative to the Changelog.\n",
|
|
1448
|
+
"type": "Integer",
|
|
1449
|
+
"default": 1
|
|
1450
|
+
},
|
|
1451
|
+
"sort": {
|
|
1452
|
+
"path": "notes.sort",
|
|
1453
|
+
"desc": "The sort *order* for the release notes output.\n",
|
|
1454
|
+
"docs": "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.\n\nIf `<criterion>:group` (default), the output will be grouped into sections with the group instance \nIf `<criterion>:grouping1`, the criterion will be added to the first of 2 grouping tiers into which the output will be divided.\nIf `<criterion>:grouping2`, the criterion will be added to the second of 2 grouping tiers into which the output will be divided.\nIf `<criterion>:label`, the output will be order by the criterion, with a label indicating the criterion.\nIf `<criterion>:none`, the output will be ordered by the criterion, with no label.\n\nFor example:\n\n[source,yaml]\n----\nsort:\n - 'part:group'\n - 'type:label'\n----\n\nWould produce something like:\n\n[source,markdown]\n----\n## Web UI\n\n- Feature description or summary [New feature]\n\n- Another feature description or summary [New feature]\n\n- Improvement description or summary [Improvement]\n\n## Backend\n\n- Feature description or summary [New feature]\n\n- Bug fix description or summary [Bug Fixes]\n----\n\nFor 2-tiered grouping arrangements, use something like:\n\n[source,yaml]\n----\nsort:\n - 'part:grouping1'\n - 'type:grouping2'\n----\n\nThis would output for instance:\n\n[source,markdown]\n----\n## Web UI\n\n### New features\n- Feature description or summary\n- Another feature description or summary\n\n### Improvements\n- Improvement description or summary\n----\n\nYou may also use tag-based groupings, but the tags must be listed explicitly.\n\n[source,yaml]\n----\nsort:\n - 'breaking:group'\n - 'deprecation:group'\n - 'type:group'\n - 'part:label'\n----\n\nThis would output something akin to:\n\n[source,markdown]\n----\n## Breaking Changes\n- We are breaking this thing! [Web UI]\n\n## Deprecations\n- We are deprecating this thing! [Backend]\n\n## New features\n- Feature description or summary [Web UI]\n- Another feature description or summary [Web UI]\n\n## Improvements\n- Improvement description or summary [Backend]\n----\n",
|
|
1455
|
+
"type": "Array",
|
|
1456
|
+
"default": [
|
|
1457
|
+
"highlight:grouping1",
|
|
1458
|
+
"deprecation:grouping1",
|
|
1459
|
+
"removal:grouping1",
|
|
1460
|
+
"breaking:grouping1",
|
|
1461
|
+
"type:grouping1",
|
|
1462
|
+
"part:grouping2"
|
|
1463
|
+
]
|
|
1464
|
+
},
|
|
1465
|
+
"items": {
|
|
1466
|
+
"path": "notes.items",
|
|
1467
|
+
"desc": "Settings that affect the frame/shape and arrangement of individual release-note item displays.\n",
|
|
1468
|
+
"properties": {
|
|
1469
|
+
"frame": {
|
|
1470
|
+
"path": "notes.items.frame",
|
|
1471
|
+
"desc": "The layout for the release-note item display.\n\nCan be `table-cols-1`, `table-cols-2`, `desc-list`, or `admonition`.\n",
|
|
1472
|
+
"type": "String",
|
|
1473
|
+
"default": "table-cols-1"
|
|
1474
|
+
},
|
|
1475
|
+
"allow_redundant": {
|
|
1476
|
+
"path": "notes.items.allow_redundant",
|
|
1477
|
+
"desc": "Whether to allow duplicate entries in a given section, for instance across groups for `part:group` sorts where a change affects multiple parts.\n",
|
|
1478
|
+
"type": "Boolean",
|
|
1479
|
+
"default": false
|
|
1480
|
+
},
|
|
1481
|
+
"show_git_links": {
|
|
1482
|
+
"path": "notes.items.show_git_links",
|
|
1483
|
+
"desc": "Whether to include git links in item metadata.\n\nRequires `links.git` to be defined.\n",
|
|
1484
|
+
"type": "Boolean",
|
|
1485
|
+
"default": false
|
|
1486
|
+
},
|
|
1487
|
+
"show_issue_links": {
|
|
1488
|
+
"path": "notes.items.show_issue_links",
|
|
1489
|
+
"desc": "Whether to include web links in item metadata.\n\nRequires `links.web` to be defined.\n",
|
|
1490
|
+
"type": "Boolean",
|
|
1491
|
+
"default": false
|
|
1492
|
+
},
|
|
1493
|
+
"metadata_labels": {
|
|
1494
|
+
"path": "notes.items.metadata_labels",
|
|
1495
|
+
"desc": "If and where to display icons in relation to labels in item metadata.\n\nUse `before` or `after` to choose a spot, `none` or `'$nil'` to disable.\n",
|
|
1496
|
+
"type": "String",
|
|
1497
|
+
"default": "before"
|
|
1498
|
+
},
|
|
1499
|
+
"metadata_icons": {
|
|
1500
|
+
"path": "notes.items.metadata_icons",
|
|
1501
|
+
"desc": "Whether to include icons for metadata in item metadata.\n",
|
|
1502
|
+
"type": "Boolean",
|
|
1503
|
+
"default": "before"
|
|
1504
|
+
},
|
|
1505
|
+
"show_lead": {
|
|
1506
|
+
"path": "notes.items.show_lead",
|
|
1507
|
+
"desc": "Whether to include the lead-in text for the section in the item metadata.\nThis is useful for displaying the section header in the item metadata.\n",
|
|
1508
|
+
"type": "Boolean",
|
|
1509
|
+
"default": false
|
|
1510
|
+
},
|
|
1511
|
+
"show_type_label": {
|
|
1512
|
+
"path": "notes.items.show_type_label",
|
|
1513
|
+
"desc": "Whether to show the type label in the item metadata output.\nIf `false`, the type will be listed unlabeled in the output, for templates that support this option.\n\nCorresponds 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.\n",
|
|
1514
|
+
"type": "Boolean",
|
|
1515
|
+
"default": false
|
|
1516
|
+
},
|
|
1517
|
+
"show_parts_label": {
|
|
1518
|
+
"path": "notes.items.show_parts_label",
|
|
1519
|
+
"desc": "Whether to show the parts label in the item metadata output.\nIf `false`, parts will be listed unlabeled in the output, for templates that support this option.\n\nCorresponds 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.\n",
|
|
1520
|
+
"type": "Boolean",
|
|
1521
|
+
"default": false
|
|
1522
|
+
},
|
|
1523
|
+
"show_tags_label": {
|
|
1524
|
+
"path": "notes.items.show_tags_label",
|
|
1525
|
+
"desc": "Whether to show the tags label in the item metadata output.\nIf `false`, tags will be listed unlabeled in the output, for templates that support this option.\n\nCorresponds 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.\n",
|
|
1526
|
+
"type": "Boolean",
|
|
1527
|
+
"default": false
|
|
1528
|
+
},
|
|
1529
|
+
"show_lead_label": {
|
|
1530
|
+
"path": "notes.items.show_lead_label",
|
|
1531
|
+
"desc": "Whether to show the lead label in the item metadata output.\nIf `false`, the lead will be listed unlabeled in the output, for templates that support this option.\n\nCorresponds 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.\n",
|
|
1532
|
+
"type": "Boolean",
|
|
1533
|
+
"default": false
|
|
1534
|
+
},
|
|
1535
|
+
"show_auths_label": {
|
|
1536
|
+
"path": "notes.items.show_auths_label",
|
|
1537
|
+
"desc": "Whether to show the authors label in the item metadata output.\nIf `false`, authors will be listed unlabeled in the output, for templates that support this option.\n\nCorresponds 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.\n",
|
|
1538
|
+
"type": "Boolean",
|
|
1539
|
+
"default": false
|
|
1540
|
+
}
|
|
1541
|
+
}
|
|
1542
|
+
}
|
|
1543
|
+
}
|
|
1544
|
+
}
|
|
1545
|
+
}
|
|
1546
|
+
}
|