diff --git a/CHANGELOG.md b/CHANGELOG.md index 483c49875..ee5aab3d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,9 @@ CHANGELOG ========== -2.1.2 (unreleased) +2.1.2 (2020-01-28) ------------------ -### Configuration - ### Core - `__init__`: Resolve absolute path for `STATE_FILE_PATH` variable (resolves `..`). - `intelmq.lib.utils`: @@ -20,10 +18,6 @@ CHANGELOG - `Amqp._send` and `Amqp._acknowledge`: Log traceback in debug mode in case of errors and necessary re-connections. - `Amqp._acknowledge`: Reset delivery tag if acknowledge was successful. -### Development - -### Harmonization - ### Bots #### Collectors - `intelmq.bots.collectors.misp.collector`: @@ -57,9 +51,17 @@ CHANGELOG ### Tools - `intelmqctl upgrade-config`: Fix missing substitution in error message "State file %r is not writable.". -### Contrib - ### Known issues +- bots trapped in endless loop if decoding of raw message fails (#1494) +- intelmqctl status of processes: need to check bot id too (#1492) +- MongoDB authentication: compatibility on different MongoDB and pymongo versions (#1439) +- ctl: shell colorizations are logged (#1436) +- http stream collector: retry on regular connection problems? (#1435) +- tests: capture logging with context manager (#1342) +- Bots started with IntelMQ-Manager stop when the webserver is restarted. (#952) +- n6 parser: mapping is modified within each run (#905) +- reverse DNS: Only first record is used (#877) +- Corrupt dump files when interrupted during writing (#870) 2.1.1 (2019-11-11) diff --git a/NEWS.md b/NEWS.md index 6b22604c3..4c261356d 100644 --- a/NEWS.md +++ b/NEWS.md @@ -4,24 +4,15 @@ NEWS See the changelog for a full list of changes. -2.1.2 Bugfix release (unreleased) +2.1.2 Bugfix release (2020-01-28) --------------------------------- -### Requirements - -### Tools - -### Harmonization - -### Configuration - #### MaxMind GeoIP MaxMind requires a registration before being able to download the GeoLite2 database starting with 2019-12-30: https://blog.maxmind.com/2019/12/18/significant-changes-to-accessing-and-using-geolite2-databases/ If the provided `update-geoip-data` script is used, the license key can now be set second parameter. ### Libraries - -### Postgres databases +When using MISP integrations, make sure your currently installed PyMISP version supports the installed Python version. Any PyMISP version newer than 2.4.119.1 requires Python 3.6 or newer. 2.1.1 Bugfix release (2019-11-11) diff --git a/debian/changelog b/debian/changelog index aa937b7a0..15462c287 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +intelmq (2.1.2-1) stable; urgency=medium + + * Update to 2.1.2. + + -- Wagner Sebastian Tue, 28 Jan 2020 16:43:16 +0100 + intelmq (2.1.2~alpha1-1) stable; urgency=medium * Update to 2.1.2~alpha1 diff --git a/intelmq/version.py b/intelmq/version.py index e2467ecf2..2ad47eb4f 100644 --- a/intelmq/version.py +++ b/intelmq/version.py @@ -1,2 +1,2 @@ -__version_info__ = (2, 1, 2, 'alpha', 1) +__version_info__ = (2, 1, 2) __version__ = '.'.join(map(str, __version_info__))