Skip to content

Commit 837efcd

Browse files
author
Sebastian Wagner
committed
REL: 3.0.0 Release candidate 1
1 parent 2dc3a05 commit 837efcd

File tree

4 files changed

+28
-20
lines changed

4 files changed

+28
-20
lines changed

CHANGELOG.md

Lines changed: 22 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
SPDX-FileCopyrightText: 2020 IntelMQ Team
2+
SPDX-FileCopyrightText: 2020-2021 IntelMQ Team
33
44
SPDX-License-Identifier: AGPL-3.0-or-later
55
-->
@@ -11,28 +11,34 @@ CHANGELOG
1111
3.0.0 (unreleased)
1212
------------------
1313

14-
### Backend
15-
1614
### Pages
17-
18-
#### Landing page
15+
- Adapt the manager for the new API (PR#259 by Birger Schacht):
16+
IntelMQ changed the way it handles the configuration of bots, queues and
17+
default values. IntelMQ-API followed this change and now only provides
18+
endpoints for the runtime and the position.
19+
This commit implements this change in the JavaScript code and also
20+
updates various functions to reflect other minor changes (i.e. the bot
21+
id is now called bot_id instead of id).
1922

2023
#### Configuration
21-
- Add a link pointing to the module documentation to the settings overlay of every bot (PR#256)
22-
23-
#### Management
24-
25-
#### Monitor
26-
27-
#### Check
24+
- Add a link pointing to the module documentation to the settings overlay of every bot (PR#256 by Birger Schacht).
25+
- BOTS file uses now correct API endpoint (PR#252 by Sebastian Waldbauer).
2826

2927
### Documentation
30-
31-
### Third-party libraries
32-
33-
### Packaging
28+
- Make project reuse compliant (PR#258 by Birger Schacht, fixes #218):
29+
Add missing license entries to .reuse/dep5 and delete the license files
30+
reuse interprets as `bad` (the copyright is listedn in the dep5 file, so
31+
there is no need for having a separate license file for every
32+
copyright).
3433

3534
### Known issues
35+
- Graph jumps around on "Add edge" (#148).
36+
- wrong error message for new bots with existing ID (#152).
37+
- Monitor page: Automatic log refresh reset log page to first one (#190).
38+
- Load error if a bot has not optional `parameters` field in runtime configuration (#237).
39+
- Better error message for missing authentication (#238).
40+
- Reload page after login (#243).
41+
- Configuration page: Connecting bots broken bug component: configuration (#260).
3642

3743

3844
2.3.1 (2021-03-25)

NEWS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ See the changelog for a full list of changes.
1313
3.0.0 (unreleased)
1414
------------------
1515

16+
No changes are required by administrators.
17+
1618

1719
2.3.1 (2021-03-25)
1820
------------------

debian/changelog

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
intelmq-manager (3.0.0~alpha1-1) UNRELEASED; urgency=medium
1+
intelmq-manager (3.0.0~rc1-1) unstable; urgency=low
22

3-
* Start 3.0.0 development.
3+
* Update to 3.0.0 Release candidate 1.
44

5-
-- Sebastian Wagner <[email protected]> Thu, 04 Mar 2021 14:03:07 +0100
5+
-- Sebastian Wagner <[email protected]> Fri, 25 Jun 2021 12:19:45 +0200
66

77
intelmq-manager (2.3.1-2) stable; urgency=medium
88

intelmq_manager/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
SPDX-FileCopyrightText: 2020 Intelmq Team <[email protected]>
44
SPDX-License-Identifier: AGPL-3.0-or-later
55
"""
6-
__version_info__ = (3, 0, 0, 'alpha1')
6+
__version_info__ = (3, 0, 0, 'rc1')
77
__version__ = '.'.join(map(str, __version_info__))

0 commit comments

Comments
 (0)