From 045f90ceb293ff93db6792cf2db427590a850233 Mon Sep 17 00:00:00 2001 From: Marc Wrobel Date: Sat, 28 Oct 2023 12:00:51 +0200 Subject: [PATCH] [artifactory] Fix 7.29.9 release date 7.29.9 release date is wrong on https://jfrog.com/help/r/jfrog-release-information/artifactory-end-of-life. Sent a mail to jfrog-help-center-feedback@jfrog.com to fix it, but in the meantime... Relates to https://github.com/endoflife-date/endoflife.date/issues/3960. --- src/artifactory.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/artifactory.py b/src/artifactory.py index 77670307..206b75ce 100644 --- a/src/artifactory.py +++ b/src/artifactory.py @@ -36,6 +36,9 @@ def fetch_releases(): result[version] = date print(f"{version}: {date}") + # 7.29.9 release date is wrong on https://jfrog.com/help/r/jfrog-release-information/artifactory-end-of-life. + # Sent a mail to jfrog-help-center-feedback@jfrog.com to fix it, but in the meantime... + result['7.29.9'] = '2022-01-11' return result