You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+17-4Lines changed: 17 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,8 +10,8 @@ This file lists all changes between IntelMQ releases.
10
10
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.
11
11
12
12
13
-
3.4.1 Patch release (unreleased)
14
-
--------------------------------
13
+
3.5.0 Feature release (unreleased)
14
+
----------------------------------
15
15
16
16
### Configuration
17
17
- 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
25
25
-`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).
26
26
-`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).
27
27
28
-
### Development
29
-
30
28
### Data Format
31
29
- Implementing [IEP009](https://github.com/certtools/ieps/tree/main/009) introducing fields to
32
30
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
105
103
- Remove `prettyprint` script, use `jq` instead (PR#2551 by Sebastian Wagner).
106
104
107
105
### 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).
Copy file name to clipboardExpand all lines: NEWS.md
+1-7Lines changed: 1 addition & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,14 +10,12 @@ This file lists all changes which have an affect on the administration of IntelM
10
10
Please refer to the change log for a full list of changes.
11
11
12
12
13
-
3.4.1 Patch release (unreleased)
13
+
3.5.0 Patch release (unreleased)
14
14
--------------------------------
15
15
16
16
### Requirements
17
17
Python `>=3.9` is now required, which is available on all platforms supported by IntelMQ.
18
18
19
-
### Tools
20
-
21
19
### Data Format
22
20
To save new fields from IntelMQ Data Format in existing PostgreSQL instances, the following schema
23
21
update is necessary:
@@ -31,10 +29,6 @@ ALTER TABLE events ADD severity varchar(10);
31
29
ALTERTABLE events ADD "constituency"text;
32
30
```
33
31
34
-
### Configuration
35
-
36
-
### Libraries
37
-
38
32
### Postgres databases
39
33
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.
0 commit comments