[couchbase] Fix base URL (#551)

This commit is contained in:
Marc Wrobel
2026-02-01 10:54:27 +01:00
committed by GitHub
parent c958e01f6c
commit 23205b23ea
2 changed files with 5 additions and 1 deletions

View File

@@ -112,6 +112,10 @@
}
},
"versions": {
"7.6.9": {
"name": "7.6.9",
"date": "2026-01-01"
},
"7.2.9": {
"name": "7.2.9",
"date": "2026-01-01"

View File

@@ -8,7 +8,7 @@ from common.releasedata import ProductData, config_from_argv
config = config_from_argv()
with ProductData(config.product) as product_data:
html = http.fetch_html(f"{config.url}/current/install/install-intro.html")
html = http.fetch_html(f"{config.url}/current/release-notes/relnotes.html")
minor_versions = [options.attrs["value"] for options in html.find(class_="version_list").find_all("option")]
minor_version_urls = [f"{config.url}/{minor}/release-notes/relnotes.html" for minor in minor_versions]