Skip to content

Commit ceb678c

Browse files
committed
REL: 3.3.1 Bugfix release
1 parent 51077a5 commit ceb678c

File tree

4 files changed

+24
-38
lines changed

4 files changed

+24
-38
lines changed

CHANGELOG.md

Lines changed: 19 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,25 @@
11
<!-- comment
2-
SPDX-FileCopyrightText: 2015-2023 Sebastian Wagner
2+
SPDX-FileCopyrightText: 2015-2024 Sebastian Wagner
33
SPDX-License-Identifier: AGPL-3.0-or-later
44
-->
55

66
# CHANGELOG
77

88

9-
3.3.1 (unreleased)
9+
3.3.1 (2024-09-03)
1010
------------------
1111

12-
### Configuration
13-
1412
### Core
1513
- `intelmq.lib.utils.drop_privileges`: When IntelMQ is called as `root` and dropping the privileges to user `intelmq`, also set the non-primary groups associated with the `intelmq` user. Makes the behaviour of running intelmqctl as `root` closer to the behaviour of `sudo -u intelmq ...` (PR#2507 by Mikk Margus Möll).
1614
- `intelmq.lib.utils.unzip`: Ignore directories themselves when extracting data to prevent the extraction of empty data for a directory entries (PR#2512 by Kamil Mankowski).
1715

18-
### Development
19-
20-
### Data Format
21-
2216
### Bots
2317
#### Collectors
2418
- `intelmq.bots.collectors.shadowserver.collector_reports_api.py`:
25-
- Added support for the types parameter to be either a string or a list.
19+
- Added support for the types parameter to be either a string or a list (PR#2495 by elsif2).
2620
- Refactored to utilize the type field returned by the API to match the requested types instead of a sub-string match on the filename.
27-
- Fixed timezone issue for collecting reports.
21+
- Fixed timezone issue for collecting reports (PR#2506 by elsif2).
22+
- Fixed behaviour if parameter `reports` value is empty string, behave the same way as not set, not like no report (PR#2523 by Sebastian Wagner).
2823
- `intelmq.bots.collectors.shodan.collector_stream` (PR#2492 by Mikk Margus Möll):
2924
- Add `alert` parameter to Shodan stream collector to allow fetching streams by configured alert ID
3025
- `intelmq.bots.collectors.mail._lib`: Remove deprecated parameter `attach_unzip` from default parameters (PR#2511 by Sebastian Wagner).
@@ -50,15 +45,20 @@
5045
### Documentation
5146
- Bots: Clarify some section of Mail collectors and the Generic CSV Parser (PR#2510 by Sebastian Wagner).
5247

53-
### Packaging
54-
55-
### Tests
56-
57-
### Tools
58-
59-
### Contrib
60-
61-
### Known issues
48+
### Known Issues
49+
This is short list of the most important known issues. The full list can be retrieved from [GitHub](https://github.com/certtools/intelmq/labels/bug?page=2&q=is%3Aopen+label%3Abug).
50+
- `intelmq.parsers.html_table` may not process invalid URLs in patched Python version due to changes in `urllib` (#2382).
51+
- Breaking changes in 'rt' 3.0 library (#2367).
52+
- Type error with SQL output bot's `prepare_values` returning list instead of tuple (#2255).
53+
- `intelmq_psql_initdb` does not work for SQLite (#2202).
54+
- intelmqsetup: should install a default state file (#2175).
55+
- Misp Expert - Crash if misp event already exist (#2170).
56+
- Spamhaus CERT parser uses wrong field (#2165).
57+
- Custom headers ignored in HTTPCollectorBot (#2150).
58+
- intelmqctl log: parsing syslog does not work (#2097).
59+
- Bash completion scripts depend on old JSON-based configuration files (#2094).
60+
- Bots started with IntelMQ-API/Manager stop when the webserver is restarted (#952).
61+
- Corrupt dump files when interrupted during writing (#870).
6262

6363

6464
3.3.0 (2024-03-01)
@@ -184,10 +184,6 @@
184184
- got support for providing custom harmonization file, generating view for storing `raw` fields separately, and adding `IF NOT EXISTS`/`OR REPLACE` clauses ([PR#2404](https://github.com/certtools/intelmq/pull/2404) by Kamil Mankowski).
185185
- got support for generating JSONB fields for PostgreSQL schema (PR#2436 by Kamil Mankowski).
186186

187-
### Contrib
188-
189-
### Known issues
190-
191187

192188
3.2.1 (2023-08-28)
193189
------------------

NEWS.md

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,10 @@ 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.3.0 Bugfix release (unreleased)
13+
3.3.1 Bugfix release (2024-09-03)
1414
---------------------------------
1515

16-
### Requirements
17-
18-
### Tools
19-
20-
### Data Format
21-
22-
### Configuration
23-
24-
### Libraries
25-
26-
### Postgres databases
16+
No changes are required by administrators.
2717

2818

2919
3.3.0 Feature release (2024-03-01)

debian/changelog

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
intelmq (3.3.1~a1-1) UNRELEASED; urgency=medium
1+
intelmq (3.3.1-1) stable; urgency=medium
22

33
* 3.3.1 Bugfix release
44

5-
-- Sebastian Wagner <sebix@sebix.at> Thu, 04 Apr 2024 10:40:34 +0200
5+
-- Sebastian Wagner <sebix@sebix.at> Fri, 30 Aug 2024 21:57:18 +0200
66

77
intelmq (3.3.0-1) stable; urgency=medium
88

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, 3, 1, 'alpha1')
5+
__version_info__ = (3, 3, 1,)
66
__version__ = '.'.join(map(str, __version_info__))

0 commit comments

Comments
 (0)