Skip to content

Commit 73ef5d7

Browse files
committed
REL: 3.5.0 Feature release
1 parent 2485871 commit 73ef5d7

File tree

4 files changed

+22
-15
lines changed

4 files changed

+22
-15
lines changed

CHANGELOG.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ This file lists all changes between IntelMQ releases.
1010
Please refer to the [NEWS](NEWS.md) for a list of changes which have an affect on the administration of IntelMQ and contains steps that you need to be aware off for the upgrade.
1111

1212

13-
3.4.1 Patch release (unreleased)
14-
--------------------------------
13+
3.5.0 Feature release (unreleased)
14+
----------------------------------
1515

1616
### Configuration
1717
- New parameter `stop_retry_limit` (PR#2598 by Lukas Heindl).
@@ -25,8 +25,6 @@ Please refer to the [NEWS](NEWS.md) for a list of changes which have an affect o
2525
- `intelmq.lib.mixins.http`: Only set HTTP header 'Authorization' if username or password are set and are not both empty string as they are by default in the Manager (fixes #2590, PR#2634 by Sebastian Wagner).
2626
- `intelmq.lib.message.Message.from_dict`: Do not modify the dict parameter by adding the `__type` field and raise an error when type is not determinable (PR#2545 by Sebastian Wagner).
2727

28-
### Development
29-
3028
### Data Format
3129
- Implementing [IEP009](https://github.com/certtools/ieps/tree/main/009) introducing fields to
3230
identify products and vulnerabilities: `product.full_name`, `product.name`, `product.vendor`,
@@ -105,6 +103,21 @@ Please refer to the [NEWS](NEWS.md) for a list of changes which have an affect o
105103
- Remove `prettyprint` script, use `jq` instead (PR#2551 by Sebastian Wagner).
106104

107105
### Known issues
106+
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).
107+
- stomp.py 8.2.0+ breaks the version check in stomp bots (#2600).
108+
- Traceback when calling intelmqdump without write access to the log file (#2529).
109+
- pyyaml PendingDeprecationWarning: you should no longer specify 'unsafe' -> test failure (#2489).
110+
- `intelmq.parsers.html_table` may not process invalid URLs in patched Python version due to changes in `urllib` (#2382).
111+
- Breaking changes in 'rt' 3.0 library (#2367).
112+
- Type error with SQL output bot's `prepare_values` returning list instead of tuple (#2255).
113+
- `intelmq_psql_initdb` does not work for SQLite (#2202).
114+
- intelmqsetup: should install a default state file (#2175).
115+
- Misp Expert - Crash if misp event already exist (#2170).
116+
- Spamhaus CERT parser uses wrong field (#2165).
117+
- Custom headers ignored in HTTPCollectorBot (#2150).
118+
- intelmqctl log: parsing syslog does not work (#2097).
119+
- Bots started with IntelMQ-API/Manager stop when the webserver is restarted (#952).
120+
- Corrupt dump files when interrupted during writing (#870).
108121

109122

110123
3.4.0 Feature release (2025-03-14)

NEWS.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,12 @@ 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.4.1 Patch release (unreleased)
13+
3.5.0 Patch release (unreleased)
1414
--------------------------------
1515

1616
### Requirements
1717
Python `>=3.9` is now required, which is available on all platforms supported by IntelMQ.
1818

19-
### Tools
20-
2119
### Data Format
2220
To save new fields from IntelMQ Data Format in existing PostgreSQL instances, the following schema
2321
update is necessary:
@@ -31,10 +29,6 @@ ALTER TABLE events ADD severity varchar(10);
3129
ALTER TABLE events ADD "constituency" text;
3230
```
3331

34-
### Configuration
35-
36-
### Libraries
37-
3832
### Postgres databases
3933
To switch to the more efficient data type `jsonb` instead of `json`, use the following SQL statement. Data is preserved. JSONB also has more query and data manipulation features than plain JSON.
4034
```sql

debian/changelog

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

3-
* 3.4.1 Bugfix release
3+
* 3.5.0 Feature release
44

5-
-- Sebastian Wagner <sebix@sebix.at> Fri, 14 Mar 2025 21:44:52 +0100
5+
-- Sebastian Wagner <sebix@sebix.at> Thu, 02 Oct 2025 12:41:02 +0200
66

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

0 commit comments

Comments
 (0)