Disable web.archive.org links

They cause too much timeout lately, and the main purpose of those script is to get new releases anyway.
This commit is contained in:
Marc Wrobel
2023-11-07 23:50:37 +01:00
parent b612b4510e
commit 6f375c47ba
3 changed files with 12 additions and 7 deletions

View File

@@ -19,12 +19,14 @@ Notes:
PRODUCT = "couchbase-server"
REGEX = r"^Release (?P<version>\d+\.\d+(\.\d+)?) \((?P<date>.+)\)$"
URLS = [
"https://web.archive.org/web/20230519160357/https://docs.couchbase.com/server/",
# Disabled, too much timed out.
# "https://web.archive.org/web/20230519160357/https://docs.couchbase.com/server/",
"https://docs.couchbase.com/server",
]
FIXED_VERSIONS = {
"6.0.0": "2018-10-31", # https://www.couchbase.com/blog/announcing-couchbase-6-0/
"6.0.1": "2019-02-15", # https://web.archive.org/web/20190307191211/https://docs.couchbase.com/server/6.0/release-notes/relnotes.html
"6.0.1": "2019-02-15",
# https://web.archive.org/web/20190307191211/https://docs.couchbase.com/server/6.0/release-notes/relnotes.html
"7.2.0": "2023-06-01", # https://www.couchbase.com/blog/couchbase-capella-spring-release-72/
}