diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ab6b403a..0dcbdf7ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ CHANGELOG ### Bots #### Collectors +- `intelmq.bots.collector.rt`: restrict `python-rt` to be below version 3.0 due to introduced breaking changes. #### Parsers - `intelmq.bots.parsers.shadowserver._config`: diff --git a/docs/user/bots.rst b/docs/user/bots.rst index eee958165..3e588e1ed 100644 --- a/docs/user/bots.rst +++ b/docs/user/bots.rst @@ -550,7 +550,11 @@ Request Tracker * `cache (redis db):` none * `description:` Request Tracker Collector fetches attachments from an RTIR instance. -You need the rt-library >= 1.9 from nic.cz, available via `pypi `_: `pip3 install rt` +You need the rt-library >= 1.9 and < 3.0 from nic.cz, available via `pypi `_: `pip3 install 'rt<3'` + +.. warning:: + + At the moment, the bot only supports `python-rt` versions below 3.0. This rt bot will connect to RT and inspect the given `search_queue` for tickets matching all criteria in `search_*`, Any matches will be inspected. For each match, all (RT-) attachments of the matching RT tickets are iterated over and within this loop, the first matching filename in the attachment is processed. diff --git a/intelmq/bots/collectors/rt/REQUIREMENTS.txt b/intelmq/bots/collectors/rt/REQUIREMENTS.txt index 3a15f0b4a..4d701891e 100644 --- a/intelmq/bots/collectors/rt/REQUIREMENTS.txt +++ b/intelmq/bots/collectors/rt/REQUIREMENTS.txt @@ -1,4 +1,4 @@ # SPDX-FileCopyrightText: 2016 Sebastian Wagner # SPDX-License-Identifier: AGPL-3.0-or-later -rt>=1.0.9 +rt<3.0.0,>=1.0.9