Skip to content

Commit 6df0bbb

Browse files
committed
release 3.2.0a1 alpha version
1 parent f1f0aa8 commit 6df0bbb

File tree

4 files changed

+42
-7
lines changed

4 files changed

+42
-7
lines changed

CHANGELOG.md

Lines changed: 27 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
CHANGELOG
77
==========
88

9-
3.1.1 (unreleased)
9+
3.2.0 (unreleased)
1010
------------------
1111

1212
### Core
@@ -39,7 +39,7 @@ CHANGELOG
3939
- Reset detected `feedname` at shutdown to re-detect the feedname on reloads (PR#2361 by @elsif2, fixes #2360).
4040
- `intelmq.bots.parsers.shadowserver._config`:
4141
- Added 'IPv6-Vulnerable-Exchange' alias and 'Accessible-WS-Discovery-Service' report. (PR#2338)
42-
- Removed unused 'p0f_genre' and 'p0f_detail' from the 'DNS-Open-Resolvers' report. (PR#2338)
42+
- Removed unused `p0f_genre` and `p0f_detail` from the 'DNS-Open-Resolvers' report. (PR#2338)
4343
- Added 'Accessible-SIP' report. (PR#2348)
4444
- Added 'IPv6-Open-HTTP-Proxy' and 'IPv6-Accessible-HTTP-Proxy' aliases. (PR#2348)
4545
- Removed duplicate mappings from the 'Spam-URL' report. (PR#2348)
@@ -67,8 +67,6 @@ CHANGELOG
6767
### Tests
6868
- New decorator `skip_installation` and environment variable `INTELMQ_TEST_INSTALLATION` to skip tests requiring an IntelMQ installation on the test host by default (PR#2370 by Sebastian Wagner, fixes #2369)
6969

70-
### Packaging
71-
7270
### Tools
7371
- `intelmqsetup`:
7472
- SECURITY: fixed a low-risk bug causing the tool to change owner of `/` if run with the `INTELMQ_PATHS_NO_OPT` environment variable set. This affects only the PIP package as the DEB/RPM packages don't contain this tool. (PR#2355 by Kamil Mańkowski, fixes #2354)
@@ -78,8 +76,31 @@ CHANGELOG
7876
- `intelmqctl`:
7977
- Increased the performance through removing unnecessary reads. (by Sebastian Kufner)
8078

81-
### Known Errors
82-
- `intelmq.parsers.html_table` may not process invalid URLs in patched Python version due to changes in `urllib`. See #2382
79+
### Known Issues
80+
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).
81+
- `intelmq.parsers.html_table` may not process invalid URLs in patched Python version due to changes in `urllib` (#2382).
82+
- Breaking changes in 'rt' library (#2367).
83+
- Stomp collector failed (#2342).
84+
- Type error with SQL output bot's `prepare_values` returning list instead of tuple (#2255).
85+
- `intelmq_psql_initdb` does not work for SQLite (#2202).
86+
- intelmqsetup: should install a default state file (#2175).
87+
- Misp Expert - Crash if misp event already exist (#2170).
88+
- Turris greylist has been updated (#2167).
89+
- Spamhaus CERT parser uses wrong field (#2165).
90+
- Custom headers ignored in HTTPCollectorBot (#2150).
91+
- Missing commas in SQL query for separate Events table (#2125).
92+
- intelmqctl log: parsing syslog does not work (#2097).
93+
- Bash completion scripts depend on old JSON-based configuration files (#2094).
94+
- Bot configuration examples use JSON instead of YAML (#2066).
95+
- Bots started with IntelMQ-API/Manager stop when the webserver is restarted (#952).
96+
- Corrupt dump files when interrupted during writing (#870).
97+
98+
99+
3.0.2 (2021-09-10)
100+
------------------
101+
102+
### Core
103+
- `intelmq.lib.bot.CollectorBot`: Fixed an issue with within the `new_report` function, which re-loads the harmonization file after a new incoming dataset, which leads to CPU drain and decreased performance (PR#2106 by Sebastian Waldbauer, fixes #2098).
83104

84105
3.1.0 (2023-02-10)
85106
------------------

NEWS.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@ 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.2.0 Feature release (2023-05-24)
14+
----------------------------------
15+
16+
No changes are required by administrators.
17+
18+
[IEP007: Running IntelMQ bots as Python Library](https://github.com/certtools/ieps/tree/main/007) is implemented.
19+
20+
1321
3.1.0 Feature release (2023-02-10)
1422
----------------------------------
1523

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
intelmq (3.2.0a1-1) stable; urgency=medium
2+
3+
* Update to 3.2.0 Alpha 1.
4+
5+
-- Sebastian Wagner <[email protected]> Wed, 24 May 2023 16:47:37 +0200
6+
17
intelmq (3.1.0-1) stable; urgency=medium
28

39
* Update to 3.1.0.

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

0 commit comments

Comments
 (0)