Skip to content

Commit abe49d2

Browse files
author
Sebastian Wagner
committed
REL: 2.2.1 Bugfix release
1 parent be4b8ad commit abe49d2

File tree

5 files changed

+17
-27
lines changed

5 files changed

+17
-27
lines changed

CHANGELOG.md

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,38 +2,24 @@ CHANGELOG
22
=========
33

44

5-
2.2.1 (unreleased)
5+
2.2.1 (2020-07-30)
66
------------------
77
This IntelMQ Manager version requires IntelMQ >= 2.2.1.
88

99
### Backend
1010
- Fix loading paths from `intelmqctl` executable (PR #205 by Einar Felipe Lanfranco).
1111

12-
### Pages
13-
14-
#### Landing page
15-
16-
#### Configuration
17-
18-
#### Management
19-
20-
#### Monitor
21-
22-
#### Check
23-
2412
### Documentation
2513
- User Guide:
2614
- Add section on configuration paths.
2715
- Add section on named queues / paths.
2816
- Readme:
2917
- Update screenshots (#201, PR#207 by Mladen Markovic).
3018

31-
### Third-party libraries
32-
33-
### Packaging
34-
3519
### Known issues
36-
20+
* Graph jumps around on "Add edge" (#148).
21+
* wrong error message for new bots with existing ID (#152).
22+
* Monitor page: Automatic log refresh reset log page to first one (#190).
3723

3824
2.2.0 (2020-06-23)
3925
------------------

NEWS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ NEWS
44
See the changelog for a full list of changes.
55

66

7-
2.2.1 (unreleased)
7+
2.2.1 (2020-07-30)
88
------------------
9-
9+
This IntelMQ Manager version requires IntelMQ >= 2.2.1.
1010

1111
2.2.0 (2020-06-23)
1212
------------------

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
intelmq-manager (2.2.1-1) stable; urgency=medium
2+
3+
* Update to version 2.2.1.
4+
5+
-- Sebastian Wagner <[email protected]> Thu, 30 Jul 2020 17:52:49 +0200
6+
17
intelmq-manager (2.2.0-1) stable; urgency=medium
28

39
* Update to 2.2.0.

debian/patches/fix-paths.patch

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Description: Fix paths for LSB
22
Author: Sebastian Wagner <[email protected]>
3-
Last-Update: 2020-04-28
3+
Last-Update: 2020-07-30
44
---
55
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
66
--- a/intelmq-manager/php/config.php 2020-04-28 15:17:27.858979961 +0200
@@ -14,9 +14,9 @@ This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
1414
}
1515

1616
// to be displayed so that user can replicate
17-
@@ -16,17 +16,17 @@
17+
@@ -16,16 +16,16 @@
1818
$BOT_ID_REJECT_REGEX = '/[^A-Za-z0-9.-]/';
19-
$VERSION = "2.2.1a1";
19+
$VERSION = "2.2.1";
2020

2121
- $ALLOWED_PATH = "/opt/intelmq/var/lib/bots/"; // PHP is allowed to fetch the config files from the current location in order to display bot configurations.
2222
+ $ALLOWED_PATH = "/var/lib/intelmq/bots/"; // PHP is allowed to fetch the config files from the current location in order to display bot configurations.
@@ -28,15 +28,13 @@ This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
2828
- 'harmonization' => '/opt/intelmq/etc/harmonization.conf',
2929
- 'pipeline' => '/opt/intelmq/etc/pipeline.conf',
3030
- 'runtime' => '/opt/intelmq/etc/runtime.conf',
31-
- 'system' => '/opt/intelmq/etc/system.conf',
3231
- 'positions' => '/opt/intelmq/etc/manager/positions.conf',
3332
+ 'bots' => '/etc/intelmq/BOTS',
3433
+ 'defaults' => '/etc/intelmq/defaults.conf',
3534
+ 'harmonization' => '/etc/intelmq/harmonization.conf',
3635
+ 'pipeline' => '/etc/intelmq/pipeline.conf',
3736
+ 'runtime' => '/etc/intelmq/runtime.conf',
38-
+ 'system' => '/etc/intelmq/system.conf',
3937
+ 'positions' => '/etc/intelmq/manager/positions.conf',
4038
);
4139
# get paths from intelmqctl directly if it works
42-
$proc = proc_open($c . "--type json debug --get-paths", [
40+
$proc = proc_open(sprintf($CONTROLLER_JSON, "debug --get-paths"), [

intelmq-manager/php/config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
$BOT_CONFIGS_REJECT_REGEX = '/[^[:print:]\n\r\t]/';
1616
$BOT_ID_REJECT_REGEX = '/[^A-Za-z0-9.-]/';
17-
$VERSION = "2.2.1a1";
17+
$VERSION = "2.2.1";
1818

1919
$ALLOWED_PATH = "/opt/intelmq/var/lib/bots/"; // PHP is allowed to fetch the config files from the current location in order to display bot configurations.
2020
$FILESIZE_THRESHOLD = 2000; // config files under this size gets loaded automatically; otherwise a link is generated

0 commit comments

Comments
 (0)