From 271bdc616c978ab148c210b78178e0fe764a2c43 Mon Sep 17 00:00:00 2001 From: Benno Evers Date: Thu, 18 Nov 2021 15:52:08 +0100 Subject: [PATCH] Prepare repository for 2021.11.18 release --- CHANGELOG.md | 2 +- apps/stix-shifter/CHANGELOG.md | 5 +++++ apps/stix-shifter/setup.py | 4 ++-- apps/suricata/CHANGELOG.md | 5 +++++ apps/suricata/setup.py | 4 ++-- apps/vast/setup.py | 4 ++-- apps/zmq-app-template/setup.py | 4 ++-- docker/vast-threatbus/Dockerfile | 2 +- plugins/apps/threatbus_cif3/setup.py | 4 ++-- plugins/apps/threatbus_misp/setup.py | 4 ++-- plugins/apps/threatbus_zeek/setup.py | 4 ++-- plugins/apps/threatbus_zmq/setup.py | 4 ++-- plugins/backbones/file_benchmark/setup.py | 4 ++-- plugins/backbones/threatbus_inmem/setup.py | 4 ++-- plugins/backbones/threatbus_rabbitmq/setup.py | 4 ++-- setup.py | 2 +- 16 files changed, 35 insertions(+), 25 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fd9823e..e6cc5ee5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ Every entry has a category for which we use the following visual abbreviations: - 🧬 Experimental Features - 🐞 Bug Fixes -## [unreleased] +## [2021.11.18] - ⚠️ `vast-threatbus` now issues low priority queries if those are supported by the version of VAST. diff --git a/apps/stix-shifter/CHANGELOG.md b/apps/stix-shifter/CHANGELOG.md index 65a6106f..cfa7388c 100644 --- a/apps/stix-shifter/CHANGELOG.md +++ b/apps/stix-shifter/CHANGELOG.md @@ -11,6 +11,10 @@ Every entry has a category for which we use the following visual abbreviations: - ⚡️ Breaking Changes - 🐞 Bug Fixes +## [2021.11.18] + +No user-facing changes. + ## [2021.09.30] No user-facing changes. @@ -80,3 +84,4 @@ No user-facing changes. [2021.07.29]: https://github.com/tenzir/threatbus/releases/tag/2021.07.29 [2021.08.26]: https://github.com/tenzir/threatbus/releases/tag/2021.08.26 [2021.09.30]: https://github.com/tenzir/threatbus/releases/tag/2021.09.30 +[2021.11.18]: https://github.com/tenzir/threatbus/releases/tag/2021.11.18 diff --git a/apps/stix-shifter/setup.py b/apps/stix-shifter/setup.py index dc297dd1..5cd6889c 100644 --- a/apps/stix-shifter/setup.py +++ b/apps/stix-shifter/setup.py @@ -36,7 +36,7 @@ "stix2 >= 3.0", "stix-shifter >= 3.4.2", "stix-shifter-utils >= 3.4.2", - "threatbus >= 2021.9.30", + "threatbus >= 2021.11.18", ], keywords=[ "open source", @@ -54,5 +54,5 @@ python_requires=">=3.7", setup_requires=["setuptools", "wheel"], url="https://github.com/tenzir/threatbus", - version="2021.09.30", + version="2021.11.18", ) diff --git a/apps/suricata/CHANGELOG.md b/apps/suricata/CHANGELOG.md index c4a495a0..6488c3a8 100644 --- a/apps/suricata/CHANGELOG.md +++ b/apps/suricata/CHANGELOG.md @@ -11,6 +11,10 @@ Every entry has a category for which we use the following visual abbreviations: - ⚡️ Breaking Changes - 🐞 Bug Fixes +## [2021.11.18] + +No user-facing changes. + ## [2021.09.30] No user-facing changes. @@ -63,3 +67,4 @@ No user-facing changes. [2021.07.29]: https://github.com/tenzir/threatbus/releases/tag/2021.07.29 [2021.08.26]: https://github.com/tenzir/threatbus/releases/tag/2021.08.26 [2021.09.30]: https://github.com/tenzir/threatbus/releases/tag/2021.09.30 +[2021.11.18]: https://github.com/tenzir/threatbus/releases/tag/2021.11.18 diff --git a/apps/suricata/setup.py b/apps/suricata/setup.py index bc5219cc..057466c7 100644 --- a/apps/suricata/setup.py +++ b/apps/suricata/setup.py @@ -32,7 +32,7 @@ "pyzmq >= 19", "parsuricata", "stix2 >= 3.0", - "threatbus >= 2021.9.30", + "threatbus >= 2021.11.18", ], keywords=[ "open source", @@ -53,5 +53,5 @@ python_requires=">=3.7", setup_requires=["setuptools", "wheel"], url="https://github.com/tenzir/threatbus", - version="2021.09.30", + version="2021.11.18", ) diff --git a/apps/vast/setup.py b/apps/vast/setup.py index 1ebc86c2..39c514a4 100644 --- a/apps/vast/setup.py +++ b/apps/vast/setup.py @@ -33,7 +33,7 @@ "pyzmq >= 19", "pyvast >= 2021.6.24", "stix2 >= 3.0", - "threatbus >= 2021.9.30", + "threatbus >= 2021.11.18", ], keywords=[ "open source", @@ -52,5 +52,5 @@ python_requires=">=3.7", setup_requires=["setuptools", "wheel"], url="https://github.com/tenzir/threatbus", - version="2021.09.30", + version="2021.11.18", ) diff --git a/apps/zmq-app-template/setup.py b/apps/zmq-app-template/setup.py index 0a7cd2bf..c5c28dd3 100644 --- a/apps/zmq-app-template/setup.py +++ b/apps/zmq-app-template/setup.py @@ -31,7 +31,7 @@ "dynaconf >= 3.1.4", "pyzmq >= 19", "stix2 >= 3.0", - "threatbus >= 2021.9.30", + "threatbus >= 2021.11.18", ], keywords=[ "open source", @@ -49,5 +49,5 @@ python_requires=">=3.7", setup_requires=["setuptools", "wheel"], url="https://github.com/tenzir/threatbus", - version="2021.09.30", + version="2021.11.18", ) diff --git a/docker/vast-threatbus/Dockerfile b/docker/vast-threatbus/Dockerfile index 389a178e..b4ddded4 100644 --- a/docker/vast-threatbus/Dockerfile +++ b/docker/vast-threatbus/Dockerfile @@ -1,7 +1,7 @@ # The used version here always refers to the latest released VAST version. # Use `latest` to get the most recent version of VAST as it is available on the # Git master branch at https://github.com/tenzir/vast. -ARG VAST_VERSION=2021.09.30 +ARG VAST_VERSION=2021.11.18 FROM tenzir/vast:$VAST_VERSION USER root diff --git a/plugins/apps/threatbus_cif3/setup.py b/plugins/apps/threatbus_cif3/setup.py index 94df0105..fb6a7d41 100644 --- a/plugins/apps/threatbus_cif3/setup.py +++ b/plugins/apps/threatbus_cif3/setup.py @@ -27,7 +27,7 @@ entry_points={"threatbus.app": ["cif3 = threatbus_cif3.plugin"]}, install_requires=[ "stix2 >= 3.0", - "threatbus >= 2021.9.30", + "threatbus >= 2021.11.18", "cifsdk > 3.0.0rc4, < 4.0", ], keywords=[ @@ -49,5 +49,5 @@ packages=["threatbus_cif3"], python_requires=">=3.6", url="https://github.com/tenzir/threatbus", - version="2021.09.30", + version="2021.11.18", ) diff --git a/plugins/apps/threatbus_misp/setup.py b/plugins/apps/threatbus_misp/setup.py index 57217bf3..e221edc9 100644 --- a/plugins/apps/threatbus_misp/setup.py +++ b/plugins/apps/threatbus_misp/setup.py @@ -28,7 +28,7 @@ install_requires=[ "pymisp >= 2.4.120", "stix2 >= 3.0", - "threatbus >= 2021.9.30", + "threatbus >= 2021.11.18", ], extras_require={"kafka": ["confluent-kafka>=1.3.0"], "zmq": ["pyzmq>=18.1.1"]}, keywords=[ @@ -49,5 +49,5 @@ packages=["threatbus_misp"], python_requires=">=3.7", url="https://github.com/tenzir/threatbus", - version="2021.09.30", + version="2021.11.18", ) diff --git a/plugins/apps/threatbus_zeek/setup.py b/plugins/apps/threatbus_zeek/setup.py index 2dbaabeb..e4ea64fb 100644 --- a/plugins/apps/threatbus_zeek/setup.py +++ b/plugins/apps/threatbus_zeek/setup.py @@ -27,7 +27,7 @@ entry_points={"threatbus.app": ["zeek = threatbus_zeek.plugin"]}, install_requires=[ "stix2 >= 3.0", - "threatbus >= 2021.9.30", + "threatbus >= 2021.11.18", ], keywords=[ "Zeek", @@ -50,5 +50,5 @@ python_requires=">=3.7", setup_requires=["setuptools", "wheel"], url="https://github.com/tenzir/threatbus", - version="2021.09.30", + version="2021.11.18", ) diff --git a/plugins/apps/threatbus_zmq/setup.py b/plugins/apps/threatbus_zmq/setup.py index c78fc977..d9ae6449 100644 --- a/plugins/apps/threatbus_zmq/setup.py +++ b/plugins/apps/threatbus_zmq/setup.py @@ -29,7 +29,7 @@ "pyzmq>=19", "python-dateutil>=2.8.1", "stix2>=3.0", - "threatbus>=2021.9.30", + "threatbus>=2021.11.18", ], keywords=[ "zeromq", @@ -47,5 +47,5 @@ packages=["threatbus_zmq"], python_requires=">=3.7", url="https://github.com/tenzir/threatbus", - version="2021.09.30", + version="2021.11.18", ) diff --git a/plugins/backbones/file_benchmark/setup.py b/plugins/backbones/file_benchmark/setup.py index bfe97ed6..3df72bc0 100644 --- a/plugins/backbones/file_benchmark/setup.py +++ b/plugins/backbones/file_benchmark/setup.py @@ -24,7 +24,7 @@ entry_points={"threatbus.backbone": ["file_benchmark = file_benchmark.plugin"]}, install_requires=[ "stix2 >= 3.0", - "threatbus >= 2021.9.30", + "threatbus >= 2021.11.18", ], keywords=["threatbus", "plugin"], license="BSD 3-clause", @@ -34,5 +34,5 @@ packages=["file_benchmark"], python_requires=">=3.7", url="https://github.com/tenzir/threatbus", - version="2021.09.30", + version="2021.11.18", ) diff --git a/plugins/backbones/threatbus_inmem/setup.py b/plugins/backbones/threatbus_inmem/setup.py index 9b1000aa..626a2962 100644 --- a/plugins/backbones/threatbus_inmem/setup.py +++ b/plugins/backbones/threatbus_inmem/setup.py @@ -24,7 +24,7 @@ entry_points={"threatbus.backbone": ["inmem = threatbus_inmem.plugin"]}, install_requires=[ "stix2 >= 3.0", - "threatbus >= 2021.9.30", + "threatbus >= 2021.11.18", ], keywords=[ "message broker", @@ -41,5 +41,5 @@ packages=["threatbus_inmem"], python_requires=">=3.7", url="https://github.com/tenzir/threatbus", - version="2021.09.30", + version="2021.11.18", ) diff --git a/plugins/backbones/threatbus_rabbitmq/setup.py b/plugins/backbones/threatbus_rabbitmq/setup.py index ea74e161..0982493e 100644 --- a/plugins/backbones/threatbus_rabbitmq/setup.py +++ b/plugins/backbones/threatbus_rabbitmq/setup.py @@ -26,7 +26,7 @@ "pika >= 1.1.0", "retry", "stix2 >= 3.0", - "threatbus >= 2021.9.30", + "threatbus >= 2021.11.18", ], keywords=[ "message broker", @@ -46,5 +46,5 @@ packages=["threatbus_rabbitmq"], python_requires=">=3.7", url="https://github.com/tenzir/threatbus", - version="2021.09.30", + version="2021.11.18", ) diff --git a/setup.py b/setup.py index e4adb33e..d39352c2 100644 --- a/setup.py +++ b/setup.py @@ -49,5 +49,5 @@ python_requires=">=3.7", setup_requires=["setuptools", "wheel"], url="https://github.com/tenzir/threatbus", - version="2021.09.30", + version="2021.11.18", )