Skip to content

Commit 776d091

Browse files
author
Sebastian Wagner
committed
REL: Release version 2.2.0
1 parent e99322c commit 776d091

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@ CHANGELOG
22
=========
33

44

5-
2.2.0 (unreleased)
5+
2.2.0 (2020-06-23)
66
------------------
77
This IntelMQ Manager version requires IntelMQ >= 2.2.0.
88

99
### Backend
1010
- `config`: Get file paths from `intelmctl debug --get-paths` if possible and fall back to hard-coded paths otherwise. Thereby environment variables influencing the paths are respected (#193).
1111

12+
### Pages
1213
#### About
1314
- Show output of `intelmqctl debug`.
1415

NEWS.md

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

66

7-
2.2.0 (unreleased)
7+
2.2.0 (2020-06-23)
88
------------------
99
This IntelMQ Manager version requires IntelMQ >= 2.2.0.
1010

1111
### Paths
12-
The paths for configuration files is not queried from the IntelMQ Core.
13-
The environment variables `INTELMQ_ROOT_DIR` and `INTELMQ_PATHS_NO_OPT`/`INTELMQ_PATHS_OPT` are now respected.
12+
The paths for configuration files are queried from the IntelMQ Core.
13+
Thus, the environment variables `INTELMQ_ROOT_DIR` and `INTELMQ_PATHS_NO_OPT`/`INTELMQ_PATHS_OPT` are now respected.
1414

1515

1616
2.1.1 (2020-04-27)

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.0-1) stable; urgency=medium
2+
3+
* Update to 2.2.0.
4+
5+
-- Sebastian Wagner <[email protected]> Tue, 23 Jun 2020 10:46:42 +0200
6+
17
intelmq-manager (2.2.0~alpha1-1) unstable; urgency=medium
28

39
* Update to 2.2.0 alpha 1.

debian/patches/fix-paths.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
1616
// to be displayed so that user can replicate
1717
@@ -16,17 +16,17 @@
1818
$BOT_ID_REJECT_REGEX = '/[^A-Za-z0-9.-]/';
19-
$VERSION = "2.2.0a1";
19+
$VERSION = "2.2.0";
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.

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.0a1";
17+
$VERSION = "2.2.0";
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)