diff --git a/CHANGELOG.md b/CHANGELOG.md index 24f9b089..7f357527 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.07.29] - 🐞 Threatbus now only attempts to load plugins that are explicitly listed in the config file. @@ -240,3 +240,4 @@ Every entry has a category for which we use the following visual abbreviations: [2021.04.29]: https://github.com/tenzir/threatbus/releases/tag/2021.04.29 [2021.05.27]: https://github.com/tenzir/threatbus/releases/tag/2021.05.27 [2021.06.24]: https://github.com/tenzir/threatbus/releases/tag/2021.06.24 +[2021.07.29]: https://github.com/tenzir/threatbus/releases/tag/2021.07.29 diff --git a/apps/stix-shifter/CHANGELOG.md b/apps/stix-shifter/CHANGELOG.md index fc89f652..e60e387e 100644 --- a/apps/stix-shifter/CHANGELOG.md +++ b/apps/stix-shifter/CHANGELOG.md @@ -11,7 +11,7 @@ Every entry has a category for which we use the following visual abbreviations: - ⚡️ Breaking Changes - 🐞 Bug Fixes -## Unreleased +## [2021.07.29] - ⚠️ The Dockerfile of `stix-shifter-threatbus` has moved to the repository toplevel and now installs Threat Bus from source. This way, the Docker build @@ -68,3 +68,4 @@ Every entry has a category for which we use the following visual abbreviations: [2021.05.27]: https://github.com/tenzir/threatbus/releases/tag/2021.05.27 [2021.06.24]: https://github.com/tenzir/threatbus/releases/tag/2021.06.24 +[2021.07.29]: https://github.com/tenzir/threatbus/releases/tag/2021.07.29 diff --git a/apps/stix-shifter/setup.py b/apps/stix-shifter/setup.py index 782f14e1..a22bec13 100644 --- a/apps/stix-shifter/setup.py +++ b/apps/stix-shifter/setup.py @@ -54,5 +54,5 @@ python_requires=">=3.7", setup_requires=["setuptools", "wheel"], url="https://github.com/tenzir/threatbus", - version="2021.06.24", + version="2021.07.29", ) diff --git a/apps/suricata/CHANGELOG.md b/apps/suricata/CHANGELOG.md index 359ae71d..e474d5c8 100644 --- a/apps/suricata/CHANGELOG.md +++ b/apps/suricata/CHANGELOG.md @@ -11,7 +11,7 @@ Every entry has a category for which we use the following visual abbreviations: - ⚡️ Breaking Changes - 🐞 Bug Fixes -## Unreleased +## [2021.07.29] - ⚠️ The Dockerfile of `suricata-threatbus` has moved to the repository toplevel and now installs Threat Bus from source. This way, the Docker build always @@ -51,3 +51,4 @@ Every entry has a category for which we use the following visual abbreviations: [#131](https://github.com/tenzir/threatbus/pull/131) [2021.06.24]: https://github.com/tenzir/threatbus/releases/tag/2021.06.24 +[2021.07.29]: https://github.com/tenzir/threatbus/releases/tag/2021.07.29 diff --git a/apps/suricata/setup.py b/apps/suricata/setup.py index a318442e..19ea2531 100644 --- a/apps/suricata/setup.py +++ b/apps/suricata/setup.py @@ -53,5 +53,5 @@ python_requires=">=3.7", setup_requires=["setuptools", "wheel"], url="https://github.com/tenzir/threatbus", - version="2021.06.24", + version="2021.07.29", ) diff --git a/apps/vast/CHANGELOG.md b/apps/vast/CHANGELOG.md index 03a5a202..50d8d04c 100644 --- a/apps/vast/CHANGELOG.md +++ b/apps/vast/CHANGELOG.md @@ -10,7 +10,7 @@ Every entry has a category for which we use the following visual abbreviations: - ⚡️ Breaking Changes - 🐞 Bug Fixes -## Unreleased +## [2021.07.29] - ⚠️ The metric for indicator query time now only reflects the actual time spent querying VAST and does not regard unstarted VAST queries any longer. @@ -194,3 +194,4 @@ Every entry has a category for which we use the following visual abbreviations: [2021.04.29]: https://github.com/tenzir/threatbus/releases/tag/2021.04.29 [2021.05.27]: https://github.com/tenzir/threatbus/releases/tag/2021.05.27 [2021.06.24]: https://github.com/tenzir/threatbus/releases/tag/2021.06.24 +[2021.07.29]: https://github.com/tenzir/threatbus/releases/tag/2021.07.29 diff --git a/apps/vast/setup.py b/apps/vast/setup.py index 7de5dc4f..8aa3175a 100644 --- a/apps/vast/setup.py +++ b/apps/vast/setup.py @@ -52,5 +52,5 @@ python_requires=">=3.7", setup_requires=["setuptools", "wheel"], url="https://github.com/tenzir/threatbus", - version="2021.06.24", + version="2021.07.29", ) diff --git a/apps/zmq-app-template/setup.py b/apps/zmq-app-template/setup.py index e2f1de7b..2285bd42 100644 --- a/apps/zmq-app-template/setup.py +++ b/apps/zmq-app-template/setup.py @@ -49,5 +49,5 @@ python_requires=">=3.7", setup_requires=["setuptools", "wheel"], url="https://github.com/tenzir/threatbus", - version="2021.06.24", + version="2021.07.29", ) diff --git a/docker/pyvast-threatbus/Dockerfile b/docker/pyvast-threatbus/Dockerfile index 7fc63dd5..d96e9f7e 100644 --- a/docker/pyvast-threatbus/Dockerfile +++ b/docker/pyvast-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.06.24 +ARG VAST_VERSION=2021.07.29 FROM tenzir/vast:$VAST_VERSION USER root diff --git a/plugins/apps/threatbus_cif3/setup.py b/plugins/apps/threatbus_cif3/setup.py index 123a6318..6b154d46 100644 --- a/plugins/apps/threatbus_cif3/setup.py +++ b/plugins/apps/threatbus_cif3/setup.py @@ -49,5 +49,5 @@ packages=["threatbus_cif3"], python_requires=">=3.6", url="https://github.com/tenzir/threatbus", - version="2021.06.24", + version="2021.07.29", ) diff --git a/plugins/apps/threatbus_misp/setup.py b/plugins/apps/threatbus_misp/setup.py index 1a3d7c28..a507262b 100644 --- a/plugins/apps/threatbus_misp/setup.py +++ b/plugins/apps/threatbus_misp/setup.py @@ -49,5 +49,5 @@ packages=["threatbus_misp"], python_requires=">=3.7", url="https://github.com/tenzir/threatbus", - version="2021.06.24", + version="2021.07.29", ) diff --git a/plugins/apps/threatbus_zeek/setup.py b/plugins/apps/threatbus_zeek/setup.py index b7912adf..beadc67d 100644 --- a/plugins/apps/threatbus_zeek/setup.py +++ b/plugins/apps/threatbus_zeek/setup.py @@ -50,5 +50,5 @@ python_requires=">=3.7", setup_requires=["setuptools", "wheel"], url="https://github.com/tenzir/threatbus", - version="2021.06.24", + version="2021.07.29", ) diff --git a/plugins/apps/threatbus_zmq_app/setup.py b/plugins/apps/threatbus_zmq_app/setup.py index 8022a5eb..77b299c5 100644 --- a/plugins/apps/threatbus_zmq_app/setup.py +++ b/plugins/apps/threatbus_zmq_app/setup.py @@ -47,5 +47,5 @@ packages=["threatbus_zmq_app"], python_requires=">=3.7", url="https://github.com/tenzir/threatbus", - version="2021.06.24", + version="2021.07.29", ) diff --git a/plugins/backbones/file_benchmark/setup.py b/plugins/backbones/file_benchmark/setup.py index 8da51a88..aead938d 100644 --- a/plugins/backbones/file_benchmark/setup.py +++ b/plugins/backbones/file_benchmark/setup.py @@ -34,5 +34,5 @@ packages=["file_benchmark"], python_requires=">=3.7", url="https://github.com/tenzir/threatbus", - version="2021.06.24", + version="2021.07.29", ) diff --git a/plugins/backbones/threatbus_inmem/setup.py b/plugins/backbones/threatbus_inmem/setup.py index 3cdc5f84..4f0e9ded 100644 --- a/plugins/backbones/threatbus_inmem/setup.py +++ b/plugins/backbones/threatbus_inmem/setup.py @@ -41,5 +41,5 @@ packages=["threatbus_inmem"], python_requires=">=3.7", url="https://github.com/tenzir/threatbus", - version="2021.06.24", + version="2021.07.29", ) diff --git a/plugins/backbones/threatbus_rabbitmq/setup.py b/plugins/backbones/threatbus_rabbitmq/setup.py index 165bd50d..ff786318 100644 --- a/plugins/backbones/threatbus_rabbitmq/setup.py +++ b/plugins/backbones/threatbus_rabbitmq/setup.py @@ -46,5 +46,5 @@ packages=["threatbus_rabbitmq"], python_requires=">=3.7", url="https://github.com/tenzir/threatbus", - version="2021.06.24", + version="2021.07.29", ) diff --git a/setup.py b/setup.py index 655730f2..3b7ec136 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.06.24", + version="2021.07.29", )