Skip to content
This repository has been archived by the owner on May 29, 2024. It is now read-only.

Commit

Permalink
Merge pull request #88
Browse files Browse the repository at this point in the history
Prepare December Release
  • Loading branch information
0snap authored Dec 16, 2020
2 parents 3321e2e + 4bac6e6 commit 6f70549
Show file tree
Hide file tree
Showing 11 changed files with 28 additions and 22 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,22 @@ Every entry has a category for which we use the following visual abbreviations:
- ⚠️ change
- 🐞 bugfix

## Unreleased
<!-- ## Unreleased -->

## [2020.12.16]

- 🎁 New systemd unit files are now available in the Threat Bus
[repository](https://github.com/tenzir/threatbus/tree/master/threatbus)
to run both Threat Bus and `pyvast-threatbus` as system services.
[#77](https://github.com/tenzir/threatbus/pull/77)

## [2020.11.30]
## [2020.11.30]

- 🐞 The RabbitMQ backbone plugin ignored user-defined queue parameters, such as
`durable` or `lazy` queues. It now respects such parameters again.
[#76](https://github.com/tenzir/threatbus/pull/76)

## [2020.11.26]
## [2020.11.26]

- 🐞 The Zeek app did not perform an outbound connection to Threat Bus in
cluster mode. Now the master peers with Threat Bus to establish a connection.
Expand Down Expand Up @@ -82,3 +84,4 @@ Every entry has a category for which we use the following visual abbreviations:
[2020.10.29]: https://github.com/tenzir/threatbus/releases/tag/2020.10.29
[2020.11.26]: https://github.com/tenzir/threatbus/releases/tag/2020.11.26
[2020.11.30]: https://github.com/tenzir/threatbus/releases/tag/2020.11.30
[2020.12.16]: https://github.com/tenzir/threatbus/releases/tag/2020.12.16
7 changes: 5 additions & 2 deletions apps/vast/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ Every entry has a category for which we use the following visual abbreviations:
- ⚡️ breaking change
- 🐞 bugfix

## Unreleased
<!-- ## Unreleased -->

## [2020.12.16]

- 🎁 `pyvast-threatbus` now supports basic metric collection. It stores metrics
in [influx line protocol](https://docs.influxdata.com/influxdb/v2.0/reference/syntax/line-protocol/)
Expand All @@ -27,7 +29,7 @@ Every entry has a category for which we use the following visual abbreviations:
the `config.yaml` file.
[#80](https://github.com/tenzir/threatbus/pull/80)

## [2020.11.26]
## [2020.11.26]

- 🐞 `pyvast-threatbus` escapes backslashes and quotes in IoCs before it queries
VAST.
Expand All @@ -46,3 +48,4 @@ Every entry has a category for which we use the following visual abbreviations:
[#63](https://github.com/tenzir/threatbus/pull/63)

[2020.11.26]: https://github.com/tenzir/threatbus/releases/tag/2020.11.26
[2020.12.16]: https://github.com/tenzir/threatbus/releases/tag/2020.12.16
4 changes: 2 additions & 2 deletions apps/vast/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"confuse",
"pyzmq>=19",
"pyvast>=2020.10.29",
"threatbus>=2020.11.26",
"threatbus>=2020.12.16",
"unflatten",
],
keywords=[
Expand All @@ -52,5 +52,5 @@
python_requires=">=3.7",
setup_requires=["setuptools", "wheel"],
url="https://github.com/tenzir/threatbus",
version="2020.11.26",
version="2020.12.16",
)
4 changes: 2 additions & 2 deletions plugins/apps/threatbus_cif3/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
],
description="A plugin to enable indicators to be submitted to CIFv3 in real-time",
entry_points={"threatbus.app": ["cif3 = threatbus_cif3.plugin"]},
install_requires=["threatbus>=2020.11.26", "cifsdk>3.0.0rc4,<4.0"],
install_requires=["threatbus>=2020.12.16", "cifsdk>3.0.0rc4,<4.0"],
keywords=[
"cif",
"cifv3",
Expand All @@ -46,5 +46,5 @@
packages=["threatbus_cif3"],
python_requires=">=3.6",
url="https://github.com/tenzir/threatbus",
version="2020.11.26",
version="2020.12.16",
)
4 changes: 2 additions & 2 deletions plugins/apps/threatbus_misp/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
description="A plugin to enable threatbus communication with MISP.",
entry_points={"threatbus.app": ["misp = threatbus_misp.plugin"]},
install_requires=[
"threatbus>=2020.11.26",
"threatbus>=2020.12.16",
"pymisp >= 2.4.120, <= 2.4.134",
"pyzmq>=18.1.1",
"confluent-kafka>=1.3.0",
Expand All @@ -47,5 +47,5 @@
packages=["threatbus_misp"],
python_requires=">=3.7",
url="https://github.com/tenzir/threatbus",
version="2020.11.26",
version="2020.12.16",
)
4 changes: 2 additions & 2 deletions plugins/apps/threatbus_zeek/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
description="A plugin to enable threatbus communication with Zeek network monitor.",
entry_points={"threatbus.app": ["zeek = threatbus_zeek.plugin"]},
install_requires=[
"threatbus>=2020.11.26",
"threatbus>=2020.12.16",
],
keywords=["threatbus", "Zeek", "intrusion detection", "IDS", "broker", "plugin"],
license="BSD 3-clause",
Expand All @@ -37,5 +37,5 @@
python_requires=">=3.7",
setup_requires=["setuptools", "wheel"],
url="https://github.com/tenzir/threatbus",
version="2020.11.26",
version="2020.12.16",
)
4 changes: 2 additions & 2 deletions plugins/apps/threatbus_zmq_app/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
description="A plugin to connect apps via ZeroMQ.",
entry_points={"threatbus.app": ["zmq-app = threatbus_zmq_app.plugin"]},
install_requires=[
"threatbus>=2020.11.26",
"threatbus>=2020.12.16",
"pyzmq>=19",
"python-dateutil>=2.8.1",
],
Expand All @@ -44,5 +44,5 @@
packages=["threatbus_zmq_app"],
python_requires=">=3.7",
url="https://github.com/tenzir/threatbus",
version="2020.11.26",
version="2020.12.16",
)
4 changes: 2 additions & 2 deletions plugins/backbones/file_benchmark/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
],
description="A simplistic in-memory backbone for threatbus.",
entry_points={"threatbus.backbone": ["file_benchmark = file_benchmark.plugin"]},
install_requires=["threatbus>=2020.11.26"],
install_requires=["threatbus>=2020.12.16"],
keywords=["threatbus", "plugin"],
license="BSD 3-clause",
long_description=long_description,
Expand All @@ -31,5 +31,5 @@
packages=["file_benchmark"],
python_requires=">=3.7",
url="https://github.com/tenzir/threatbus",
version="2020.11.26",
version="2020.12.16",
)
4 changes: 2 additions & 2 deletions plugins/backbones/threatbus_inmem/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
],
description="A simplistic in-memory backbone for threatbus.",
entry_points={"threatbus.backbone": ["inmem = threatbus_inmem.plugin"]},
install_requires=["threatbus>=2020.11.26"],
install_requires=["threatbus>=2020.12.16"],
keywords=["threatbus", "plugin"],
license="BSD 3-clause",
long_description=long_description,
Expand All @@ -31,5 +31,5 @@
packages=["threatbus_inmem"],
python_requires=">=3.7",
url="https://github.com/tenzir/threatbus",
version="2020.11.26",
version="2020.12.16",
)
4 changes: 2 additions & 2 deletions plugins/backbones/threatbus_rabbitmq/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
],
description="A RabbitMQ backbone for threatbus.",
entry_points={"threatbus.backbone": ["rabbitmq = threatbus_rabbitmq.plugin"]},
install_requires=["threatbus>=2020.11.26", "pika>=1.1.0", "retry"],
install_requires=["threatbus>=2020.12.16", "pika>=1.1.0", "retry"],
keywords=["threatbus", "plugin"],
license="BSD 3-clause",
long_description=long_description,
Expand All @@ -31,5 +31,5 @@
packages=["threatbus_rabbitmq"],
python_requires=">=3.7",
url="https://github.com/tenzir/threatbus",
version="2020.11.30",
version="2020.12.16",
)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@
python_requires=">=3.7",
setup_requires=["setuptools", "wheel"],
url="https://github.com/tenzir/threatbus",
version="2020.11.26",
version="2020.12.16",
)

0 comments on commit 6f70549

Please sign in to comment.