From 1018fa6a2d3985ae89aa9e4e8b777bcc3f4a589a Mon Sep 17 00:00:00 2001 From: ljstella Date: Thu, 5 Mar 2026 09:23:26 -0500 Subject: [PATCH 1/2] Tweak suffixes --- contentctl/helper/splunk_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contentctl/helper/splunk_app.py b/contentctl/helper/splunk_app.py index 6e0d877f..23d79009 100644 --- a/contentctl/helper/splunk_app.py +++ b/contentctl/helper/splunk_app.py @@ -385,7 +385,7 @@ def download( # Validate the filename is the expected .tgz file filename = Path(value.strip().strip('"')) - if filename.suffixes != [".tgz"]: + if filename.suffixes != [".tar", ".gz"]: raise ValueError( f"Filename has unexpected extension(s): {filename.suffixes}" ) From 29e0f7e3692a5f968979ef8d48d03da1ce4ffdad Mon Sep 17 00:00:00 2001 From: ljstella Date: Thu, 5 Mar 2026 11:13:17 -0500 Subject: [PATCH 2/2] bump version for release --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a919b670..f035e4cb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "contentctl" -version = "5.5.15" +version = "5.5.16" description = "Splunk Content Control Tool" authors = ["STRT "]