Create and bundle changelogs
By adding a file for each notable change and grouping them into bundles, you can ultimately generate release documention with a consistent layout for all your products.
The changelogs use the following schema:
Changelog schema
##### Required fields #####
title:
# A required string that is a short, user-facing headline
# Max 80 characters
type:
# A required string that contains the type of change.
# Refer to https://github.com/elastic/docs-builder/blob/main/src/services/Elastic.Documentation.Services/Changelog/ChangelogConfiguration.cs for the acceptable values.
products:
# A required array of objects that denote the affected products and their target release.
- product:
# A required string with a predefined product ID used for release note routing,
# filters, and categorization.
# Refer to https://github.com/elastic/docs-builder/blob/main/config/products.yml for the acceptable values.
target:
# An optional string that facilitates pre-release doc previews.
# For products with version releases, it contains the target version number (V.R.M).
# For products with date releases, it contains the target release date
# or the date the PR was merged.
lifecycle:
# An optional string for new features and enhancements that have a specific availability.
# Refer to https://github.com/elastic/docs-builder/blob/main/src/services/Elastic.Documentation.Services/Changelog/ChangelogConfiguration.cs for the acceptable values.
##### Optional fields #####
action:
# An optional string that describes what users must do to mitigate the impact
# of a breaking change or known issue.
areas:
# An optional array of strings that denotes the parts/components/services of the
# product that are specifically affected.
# The list of valid values will vary by product.
# The docs for each release typically group the changes by type then by area.
description:
# An optional string that provides additional information about what has changed.
# Max 600 characters
feature-id:
# An optional string to associate a feature or enhancement with a unique feature flag
highlight:
# An optional boolean for items that should be included in release highlights
# or the UI to draw users' attention.
impact:
# An optional string that describes how the user's environment is/will be
# affected by a breaking change.
issues:
# An optional array of strings that contain URLs for issues that are relevant to the PR.
# They are externalized in the release docs so users can follow the links and
# understand the context.
pr:
# An optional string that contains the pull request identifier.
# It is externalized in the release docs so users can follow the link and find more details.
subtype:
# An optional string that applies only to breaking changes and further subdivides that type.
# Refer to https://github.com/elastic/docs-builder/blob/main/src/services/Elastic.Documentation.Services/Changelog/ChangelogConfiguration.cs for the acceptable values.
Some of the fields in the schema accept only a specific set of values:
- Product values must exist in products.yml. Invalid products will cause the
docs-builder changelog addcommand to fail. - Type, subtype, and lifecycle values must match the available values defined in ChangelogConfiguration.cs. Invalid values will cause the
docs-builder changelog addcommand to fail.
To use the docs-builder changelog commands in your development workflow:
- Ensure that your products exist in products.yml.
- Add labels to your GitHub pull requests to represent the types defined in ChangelogConfiguration.cs. For example,
>bugand>enhancementlabels. - Optional: Choose areas or components that your changes affect and add labels to your GitHub pull requests (such as
:Analytics/Aggregations). - Optional: Add labels to your GitHub pull requests to indicate that they are not notable and should not generate changelogs. For example,
non-issueorrelease_notes:skip. - Configure changelog settings to correctly interpret your PR labels.
- Create changelogs with the
docs-builder changelog addcommand. - Create changelog bundles with the
docs-builder changelog bundlecommand. For example, create a bundle for the pull requests that are included in a product release. - Create documentation with the
docs-builder changelog rendercommand.
For more information about running docs-builder, go to Contribute locally.
This command is associated with an ongoing release docs initiative. Additional workflows are still to come for updating and generating documentation from changelogs.
You can create a configuration file to limit the acceptable product, type, subtype, and lifecycle values. You can also use it to prevent the creation of changelogs when certain PR labels are present. Refer to changelog.yml.example.
By default, the docs-builder changelog add command checks the following path: docs/changelog.yml.
You can specify a different path with the --config command option.
If a configuration file exists, the command validates its values before generating changelog files:
- If the configuration file contains
lifecycle,product,subtype, ortypevalues that don't match the values inproducts.ymlandChangelogConfiguration.cs, validation fails. The changelog file is not created. - If the configuration file contains
areasvalues and they don't match what you specify in the--areascommand option, validation fails. The changelog file is not created.
The available_types, available_subtypes, and available_lifecycles fields are optional in the configuration file.
If not specified, all default values from ChangelogConfiguration.cs are used.
You can optionally add label_to_type and label_to_areas mappings in your changelog configuration.
When you run the docs-builder changelog add command with the --prs option, it can use these mappings to fill in the type and areas in your changelog based on your pull request labels.
Refer to the file layout in changelog.yml.example and an example usage.
You can optionally use add_blockers in your changelog configuration to prevent the creation of some changelogs.
When you run the docs-builder changelog add command with the --prs and --products options and the PR has a label that you've identified as a blocker for that product, the command does not create a changelog for that PR.
You can use comma-separated product IDs to share the same list of labels across multiple products.
Refer to the file layout in changelog.yml.example and an example usage.
You can optionally add render_blockers in your changelog configuration to prevent the rendering of some changelogs.
When you run the docs-builder changelog render command, changelog entries that match the specified products and areas/types will be commented out of the documentation output files.
By default, the docs-builder changelog render command checks the following path: docs/changelog.yml.
You can specify a different path with the --config command option.
The render_blockers configuration uses a dictionary format where:
- The key can be a single product ID or comma-separated product IDs (e.g.,
"elasticsearch, cloud-serverless") - The value contains
areasand/ortypesthat should be blocked for those products
An entry is blocked if any product in the changelog entry matches any product key in render_blockers AND (any area matches OR any type matches).
If a changelog entry has multiple products, all matching products in render_blockers are checked.
The types values in render_blockers must exist in the available_types list (or in the default types if available_types is not specified).
Example configuration:
render_blockers:
"cloud-hosted, cloud-serverless":
areas:
- Autoscaling
- Watcher
types:
- docs
elasticsearch:
areas:
- Security
- List of area values that should be blocked (commented out) during render
- List of type values that should be blocked (commented out) during render
- Another single product case
When rendering, entries with:
- Product
cloud-hostedorcloud-serverlessAND (areaAutoscalingorWatcherOR typedocs) will be commented out - Product
elasticsearchAND areaSecuritywill be commented out
The command will emit warnings indicating which changelog entries were commented out and why.
Refer to changelog.yml.example.
You can use the docs-builder changelog add command to create a changelog file.
Ideally this task will be automated such that it's performed by a bot or GitHub action when you create a pull request. More details to come as we refine the workflows.
For up-to-date command usage information, use the -h option:
Add a new changelog from command-line input
Options:
--products <List<ProductInfo>> Required: Products affected in format "product target lifecycle, ..." (e.g., "elasticsearch 9.2.0 ga, cloud-serverless 2025-08-05") [Required]
--title <string?> Optional: A short, user-facing title (max 80 characters). Required if --prs is not specified. If --prs and --title are specified, the latter value is used instead of what exists in the PR. [Default: null]
--type <string?> Optional: Type of change (feature, enhancement, bug-fix, breaking-change, etc.). Required if --prs is not specified. If mappings are configured, type can be derived from the PR. [Default: null]
--subtype <string?> Optional: Subtype for breaking changes (api, behavioral, configuration, etc.) [Default: null]
--areas <string[]?> Optional: Area(s) affected (comma-separated or specify multiple times) [Default: null]
--prs <string[]?> Optional: Pull request URL(s) or PR number(s) (comma-separated, or if --owner and --repo are provided, just numbers). If specified, --title can be derived from the PR. If mappings are configured, --areas and --type can also be derived from the PR. Creates one changelog file per PR. [Default: null]
--owner <string?> Optional: GitHub repository owner (used when --prs contains just numbers) [Default: null]
--repo <string?> Optional: GitHub repository name (used when --prs contains just numbers) [Default: null]
--issues <string[]?> Optional: Issue URL(s) (comma-separated or specify multiple times) [Default: null]
--description <string?> Optional: Additional information about the change (max 600 characters) [Default: null]
--impact <string?> Optional: How the user's environment is affected [Default: null]
--action <string?> Optional: What users must do to mitigate [Default: null]
--feature-id <string?> Optional: Feature flag ID [Default: null]
--highlight <bool?> Optional: Include in release highlights [Default: null]
--output <string?> Optional: Output directory for the changelog. Defaults to current directory [Default: null]
--config <string?> Optional: Path to the changelog.yml configuration file. Defaults to 'docs/changelog.yml' [Default: null]
--use-pr-number Optional: Use the PR number as the filename instead of generating it from a unique ID and title
--strip-title-prefix Optional: When used with --prs, remove square brackets and text within them from the beginning of PR titles
If you use the --prs option, the docs-builder changelog add command interacts with GitHub services.
Log into GitHub or set the GITHUB_TOKEN (or GH_TOKEN ) environment variable with a sufficient personal access token (PAT).
Otherwise, there will be fetch failures when you access private repositories and you might also encounter GitHub rate limiting errors.
For example, to create a new token with the minimum authority to read pull request details:
- Go to GitHub Settings > Developer settings > Personal access tokens > Fine-grained tokens.
- Click Generate new token.
- Give your token a descriptive name (such as "docs-builder changelog").
- Under Resource owner if you're an Elastic employee, select Elastic.
- Set an expiration date.
- Under Repository access, select Only select repositories and choose the repositories you want to access.
- Under Permissions > Repository permissions, set Pull requests to Read-only.
- Click Generate token.
- Copy the token to a safe location and use it in the
GITHUB_TOKENenvironment variable.
The docs-builder changelog add has a --products option and the docs-builder changelog bundle has --input-products and --output-products options that all use the same format.
They accept values with the format "product target lifecycle, ..." where:
productis the product ID from products.yml (required)targetis the target version or date (optional)lifecycleis one of:preview,beta, orga(optional)
Examples:
"kibana 9.2.0 ga""cloud-serverless 2025-08-05""cloud-enterprise 4.0.3, cloud-hosted 2025-10-31"
By default, the docs-builder changelog add command generates filenames using a timestamp and a sanitized version of the title:
{timestamp}-{sanitized-title}.yaml
For example: 1735689600-fixes-enrich-and-lookup-join-resolution.yaml
If you want to use the PR number as the filename instead, add the --use-pr-number option:
docs-builder changelog add \
--pr https://github.com/elastic/elasticsearch/pull/137431 \
--products "elasticsearch 9.2.3" \
--use-pr-number
This creates a file named 137431.yaml instead of the default timestamp-based filename.
When using --use-pr-number, you must also provide the --pr option. The PR number is extracted from the PR URL or number you provide.
docs-builder changelog add \
--title "Fixes enrich and lookup join resolution based on minimum transport version" \
--type bug-fix \
--products "elasticsearch 9.2.3, cloud-serverless 2025-12-02" \
--areas "ES|QL"
--prs "https://github.com/elastic/elasticsearch/pull/137431"
- This option is required only if you want to override what's derived from the PR title.
- The type values are defined in ChangelogConfiguration.cs.
- The product values are defined in products.yml.
- The
--prsvalue can be a full URL (such ashttps://github.com/owner/repo/pull/123), a short format (such asowner/repo#123), just a number (in which case you must also provide--ownerand--repooptions), or a path to a file containing newline-delimited PR URLs or numbers. Multiple PRs can be provided comma-separated, or you can specify a file path. You can also mix both formats by specifying--prsmultiple times. One changelog file will be created for each PR.
You can configure label mappings in your changelog configuration file:
# GitHub label mappings (optional - used when --prs option is specified)
# Maps GitHub PR labels to changelog type values
# When a PR has a label that matches a key, the corresponding type value is used
label_to_type:
# Example mappings - customize based on your label naming conventions
">enhancement": enhancement
">breaking": breaking-change
# Maps GitHub PR labels to changelog area values
# Multiple labels can map to the same area, and a single label can map to multiple areas (comma-separated)
label_to_areas:
# Example mappings - customize based on your label naming conventions
":Search Relevance/ES|QL": "ES|QL"
When you use the --prs option to derive information from a pull request, it can make use of those mappings:
docs-builder changelog add \
--prs https://github.com/elastic/elasticsearch/pull/139272 \
--products "elasticsearch 9.3.0" \
--config test/changelog.yml \
--strip-title-prefix
In this case, the changelog file derives the title, type, and areas from the pull request.
The --strip-title-prefix option in this example means that if the PR title has a prefix in square brackets (such as [ES|QL] or [Security]), it is automatically removed from the changelog title.
The --strip-title-prefix option only applies when the title is derived from the PR (when --title is not explicitly provided). If you specify --title explicitly, that title is used as-is without any prefix stripping.
You can configure product-specific label blockers to prevent changelog creation for certain PRs based on their labels.
If you run the docs-builder changelog add command with the --prs option and a PR has a blocking label for any of the products in the --products option, that PR will be skipped and no changelog file will be created for it.
A warning message will be emitted indicating which PR was skipped and why.
For example, your configuration file can contain add_blockers like this:
# Product-specific label blockers (optional)
# Maps product IDs to lists of labels that prevent changelog creation for that product
# If you run the changelog add command with the --prs option and a PR has any of these labels, the changelog is not created
# Product IDs can be comma-separated to share the same list of labels across multiple products
add_blockers:
# Example: Skip changelog for cloud.serverless product when PR has "Watcher" label
cloud-serverless:
- ":Data Management/Watcher"
- ">non-issue"
# Example: Skip changelog creation for elasticsearch product when PR has "skip:releaseNotes" label
elasticsearch:
- ">non-issue"
# Example: Share the same blockers across multiple products using comma-separated product IDs
elasticsearch, cloud-serverless:
- ">non-issue"
Those settings affect commands with the --prs option, for example:
docs-builder changelog add --prs "1234, 5678" \
--products "cloud-serverless" \
--owner elastic --repo elasticsearch \
--config test/changelog.yml
If PR 1234 has the >non-issue or Watcher label, it will be skipped and no changelog will be created for it.
If PR 5678 does not have any blocking labels, a changelog is created.
You can also provide PRs from a file containing newline-delimited PR URLs or numbers:
# Create a file with PRs (one per line)
cat > prs.txt << EOF
https://github.com/elastic/elasticsearch/pull/1234
https://github.com/elastic/elasticsearch/pull/5678
EOF
# Use the file with --prs
docs-builder changelog add --prs prs.txt \
--products "elasticsearch 9.2.0 ga" \
--config test/changelog.yml
You can also mix file paths and comma-separated PRs:
docs-builder changelog add \
--prs "https://github.com/elastic/elasticsearch/pull/1234" \
--prs prs.txt \
--prs "5678, 9012" \
--products "elasticsearch 9.2.0 ga" \
--owner elastic --repo elasticsearch \
--config test/changelog.yml
This creates one changelog file for each PR specified, whether from files or directly.
You can use the docs-builder changelog bundle command to create a YAML file that lists multiple changelogs.
For up-to-date details, use the -h option:
Bundle changelogs
Options:
--directory <string?> Optional: Directory containing changelog YAML files. Defaults to current directory [Default: null]
--output <string?> Optional: Output path for the bundled changelog. Can be either (1) a directory path, in which case 'changelog-bundle.yaml' is created in that directory, or (2) a file path ending in .yml or .yaml. Defaults to 'changelog-bundle.yaml' in the input directory [Default: null]
--all Include all changelogs in the directory. Only one filter option can be specified: `--all`, `--input-products`, or `--prs`.
--input-products <List<ProductInfo>?> Filter by products in format "product target lifecycle, ..." (e.g., "cloud-serverless 2025-12-02 ga, cloud-serverless 2025-12-06 beta"). When specified, all three parts (product, target, lifecycle) are required but can be wildcards (*). Examples: "elasticsearch * *" matches all elasticsearch changelogs, "cloud-serverless 2025-12-02 *" matches cloud-serverless 2025-12-02 with any lifecycle, "* 9.3.* *" matches any product with target starting with "9.3.", "* * *" matches all changelogs (equivalent to --all). Only one filter option can be specified: `--all`, `--input-products`, or `--prs`. [Default: null]
--output-products <List<ProductInfo>?> Optional: Explicitly set the products array in the output file in format "product target lifecycle, ...". Overrides any values from changelogs. [Default: null]
--resolve Optional: Copy the contents of each changelog file into the entries array. By default, the bundle contains only the file names and checksums.
--prs <string[]?> Filter by pull request URLs or numbers (comma-separated), or a path to a newline-delimited file containing PR URLs or numbers. Can be specified multiple times. Only one filter option can be specified: `--all`, `--input-products`, or `--prs`. [Default: null]
--owner <string?> GitHub repository owner (required only when PRs are specified as numbers) [Default: null]
--repo <string?> GitHub repository name (required only when PRs are specified as numbers) [Default: null]
You can specify only one of the following filter options:
--all: Include all changelogs from the directory.--input-products: Include changelogs for the specified products. Refer to Filter by product.--prs: Include changelogs for the specified pull request URLs or numbers, or a path to a newline-delimited file containing PR URLs or numbers. Go to Filter by pull requests.
By default, the output file contains only the changelog file names and checksums.
You can optionally use the --resolve command option to pull all of the content from each changelog into the bundle.
You can use the --input-products option to create a bundle of changelogs that match the product details.
When using --input-products, you must provide all three parts: product, target, and lifecycle.
Each part can be a wildcard (*) to match any value.
docs-builder changelog bundle \
--input-products "cloud-serverless 2025-12-02 ga, cloud-serverless 2025-12-06 beta"
- Include all changelogs that have the
cloud-serverlessproduct identifier with target dates of either December 2 2025 (lifecyclega) or December 6 2025 (lifecyclebeta). For more information about product values, refer to Create and bundle changelogs > Product format.
You can use wildcards in any of the three parts:
# Bundle any changelogs that have exact matches for either of these clauses
docs-builder changelog bundle --input-products "cloud-serverless 2025-12-02 ga, elasticsearch 9.3.0 beta"
# Bundle all elasticsearch changelogs regardless of target or lifecycle
docs-builder changelog bundle --input-products "elasticsearch * *"
# Bundle all cloud-serverless 2025-12-02 changelogs with any lifecycle
docs-builder changelog bundle --input-products "cloud-serverless 2025-12-02 *"
# Bundle any cloud-serverless changelogs with target starting with "2025-11-" and "ga" lifecycle
docs-builder changelog bundle --input-products "cloud-serverless 2025-11-* ga"
# Bundle all changelogs (equivalent to --all)
docs-builder changelog bundle --input-products "* * *"
If you have changelog files that reference those product details, the command creates a file like this:
products:
- product: cloud-serverless
target: 2025-12-02
- product: cloud-serverless
target: 2025-12-06
entries:
- file:
name: 1765495972-fixes-enrich-and-lookup-join-resolution-based-on-m.yaml
checksum: 6c3243f56279b1797b5dfff6c02ebf90b9658464
- file:
name: 1765507778-break-on-fielddata-when-building-global-ordinals.yaml
checksum: 70d197d96752c05b6595edffe6fe3ba3d055c845
- By default these values match your
--input-products(even if the changelogs have more products). To specify different product metadata, use the--output-productsoption.
If you add the --resolve option, the contents of each changelog will be included in the output file.
You can use the --prs option to create a bundle of the changelogs that relate to those pull requests.
You can provide either a comma-separated list of PRs (--prs "https://github.com/owner/repo/pull/123,12345") or a path to a newline-delimited file (--prs /path/to/file.txt).
In the latter case, the file should contain one PR URL or number per line.
Pull requests can be identified by a full URL (such as https://github.com/owner/repo/pull/123), a short format (such as owner/repo#123), or just a number (in which case you must also provide --owner and --repo options).
docs-builder changelog bundle --prs "108875,135873,136886" \
--repo elasticsearch \
--owner elastic \
--output-products "elasticsearch 9.2.2 ga"
- The comma-separated list of pull request numbers to seek.
- The repository in the pull request URLs. This option is not required if you specify the short or full PR URLs in the
--prsoption. - The owner in the pull request URLs. This option is not required if you specify the short or full PR URLs in the
--prsoption. - The product metadata for the bundle. If it is not provided, it will be derived from all the changelog product values.
If you have changelog files that reference those pull requests, the command creates a file like this:
products:
- product: elasticsearch
target: 9.2.2
lifecycle: ga
entries:
- file:
name: 1765507819-fix-ml-calendar-event-update-scalability-issues.yaml
checksum: 069b59edb14594e0bc3b70365e81626bde730ab7
- file:
name: 1765507798-convert-bytestransportresponse-when-proxying-respo.yaml
checksum: c6dbd4730bf34dbbc877c16c042e6578dd108b62
- file:
name: 1765507839-use-ivf_pq-for-gpu-index-build-for-large-datasets.yaml
checksum: 451d60283fe5df426f023e824339f82c2900311e
If you add the --resolve option, the contents of each changelog will be included in the output file.
If you have a file that lists pull requests (such as PRs associated with a GitHub release):
https://github.com/elastic/elasticsearch/pull/108875
https://github.com/elastic/elasticsearch/pull/135873
https://github.com/elastic/elasticsearch/pull/136886
https://github.com/elastic/elasticsearch/pull/137126
You can use the --prs option with a file path to create a bundle of the changelogs that relate to those pull requests. You can also combine multiple --prs options:
./docs-builder changelog bundle \
--prs "https://github.com/elastic/elasticsearch/pull/108875,135873" \
--prs test/9.2.2.txt \
--output-products "elasticsearch 9.2.2 ga"
--resolve
- Comma-separated list of pull request URLs or numbers.
- The path for the file that lists the pull requests. If the file contains only PR numbers, you must add
--repoand--ownercommand options. - The product metadata for the bundle. If it is not provided, it will be derived from all the changelog product values.
- Optionally include the contents of each changelog in the output file.
If you have changelog files that reference those pull requests, the command creates a file like this:
products:
- product: elasticsearch
target: 9.2.2
lifecycle: ga
entries:
- file:
name: 1765507778-break-on-fielddata-when-building-global-ordinals.yaml
checksum: 70d197d96752c05b6595edffe6fe3ba3d055c845
type: bug-fix
title: Break on FieldData when building global ordinals
products:
- product: elasticsearch
areas:
- Aggregations
pr: https://github.com/elastic/elasticsearch/pull/108875
...
When a changelog matches multiple --input-products filters, it appears only once in the bundle. This deduplication applies even when using --all or --prs.
The --output option supports two formats:
Directory path: If you specify a directory path (without a filename), the command creates
changelog-bundle.yamlin that directory:docs-builder changelog bundle --all --output /path/to/output/dir # Creates /path/to/output/dir/changelog-bundle.yamlFile path: If you specify a file path ending in
.ymlor.yaml, the command uses that exact path:docs-builder changelog bundle --all --output /path/to/custom-bundle.yaml # Creates /path/to/custom-bundle.yaml
If you specify a file path with a different extension (not .yml or .yaml), the command returns an error.
The docs-builder changelog render command creates markdown or asciidoc files from changelog bundles for documentation purposes.
For up-to-date details, use the -h command option:
Render bundled changelog(s) to markdown or asciidoc files
Options:
--input <string[]> Required: Bundle input(s) in format "bundle-file-path|changelog-file-path|repo|link-visibility" (use pipe as delimiter). To merge multiple bundles, separate them with commas. Only bundle-file-path is required. link-visibility can be "hide-links" or "keep-links" (default). Paths must be absolute or use environment variables; tilde (~) expansion is not supported. [Required]
--output <string?> Optional: Output directory for rendered files. Defaults to current directory [Default: null]
--title <string?> Optional: Title to use for section headers in output files. Defaults to version from first bundle [Default: null]
--subsections Optional: Group entries by area/component in subsections. For breaking changes with a subtype, groups by subtype instead of area. Defaults to false
--hide-features <string[]?> Filter by feature IDs (comma-separated), or a path to a newline-delimited file containing feature IDs. Can be specified multiple times. Entries with matching feature-id values will be commented out in the output. [Default: null]
--file-type <string> Optional: Output file type. Valid values: "markdown" or "asciidoc". Defaults to "markdown" [Default: markdown]
--config <string?> Optional: Path to the changelog.yml configuration file. Defaults to 'docs/changelog.yml' [Default: null]
Before you can use this command you must create changelog files and collect them into bundles.
For example, the docs-builder changelog bundle command creates a file like this:
products:
- product: elasticsearch
target: 9.2.2
entries:
- file:
name: 1765581721-convert-bytestransportresponse-when-proxying-respo.yaml
checksum: d7e74edff1bdd3e23ba4f2f88b92cf61cc7d490a
- file:
name: 1765581721-fix-ml-calendar-event-update-scalability-issues.yaml
checksum: dfafce50c9fd61c3d8db286398f9553e67737f07
- file:
name: 1765581651-break-on-fielddata-when-building-global-ordinals.yaml
checksum: 704b25348d6daff396259216201053334b5b3c1d
To create markdown files from this bundle, run the docs-builder changelog render command:
docs-builder changelog render \
--input "/path/to/changelog-bundle.yaml|/path/to/changelogs|elasticsearch|keep-links,/path/to/other-bundle.yaml|/path/to/other-changelogs|kibana|hide-links" \
--title 9.2.2 \
--output /path/to/release-notes \
--subsections
- Provide information about the changelog bundle(s). The format for each bundle is
"<bundle-file-path>|<changelog-file-path>|<repository>|<link-visibility>"using pipe (|) as delimiter. To merge multiple bundles, separate them with commas (,). Only the<bundle-file-path>is required for each bundle. The<changelog-file-path>is useful if the changelogs are not in the default directory and are not resolved within the bundle. The<repository>is necessary if your changelogs do not contain full URLs for the pull requests or issues. The<link-visibility>can behide-linksorkeep-links(default) to control whether PR/issue links are hidden for entries from private repositories. - The
--titlevalue is used for an output folder name and for section titles in the output files. If you omit--titleand the first bundle contains a producttargetvalue, that value is used. Otherwise, if none of the bundles have producttargetfields, the title defaults to "unknown". - By default the command creates the output files in the current directory.
- By default the changelog areas are not displayed in the output. Add
--subsectionsto group changelog details by theirareas. For breaking changes that have asubtypevalue, the subsections will be grouped by subtype instead of area.
Paths in the --input option must be absolute paths or use environment variables. Tilde (~) expansion is not supported.
For example, the index.md output file contains information derived from the changelogs:
## 9.2.2 [elastic-release-notes-9.2.2]
### Fixes [elastic-9.2.2-fixes]
**Network**
* Convert BytesTransportResponse when proxying response from/to local node. [#135873](https://github.com/elastic/elastic/pull/135873)
**Machine Learning**
* Fix ML calendar event update scalability issues. [#136886](https://github.com/elastic/elastic/pull/136886)
**Aggregations**
* Break on FieldData when building global ordinals. [#108875](https://github.com/elastic/elastic/pull/108875)
To comment out the pull request and issue links, for example if they relate to a private repository, add hide-links to the --input option for that bundle. This allows you to selectively hide links per bundle when merging changelogs from multiple repositories.
If you have changelogs with feature-id values and you want them to be omitted from the output, use the --hide-features option.
For more information, refer to changelog render.
To create an asciidoc file instead of markdown files, add the --file-type asciidoc option:
docs-builder changelog render \
--input "./changelog-bundle.yaml,./changelogs,elasticsearch" \
--title 9.2.2 \
--output ./release-notes \
--file-type asciidoc \
--subsections
- Generate a single asciidoc file instead of multiple markdown files.