Skip to content

Commit

Permalink
REL: 3.3.1 Bugfix release
Browse files Browse the repository at this point in the history
  • Loading branch information
sebix committed Aug 27, 2024
1 parent c16a8d2 commit e4046d3
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 34 deletions.
35 changes: 14 additions & 21 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,9 @@
3.3.1 (unreleased)
------------------

### Configuration

### Core
- `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).

### Development

### Data Format

### Bots
#### Collectors
- `intelmq.bots.collectors.shadowserver.collector_reports_api.py`:
Expand All @@ -43,17 +37,20 @@
- `intelmq.bots.outputs.misp.output_feed`: Handle failures if saved current event wasn't saved or is incorrect (PR by Kamil Mankowski).
- `intelmq.bots.outputs.smtp_batch.output`: Documentation on multiple recipients added (PR#2501 by Edvard Rejthar).

### Documentation

### Packaging

### Tests

### Tools

### Contrib

### Known issues
### Known Issues
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).
- `intelmq.parsers.html_table` may not process invalid URLs in patched Python version due to changes in `urllib` (#2382).
- Breaking changes in 'rt' 3.0 library (#2367).
- Type error with SQL output bot's `prepare_values` returning list instead of tuple (#2255).
- `intelmq_psql_initdb` does not work for SQLite (#2202).
- intelmqsetup: should install a default state file (#2175).
- Misp Expert - Crash if misp event already exist (#2170).
- Spamhaus CERT parser uses wrong field (#2165).
- Custom headers ignored in HTTPCollectorBot (#2150).
- intelmqctl log: parsing syslog does not work (#2097).
- Bash completion scripts depend on old JSON-based configuration files (#2094).
- Bots started with IntelMQ-API/Manager stop when the webserver is restarted (#952).
- Corrupt dump files when interrupted during writing (#870).


3.3.0 (2024-03-01)
Expand Down Expand Up @@ -179,10 +176,6 @@
- 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).
- got support for generating JSONB fields for PostgreSQL schema (PR#2436 by Kamil Mankowski).

### Contrib

### Known issues


3.2.1 (2023-08-28)
------------------
Expand Down
14 changes: 2 additions & 12 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,10 @@ This file lists all changes which have an affect on the administration of IntelM
Please refer to the change log for a full list of changes.


3.3.0 Bugfix release (unreleased)
3.3.1 Bugfix release (unreleased)
---------------------------------

### Requirements

### Tools

### Data Format

### Configuration

### Libraries

### Postgres databases
No changes are required by administrators.


3.3.0 Feature release (2024-03-01)
Expand Down
2 changes: 1 addition & 1 deletion intelmq/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
#
# SPDX-License-Identifier: AGPL-3.0-or-later

__version_info__ = (3, 3, 1, 'alpha1')
__version_info__ = (3, 3, 1,)
__version__ = '.'.join(map(str, __version_info__))

0 comments on commit e4046d3

Please sign in to comment.