File tree Expand file tree Collapse file tree
packages/flare/src/main/resources/splunk/default Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3333 runs-on : ubuntu-latest
3434 needs : build
3535 steps :
36+ - name : Set up Python
37+ uses : actions/setup-python@v5
38+ with :
39+ python-version : ' 3.9'
40+
3641 - name : Download Build Artifact
3742 uses : actions/download-artifact@v4
3843 with :
Original file line number Diff line number Diff line change @@ -17,8 +17,7 @@ venv: requirements.txt
1717 @rm -rf packages/flare/bin/vendor/bin
1818 @rm -rf packages/flare/bin/vendor/packaging
1919 @rm -rf packages/flare/bin/vendor/* -stubs
20- @rm -rf packages/flare/bin/vendor/charset_normalizer/md.cpython-39-x86_64-linux-gnu.so
21- @rm -rf packages/flare/bin/vendor/charset_normalizer/md__mypyc.cpython-39-x86_64-linux-gnu.so
20+ @find packages/flare/bin/vendor -type f -name " *x86_64-linux-gnu.so" -delete
2221
2322venv-tools : requirements.tools.txt venv
2423 rm -rf venv-tools
@@ -58,8 +57,9 @@ publish: output/flare.tar.gz
5857validate : venv-tools
5958 @echo " Running Splunk AppInspect..."
6059 @echo " If you get an error about \" libmagic\" , run \" brew install libmagic\" "
61- @venv-tools/bin/splunk-appinspect inspect --ci " output/flare" || \
62- if test " $$ ?" -eq " 102" || " $$ ?" -eq " 103" ; then \
60+ @venv-tools/bin/splunk-appinspect inspect --ci " output/flare" ; \
61+ status=$$? ; \
62+ if [ " $$ status" -eq 0 ] || [ " $$ status" -eq 102 ] || [ " $$ status" -eq 103 ] ; then \
6363 exit 0 ; \
6464 else \
6565 exit 1 ; \
Original file line number Diff line number Diff line change 11# Flare
2+ 1.3.4
3+ -----
4+ * Update the minimum version of the Flare SDK.
5+
261.3.3
37-----
48* Bump the version number and to update the splunkbase listing to support Splunk v10.
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ id = flare
1313python.version = python3.9
1414state_change_requires_restart = true
1515is_configured = 0
16- build = 10
16+ build = 11
1717
1818[ui]
1919is_visible = 1
@@ -24,7 +24,7 @@ supported_themes = light, dark
2424[launcher]
2525author = Flare Systems
2626description = The Flare app allows you to integrate your Flare alerts with the Splunk platform.
27- version = 1.3.3
27+ version = 1.3.4
2828
2929[triggers]
3030reload.splunk_create = simple
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ requests==2.30.0
22splunk-sdk == 2.0.2
33types-requests == 2.30.0.0
44urllib3 == 1.26.15
5- flareio >= 0.1.25
5+ flareio >= 2.4.1
You can’t perform that action at this time.
0 commit comments