[couchbase] Fix base URL (#551)
This commit is contained in:
@@ -112,6 +112,10 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"versions": {
|
"versions": {
|
||||||
|
"7.6.9": {
|
||||||
|
"name": "7.6.9",
|
||||||
|
"date": "2026-01-01"
|
||||||
|
},
|
||||||
"7.2.9": {
|
"7.2.9": {
|
||||||
"name": "7.2.9",
|
"name": "7.2.9",
|
||||||
"date": "2026-01-01"
|
"date": "2026-01-01"
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ from common.releasedata import ProductData, config_from_argv
|
|||||||
|
|
||||||
config = config_from_argv()
|
config = config_from_argv()
|
||||||
with ProductData(config.product) as product_data:
|
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_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]
|
minor_version_urls = [f"{config.url}/{minor}/release-notes/relnotes.html" for minor in minor_versions]
|
||||||
|
|||||||
Reference in New Issue
Block a user