This is an automated email from the ASF dual-hosted git repository. lhotari pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/pulsar-site.git
commit 43da7252d8a25f94928238f2eb63f93dd426d03b Author: Lari Hotari <[email protected]> AuthorDate: Mon Sep 8 14:51:35 2025 +0300 Add instructions for new feature releases --- contribute/release-process.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/contribute/release-process.md b/contribute/release-process.md index 59149084535..802ee6780a6 100644 --- a/contribute/release-process.md +++ b/contribute/release-process.md @@ -888,6 +888,16 @@ poetry install _JAVA_OPTIONS=-XX:ActiveProcessorCount=1 poetry run bin/reference-doc-generator.py --master-path=$PULSAR_PATH --version=$VERSION_WITHOUT_RC ``` +For new feature releases, you will need to manually edit `src/static/reference/index.html` and add a new entry for the feature release (for example `4.1.x`) in 2 locations: + +```patch ++ '<option value="4.1.x">4.1.x</value>' + +- values: ["2.6.x", "2.7.x", "2.8.x", "2.9.x", "2.10.x", "2.11.x", "3.0.x", "3.1.x", "3.2.x", "3.3.x", "4.0.x", "next"], ++ values: ["2.6.x", "2.7.x", "2.8.x", "2.9.x", "2.10.x", "2.11.x", "3.0.x", "3.1.x", "3.2.x", "3.3.x", "4.0.x", "4.1.x", "next"], +``` + +Commit the changes: + ```shell cd ../.. git add static/reference/*
