diff --git a/CHANGELOG.md b/CHANGELOG.md index b2c8e4359..ed530fbcb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,41 +6,17 @@ CHANGELOG ========== -3.2.1 (unreleased) +3.2.1 (2023-08-28) ------------------ -### Configuration - ### Core - Fixed issue preventing bots from stopping after reloading (PR by Kamil Mankowski). -### Development - -### Data Format - ### Bots -#### Collectors - -#### Parsers - #### Experts - `intelmq.bots.experts.reverse_dns.expert`: - Fix the cache key to not cache results for /24 (IPv4) and /128 (IPv6) networks but for single IP-Adresses (PR#2395 by Sebastian Wagner, fixes #2394). -#### Outputs - -### Documentation - -### Packaging - -### Tests - -### Tools - -### Contrib - -### Known issues - 3.2.0 (2023-07-18) ------------------ diff --git a/NEWS.md b/NEWS.md index 8aaa5916a..9b1a6528d 100644 --- a/NEWS.md +++ b/NEWS.md @@ -10,9 +10,13 @@ This file lists all changes which have an affect on the administration of IntelM Please refer to the change log for a full list of changes. -3.2.1 Bugfix release (unreleased) +3.2.1 Bugfix release (2023-08-23) --------------------------------- +### All Bots +Fixes an issue which prevented bots from stopping gracefully after reloading. +As logrotate reloads all bots regularly, this bug affects most IntelMQ installations. + ### Reverse DNS Expert Until IntelMQ version 3.2.0, the bot incorrectly cached and re-used results for /24 networks instead of single IP addresses. If the bot retrieved the PTR for `192.0.43.7`, it was cached for `192.0.43.0/24` and used for all IP addresses in this range, for example for `192.0.43.8`. @@ -20,18 +24,6 @@ IntelMQ version 3.2.1 fixes this issue. The bugfix will correctly increase the cache sizes and decrease the performance, as less (incorrect) data is re-used. -### Requirements - -### Tools - -### Data Format - -### Configuration - -### Libraries - -### Postgres databases - 3.2.0 Feature release (2023-07-18) ---------------------------------- diff --git a/debian/changelog b/debian/changelog index 71a428c7f..694fa9070 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +intelmq (3.2.1-1) stable; urgency=medium + + * 3.2.1 Bugfix release + + -- Sebastian Wagner Mon, 28 Aug 2023 17:07:21 +0200 + intelmq (3.2.0-1) stable; urgency=medium * 3.2.0 Release diff --git a/intelmq/version.py b/intelmq/version.py index 137bd12ed..59ff3ce01 100644 --- a/intelmq/version.py +++ b/intelmq/version.py @@ -2,5 +2,5 @@ # # SPDX-License-Identifier: AGPL-3.0-or-later -__version_info__ = (3, 2, 1, 'a1') +__version_info__ = (3, 2, 1) __version__ = '.'.join(map(str, __version_info__))