Skip to content

Commit 0480c10

Browse files
committed
REL: 3.5.0 Feature release
1 parent 900e99e commit 0480c10

File tree

4 files changed

+23
-16
lines changed

4 files changed

+23
-16
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 (2025-11-01)
14+
----------------------------------
1515

1616
### Configuration
1717
- New parameter `stop_retry_limit` (PR#2598 by Lukas Heindl).
@@ -27,8 +27,6 @@ Please refer to the [NEWS](NEWS.md) for a list of changes which have an affect o
2727
- `intelmq.lib.mixins.cache.CacheMixin` was extended to support temporary storing messages in a cache queue
2828
(PR#2509 by Kamil Mankowski).
2929

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

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

122135

123136
3.4.0 Feature release (2025-03-14)

NEWS.md

Lines changed: 2 additions & 8 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)
14-
--------------------------------
13+
3.5.0 Feature release (2025-11-01)
14+
----------------------------------
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:
@@ -45,10 +43,6 @@ Optionally remove the severity field from the extra fields in existing entries:
4543
UPDATE events SET extra = extra - 'severity';
4644
```
4745

48-
### Configuration
49-
50-
### Libraries
51-
5246
### Postgres databases
5347
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.
5448
```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 <[email protected]> Fri, 14 Mar 2025 21:44:52 +0100
5+
-- Sebastian Wagner <[email protected]> Sat, 01 Nov 2025 08:36:38 +0100
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)