Skip to content

Commit 6649d99

Browse files
author
Sebastian Wagner
committed
REL: 3.0.1 Bugfix release
1 parent addab55 commit 6649d99

File tree

5 files changed

+17
-15
lines changed

5 files changed

+17
-15
lines changed

CHANGELOG.md

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,12 @@ CHANGELOG
88
=========
99

1010

11-
3.0.1 (unreleased)
11+
3.0.1 (2021-09-02)
1212
------------------
1313

1414
### Pages
1515
- Login: Show error messages as returned from the API instead of a constant string (PR#277 by Sebastian Wagner, fixes intelmq-api#35).
1616

17-
#### Landing page
1817
#### Configuration
1918
- Fix working with edges between bots, by transmitting new edges to the server with the new API (PR#264 by Mikk Margus Möll).
2019
- Correctly hide the `destination_queues` parameter in the bot editor (PR#264 by Mikk Margus Möll).
@@ -30,20 +29,17 @@ CHANGELOG
3029
- Prohibit the user from creating a bot with an ID collision (PR#276 by Mikk Margus Möll, fixes #152).
3130
- Ask the user for confirmation to exit the page in case of unsaved changes (PR#276 by Mikk Margus Möll, fixes #212)
3231

33-
#### Management
34-
3532
#### Monitor
3633
- `ALLOWED_PATH` and `CONTROLLER_CMD` are defined in a separate JavaScript file, rather than being templated into the HTML, fixing Content-Security-Policy issues (PR#264 by Mikk Margus Möll, fixes #183).
3734

38-
#### Check
39-
40-
### Documentation
41-
42-
### Third-party libraries
43-
44-
### Packaging
4535

4636
### Known issues
37+
- Graph jumps around on "Add edge" (#148).
38+
- Monitor page: Automatic log refresh reset log page to first one (#190).
39+
- Load error if a bot has not optional `parameters` field in runtime configuration (#237).
40+
- Better error message for missing authentication (#238).
41+
- Configuration page: Keyboard shortcuts don't work (#260).
42+
- Edit Defaults: Documentation link just reloads (#261).
4743

4844

4945
3.0.0 (2021-07-02)

NEWS.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ NEWS
1010
See the changelog for a full list of changes.
1111

1212

13+
3.0.1 (2021-09-02)
14+
------------------
15+
16+
Clear the browser cache for your IntelMQ instance (in Firefox: Ctrl+Shift+R).
17+
18+
1319
3.0.0 (2021-07-02)
1420
------------------
1521

debian/changelog

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
intelmq-manager (3.0.1~beta1-1) UNRELEASED; urgency=medium
1+
intelmq-manager (3.0.1-1) stable; urgency=medium
22

33
* Update to 3.0.1.
44

5-
-- Sebastian Wagner <[email protected]> Fri, 02 Jul 2021 19:08:20 +0200
5+
-- Sebastian Wagner <[email protected]> Thu, 02 Sep 2021 15:21:47 +0200
66

77
intelmq-manager (3.0.0-1) stable; urgency=medium
88

intelmq_manager/static/js/about.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function get_versions() {
1212
.done(function (data) {
1313
intelmq_version_element.innerHTML = data.intelmq;
1414
intelmq_api_version_element.innerHTML = data['intelmq-api'];
15-
intelmq_manager_version_element.innerHTML = '3.1.0alpha1';
15+
intelmq_manager_version_element.innerHTML = '3.0.1';
1616
})
1717
.fail(function (jqxhr, textStatus, error) {
1818
let err = `${textStatus}, ${error}`;

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-2021 Intelmq Team <[email protected]>
44
SPDX-License-Identifier: AGPL-3.0-or-later
55
"""
6-
__version_info__ = (3, 0, 1, 'beta1')
6+
__version_info__ = (3, 0, 1)
77
__version__ = '.'.join(map(str, __version_info__))

0 commit comments

Comments
 (0)