Skip to content

Commit

Permalink
REL: 3.0.1 Bugfix release
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Wagner committed Sep 2, 2021
1 parent e9e0cfd commit 4e2039c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 24 deletions.
10 changes: 3 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
CHANGELOG
==========

3.0.1 (unreleased)
3.0.1 (2021-09-02)
------------------

### Configuration
Expand All @@ -16,10 +16,6 @@ CHANGELOG
- `intelmq.lib.pipeline`: Fix handling of `load_balance` parameter (PR#2027 by Mikk Margus Möll).
- `intelmq.lib.bot`: Fix handling of parameter `destination_queues` if value is an empty dictionary (PR#2051 by Sebastian Wagner, fixes #2034).

### Development

### Data Format

### Bots
#### Collectors
- `intelmq.bots.collectors.shodan.collector_stream`: Fix access to parameters, the bot wrongly used `self.parameters` (PR#2020 by Mikk Margus Möll).
Expand Down Expand Up @@ -66,9 +62,9 @@ CHANGELOG
- Fix management actions (start/stop/status/reload/restart) for groups (PR#2086 by Sebastian Wagner, fixes #2085).
- Do not use hardcoded logging path in `/opt/intelmq`, use the internal default instead (PR#2092 by Sebastian Wagner, fixes #2091).

### Contrib

### Known issues
See [open bug reports](https://github.com/certtools/intelmq/issues?q=is%3Aissue+is%3Aopen+label%3Abug) for a more detailed list.
- ParserBot: erroneous raw line recovery in error handling (#1850).


3.0.0 (2021-07-02)
Expand Down
15 changes: 1 addition & 14 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,12 @@ NEWS
This file lists all changes which have an affect on the administration of IntelMQ and contains steps that you need to be aware off for the upgrade.
Please refer to the changelog for a full list of changes.

3.0.1 Maintenance release (unreleased)
3.0.1 Maintenance release (2021-09-02)
--------------------------------------


### Requirements

### Tools

### Bots
The malwardomains parser bot was removed. The malwaredomains.com website is offline, therefore the parser can not be used anymore. The `intelmqctl upgrade-config` command warns if you have the feed and the bot in use.

### Data Format

### Configuration

### Libraries

### Postgres databases


3.0.0 Major release (2021-07-02)
--------------------------------
Expand Down
4 changes: 2 additions & 2 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
intelmq (3.0.1~beta1-1) UNRELEASED; urgency=medium
intelmq (3.0.1-1) stable; urgency=medium

* Update to 3.0.1.

-- Sebastian Wagner <wagner@cert.at> Fri, 02 Jul 2021 18:46:36 +0200
-- Sebastian Wagner <wagner@cert.at> Thu, 02 Sep 2021 10:17:30 +0200

intelmq (3.0.0-1) stable; urgency=medium

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, 0, 1, 'beta1')
__version_info__ = (3, 0, 1)
__version__ = '.'.join(map(str, __version_info__))

0 comments on commit 4e2039c

Please sign in to comment.