Skip to content

Commit

Permalink
[splunk] Filter versions list (#410)
Browse files Browse the repository at this point in the history
There is now a DataMonitoringAppPreview option in the list.
  • Loading branch information
marcwrobel committed Feb 8, 2025
1 parent 3a0f777 commit 87200be
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/splunk.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ def get_latest_minor_versions(versions: list[str]) -> list[str]:
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.
Expand Down

0 comments on commit 87200be

Please sign in to comment.