Skip to content

Commit 633cf7b

Browse files
committed
REL: 3.2.1 Important Bugfix release
1 parent 621dd88 commit 633cf7b

File tree

4 files changed

+13
-39
lines changed

4 files changed

+13
-39
lines changed

CHANGELOG.md

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -6,41 +6,17 @@
66
CHANGELOG
77
==========
88

9-
3.2.1 (unreleased)
9+
3.2.1 (2023-08-28)
1010
------------------
1111

12-
### Configuration
13-
1412
### Core
1513
- Fixed issue preventing bots from stopping after reloading (PR by Kamil Mankowski).
1614

17-
### Development
18-
19-
### Data Format
20-
2115
### Bots
22-
#### Collectors
23-
24-
#### Parsers
25-
2616
#### Experts
2717
- `intelmq.bots.experts.reverse_dns.expert`:
2818
- 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).
2919

30-
#### Outputs
31-
32-
### Documentation
33-
34-
### Packaging
35-
36-
### Tests
37-
38-
### Tools
39-
40-
### Contrib
41-
42-
### Known issues
43-
4420

4521
3.2.0 (2023-07-18)
4622
------------------

NEWS.md

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,28 +10,20 @@ This file lists all changes which have an affect on the administration of IntelM
1010
Please refer to the change log for a full list of changes.
1111

1212

13-
3.2.1 Bugfix release (unreleased)
13+
3.2.1 Bugfix release (2023-08-23)
1414
---------------------------------
1515

16+
### All Bots
17+
Fixes an issue which prevented bots from stopping gracefully after reloading.
18+
As logrotate reloads all bots regularly, this bug affects most IntelMQ installations.
19+
1620
### Reverse DNS Expert
1721
Until IntelMQ version 3.2.0, the bot incorrectly cached and re-used results for /24 networks instead of single IP addresses.
1822
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`.
1923
IntelMQ version 3.2.1 fixes this issue.
2024

2125
The bugfix will correctly increase the cache sizes and decrease the performance, as less (incorrect) data is re-used.
2226

23-
### Requirements
24-
25-
### Tools
26-
27-
### Data Format
28-
29-
### Configuration
30-
31-
### Libraries
32-
33-
### Postgres databases
34-
3527

3628
3.2.0 Feature release (2023-07-18)
3729
----------------------------------

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
intelmq (3.2.1-1) stable; urgency=medium
2+
3+
* 3.2.1 Bugfix release
4+
5+
-- Sebastian Wagner <[email protected]> Mon, 28 Aug 2023 17:07:21 +0200
6+
17
intelmq (3.2.0-1) stable; urgency=medium
28

39
* 3.2.0 Release

intelmq/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
#
33
# SPDX-License-Identifier: AGPL-3.0-or-later
44

5-
__version_info__ = (3, 2, 1, 'a1')
5+
__version_info__ = (3, 2, 1)
66
__version__ = '.'.join(map(str, __version_info__))

0 commit comments

Comments
 (0)