Skip to content

Commit

Permalink
REL: 3.2.1 Important Bugfix release
Browse files Browse the repository at this point in the history
  • Loading branch information
sebix committed Aug 28, 2023
1 parent 621dd88 commit 633cf7b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 39 deletions.
26 changes: 1 addition & 25 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
------------------
Expand Down
18 changes: 5 additions & 13 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,28 +10,20 @@ 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`.
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)
----------------------------------
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
intelmq (3.2.1-1) stable; urgency=medium

* 3.2.1 Bugfix release

-- Sebastian Wagner <sebix@sebix.at> Mon, 28 Aug 2023 17:07:21 +0200

intelmq (3.2.0-1) stable; urgency=medium

* 3.2.0 Release
Expand Down
2 changes: 1 addition & 1 deletion intelmq/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__))

0 comments on commit 633cf7b

Please sign in to comment.