From b78dc661f9ff456030630690f6ce0195dc50fc4c Mon Sep 17 00:00:00 2001 From: Marc Wrobel Date: Sat, 8 Feb 2025 17:38:43 +0100 Subject: [PATCH] [splunk] Filter versions list (#410) There is now a DataMonitoringAppPreview option in the list. --- src/splunk.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/splunk.py b/src/splunk.py index f33e0f98..3be97bb9 100644 --- a/src/splunk.py +++ b/src/splunk.py @@ -35,6 +35,7 @@ with releasedata.ProductData("splunk") as product_data: soup = BeautifulSoup(main.text, features="html5lib") all_versions = [option.attrs['value'] for option in soup.select("select#version-select > option")] + all_versions = [v for v in all_versions if v != "DataMonitoringAppPreview"] # Latest minor release notes contains release notes for all previous minor versions. # For example, 9.0.5 release notes also contains release notes for 9.0.0 to 9.0.4.