Latest Prerelease Version Segment
The latest_prerelease_version_segment
key replaces the actual version in the URL of resources in the latest prerelease with a symbolic prerelease version.
In order for a version be classified as a prerelease, the component must also have at least one non-prerelease version.
If a component only has prerelease versions, the latest version is not classified as a prerelease even if the prerelease key is set in the component descriptor.
When a component only has prerelease versions, then the value of the latest_version_segment is used instead.
This behavior may change in the future.
|
latest_prerelease_version_segment key
The latest_prerelease_version_segment
key is configured in the playbook under the urls
key.
urls:
latest_prerelease_version_segment: unstable
The value assigned to the latest_prerelease_version_segment
key is the symbolic prerelease version.
Antora replaces the actual version in the version segment of the latest prerelease component versions’ URLs with the symbolic prerelease version.
A component version must be designated as a prerelease and Antora must determine that it is the latest prerelease of a component for the value assigned to the latest_prerelease_version_segment
key to be applied to its page and asset URLs.
Depending on the strategy assigned to the latest_version_segment_strategy key, Antora may apply additional redirect rules when routing to or from symbolic and actual version URLs.
Value requirements
The same requirements that apply to the value of the version
key also apply to the latest_prerelease_version_segment
key.
The value can contain letters, numbers, periods (.
), underscores (_
), and hyphens (-
).
To ensure portability between host platforms, use lowercase letters.
The value of the latest_prerelease_version_segment
key cannot contain spaces, forward slashes (/
), or HTML special characters (&
, <
, or >
).
The value can only be empty if the value of latest_version_segment_strategy
is redirect:to
or replace
.
The value cannot be empty if the value of latest_version_segment_strategy
is redirect:from
.
This restriction is due to the fact that redirecting from the parent folder could prevent access to other versions.
Specify a latest prerelease version segment
This section explores the results of assigning a symbolic prerelease version to the latest_prerelease_version_segment
key.
The examples in this section use the component version defined by the component version descriptor file shown in Example 2.
Example 2 defines a component version with the name colorado
and version 6.0
.
name: colorado
version: '6.0' (1)
prerelease: -beta.2 (2)
1 | The version key in antora.yml defines the component’s actual version as 6.0 . |
2 | The prerelease key and assigned identifier, -beta.2 , informs Antora that the component version is a prerelease. |
The colorado 6.0 component version has a page named tour.adoc that belongs to the module get-started.
First, let’s review the URL Antora makes by default.
That is, when the latest_prerelease_version_segment
key isn’t set in the playbook.
By default, Antora uses the actual version in the version segment of page and asset URLs, even when the component version is a prerelease with an identifier.
Example 3 shows the default URL for the tour.adoc page that belongs to the colorado 6.0
component version.
https://docs.example.com/colorado/6.0/get-started/tour.html
Now, let’s assign a symbolic prerelease version to the latest prerelease component versions in this site.
The latest_prerelease_version_segment
key is configured in the playbook file, not the component version descriptor files, because it applies to all of the latest prerelease component versions in a site.
Example 4 shows a truncated playbook file with the latest_prerelease_version_segment
key defined.
site:
title: The Ranges
url: https://docs.example.com
urls:
latest_prerelease_version_segment: next (1)
content:
# ...
1 | The latest_prerelease_version_segment is set under the urls key and assigned the value next . |
Let’s assume that, according to its semantic and named version sorting rules, Antora determines that colorado 6.0 is the latest prerelease version of the colorado component. Using information from the playbook and the component version’s antora.yml file, Antora constructs the following URL for the tour.adoc page.
Now, in Example 5, the version segment contains the symbolic prerelease version, next.
https://docs.example.com/colorado/next/get-started/tour.html
The actual version with appended prerelease identifier, 6.0-beta.2, is still displayed in the reference UI menus. The symbolic prerelease version, next, is only used in the URLs. To customize the value displayed in the reference UI menus, use the display_version key.
The examples in this section assumed the latest_version_segment_strategy
key wasn’t set.
Therefore, when Antora detected the latest_prerelease_version_segment
key, it automatically set the latest_version_segment_strategy
key and assigned it the replace
strategy at runtime.
See Latest Version Segment Strategy to learn how the redirect:to
and redirect:from
strategies work with the latest_prerelease_version_segment
key.