Skip to content

Commit 5ddba76

Browse files
author
Sebastian Wagner
committed
DOC: 2.3.0 CHANGELOG and NEWS fixes
1 parent 406becb commit 5ddba76

File tree

2 files changed

+18
-23
lines changed

2 files changed

+18
-23
lines changed

CHANGELOG.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -83,17 +83,17 @@ IntelMQ no longer supports Python 3.5 (and thus Debian 9 and Ubuntu 16.04), the
8383
- Added parameter `fallback_to_url` and set to True (PR#1586 by Edvard Rejthar).
8484
- Added parameter `gaierrors_to_ignore` to optionally ignore other `gethostbyname` errors (#1553).
8585
- Added parameter `overwrite` to optionally overwrite existing IP addresses (by Sebastian Wagner).
86-
- `intelmq.bots.experts.asn_lookup.expert`
86+
- `intelmq.bots.experts.asn_lookup.expert`:
8787
- Added `--update-database` option (PR#1524 by Filip Pokorný).
8888
- The script `update-asn-data` is now deprecated and will be removed in version 3.0.
89-
- `intelmq.bots.experts.maxmind_geoip.expert`
89+
- `intelmq.bots.experts.maxmind_geoip.expert`:
9090
- Added `--update-database` option (PR#1524 by Filip Pokorný).
9191
- Added `license_key` parameter (PR#1524 by Filip Pokorný).
9292
- The script `update-geoip-data` is now deprecated and will be removed in version 3.0.
93-
- `intelmq.bots.experts.tor_nodes.expert`
93+
- `intelmq.bots.experts.tor_nodes.expert`:
9494
- Added `--update-database` option (PR#1524 by Filip Pokorný).
9595
- The script `update-tor-nodes` is now deprecated and will be removed in version 3.0.
96-
- `intelmq.bots.experts.recordedfuture_iprisk.expert`
96+
- `intelmq.bots.experts.recordedfuture_iprisk.expert`:
9797
- Added `--update-database` option (PR#1524 by Filip Pokorný).
9898
- Added `api_token` parameter (PR#1524 by Filip Pokorný).
9999
- The script `update-rfiprisk-data` is now deprecated and will be removed in version 3.0.
@@ -144,7 +144,7 @@ IntelMQ no longer supports Python 3.5 (and thus Debian 9 and Ubuntu 16.04), the
144144
- Ignore non-zero exit-codes for the `intelmqctl check` call in postinst (#1748, by Sebastian Wagner).
145145

146146
### Tests
147-
- Added tests for `intelmq.lib.exceptions.PipelineError`.
147+
- Added tests for `intelmq.lib.exceptions.PipelineError` (by Sebastian Wagner).
148148
- `intelmq.tests.bots.collectors.http_collector.test_collector`: Use `requests_mock` to mock all requests and do not require a local webserver (by Sebastian Wagner).
149149
- `intelmq.tests.bots.outputs.restapi.test_output`:
150150
- Use `requests_mock` to mock all requests and do not require a local webserver (by Sebastian Wagner).
@@ -172,7 +172,7 @@ IntelMQ no longer supports Python 3.5 (and thus Debian 9 and Ubuntu 16.04), the
172172
### Contrib
173173
- EventDB:
174174
- Add SQL script for keeping track of the oldest inserted/update "time.source" information (by Sebastian Wagner).
175-
- Cron Jobs: The script `intelmq-update-data` has been renamed to `intelmq-update-database`.
175+
- Cron Jobs: The script `intelmq-update-data` has been renamed to `intelmq-update-database` (by Filip Pokorný).
176176
- Dropped utterly outdated contrib modules (by Sebastian Wagner):
177177
- ansible
178178
- vagrant
@@ -182,7 +182,7 @@ IntelMQ no longer supports Python 3.5 (and thus Debian 9 and Ubuntu 16.04), the
182182
- Set file permissions to `0644` (by Sebastian Wagner).
183183

184184
### Known issues
185-
- Bots started with IntelMQ-API/Manager stop when the webserver is restarted #952.
185+
- Bots started with IntelMQ-API/Manager stop when the webserver is restarted (#952).
186186
- Corrupt dump files when interrupted during writing (#870).
187187
- CSV line recovery forces Windows line endings (#1597).
188188
- intelmqdump: Honor logging_path variable (#1605).

NEWS.md

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
11
NEWS
22
====
33

4-
See the changelog for a full list of changes.
4+
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.
5+
Please refer to the changelog for a full list of changes.
56

67
2.3.0 Bugfix release (unreleased)
78
----------------------------------
89

9-
The documentation is now available at [intelmq.readthedocs.io](https://intelmq.readthedocs.io/) (FIXME: Link to stable version?).
10+
The documentation is now available at [intelmq.readthedocs.io](https://intelmq.readthedocs.io/).
1011

1112
### Requirements
1213
IntelMQ no longer supports Python 3.5 (and thus Debian 9 and Ubuntu 16.04), the minimum supported Python version is 3.6.
13-
CentOS 7 (with EPEL) provides both Python 3.4 and Python 3.6. If IntelMQ was installed with Python 3.4, the code needs to be re-installed with Python 3.6 and removed for Python 3.4. Application data is compatible. To install the Python 3.6 packages, use: `yum install python36 python36-devel python36-requests`.
14-
15-
### Tools
14+
CentOS 7 (with EPEL) provides both Python 3.4 and Python 3.6. If IntelMQ was installed manually with Python 3.4, the code needs to be re-installed with Python 3.6 and removed for Python 3.4. Application data is compatible. To install the Python 3.6 packages, use: `yum install python36 python36-devel python36-requests`.
1615

1716
### Bots
1817

1918
#### Bot option `--update-database`
2019
- Bots that require a database file (such as `maxmind_geoip`, `asn_lookup`, `tor_nodes` and `recordedfuture_iprisk`)
21-
have new command line option `--update-database`. It is not necessary to specify a
20+
have a new command line option `--update-database`. It is not necessary to specify a
2221
bot ID, the function automatically updates the database for all the bots of the same
2322
type and reloads them afterwards. Removes any external dependencies (such as curl or wget).
2423
This is a replacement for shell scripts such as `update-tor-nodes`, `update-asn-data`,
@@ -41,7 +40,7 @@ If you depend on this bot, please reach out to us via the mailing list or GitHub
4140
The bots are logging a deprecation warning now and the current plan is to remove them in IntelMQ version 3.0.
4241

4342
#### Shadowserver Bots
44-
The Shadowserver Collector is now able to collect data from the [Shadowserver Reports API](https://intelmq.readthedocs.io/en/latest/user/bots.html#shadowserver-reports-api). Moreover the Shadowserver Parser now supports the JSON format used by the Reports API.
43+
The Shadowserver Collector is now able to collect data from the [Shadowserver Reports API](https://intelmq.readthedocs.io/en/maintenance/user/bots.html#shadowserver-reports-api). Moreover the Shadowserver Parser now supports the JSON format used by the Reports API.
4544

4645
#### Sieve Expert
4746
Sieve-Expert is now capable of basic math operations & you can do actions without any `if` statements.
@@ -51,16 +50,14 @@ Sieve-Expert is now capable of basic math operations & you can do actions withou
5150
add time.observation += '1 hour'
5251
add time.observation -= '10 hours'
5352
```
54-
2. Actions can now be used without an `if` statement, just write the following into a `.sieve` file
53+
2. Actions can now be used without an `if` statement, just write the following into a `.sieve` file:
5554
```
5655
add comment = "Adding this to all computed events"
5756
```
58-
More details can be found in our [documentation](https://intelmq.readthedocs.io/en/latest/user/bots.html#sieve).
57+
More details can be found in our [documentation](https://intelmq.readthedocs.io/en/maintenance/user/bots.html#sieve).
5958

6059
#### Kafka Collector
61-
Now you're able to fetch data from Kafka with the [Kafka Collector](https://intelmq.readthedocs.io/en/latest/user/bots.html#kafka).
62-
63-
### Harmonization
60+
Now you're able to fetch data from Kafka with the [Kafka Collector](https://intelmq.readthedocs.io/en/maintenance/user/bots.html#kafka).
6461

6562
### Configuration
6663
#### Abuse.ch URLHaus feed
@@ -69,12 +66,10 @@ The correct name for the parameter "delimeter" is "delimiter". Please fix your c
6966
The `intelmqctl upgrade-config` command automatically fixes a configuration if the misspelling is detected.
7067

7168
#### IntelMQ-Manager -> IntelMQ-API
72-
`IntelMQ-Manager` PHP backend is getting replaced by the newly developed `IntelMQ-API`. The `IntelMQ-Manager` release only contains the files for the web frontend. The `IntelMQ-Manager` packages now depend or recommend the installation of the `IntelMQ-API` package, therefore a normal upgrade should pull in the API. Follow the instructions in our [documentation](https://intelmq.readthedocs.io/en/latest/user/intelmq-api.html) to configure the API. It uses its own authentication backend now, how to setup users is described in the [documentation](https://intelmq.readthedocs.io/en/latest/user/intelmq-api.html#adding-a-user).
73-
74-
### Libraries
69+
`IntelMQ-Manager` PHP backend is getting replaced by the newly developed `IntelMQ-API`. The `IntelMQ-Manager` release only contains the files for the web frontend. The `IntelMQ-Manager` packages now depend or recommend the installation of the `IntelMQ-API` package, therefore a normal upgrade should pull in the API. Follow the instructions in our [documentation](https://intelmq.readthedocs.io/en/maintenance/user/intelmq-api.html) to configure the API. It uses its own authentication backend now, how to setup users is described in the [documentation](https://intelmq.readthedocs.io/en/maintenance/user/intelmq-api.html#adding-a-user).
7570

7671
### Postgres databases
77-
There was a spelling error in the Spamhaus CERT parser's "event_description.text" texts.
72+
There was a spelling error in the Spamhaus CERT Parser's "event_description.text" texts.
7873
The following statements optionally update existing data.
7974
Please check if you did use these feed names and eventually adapt them for your setup!
8075
```sql

0 commit comments

Comments
 (0)