Skip to content
This repository was archived by the owner on Apr 3, 2025. It is now read-only.

Commit c6edf43

Browse files
release 2.6.0 (#822)
1 parent 8d8e447 commit c6edf43

File tree

25 files changed

+71
-59
lines changed

25 files changed

+71
-59
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.6.0] - 2022-12-15
9+
10+
- Fixing error messages in Siembol UI
11+
- Improved initialisation in Siembol response
12+
- Reworking configuration testing in config editor rest module
13+
- Adding numeric compare matcher in Siembol alerting
14+
- Sending correlated alerts after matching in Siembol correlation alerting
15+
- Minor refactoring of Siembol monitoring
16+
- Adding javadoc to Siembol java modules
17+
- Upgrading ngx-formly dependency to version 6.0.2 in Siembol UI
18+
19+
820
## [2.5.0] - 2022-06-30
921

1022
- Adding siembol-monitoring module with siembol-heartbeat service

alerting/alerting-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>uk.co.gresearch.siembol</groupId>
1313
<artifactId>alerting</artifactId>
14-
<version>2.6.7-SNAPSHOT</version>
14+
<version>2.6.0</version>
1515
</parent>
1616
<dependencies>
1717
<dependency>
@@ -35,7 +35,7 @@
3535
<dependency>
3636
<groupId>uk.co.gresearch.siembol</groupId>
3737
<artifactId>siembol-common</artifactId>
38-
<version>2.6.7-SNAPSHOT</version>
38+
<version>2.6.0</version>
3939
</dependency>
4040
<dependency>
4141
<groupId>junit</groupId>

alerting/alerting-spark/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>uk.co.gresearch.siembol</groupId>
1313
<artifactId>alerting</artifactId>
14-
<version>2.6.7-SNAPSHOT</version>
14+
<version>2.6.0</version>
1515
</parent>
1616
<dependencies>
1717
<dependency>
@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>uk.co.gresearch.siembol</groupId>
2525
<artifactId>alerting-core</artifactId>
26-
<version>2.6.7-SNAPSHOT</version>
26+
<version>2.6.0</version>
2727
<exclusions>
2828
<exclusion>
2929
<artifactId>jackson-databind</artifactId>

alerting/alerting-storm/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>uk.co.gresearch.siembol</groupId>
1111
<artifactId>alerting</artifactId>
12-
<version>2.6.7-SNAPSHOT</version>
12+
<version>2.6.0</version>
1313
</parent>
1414
<dependencies>
1515
<dependency>
@@ -51,7 +51,7 @@
5151
<dependency>
5252
<groupId>uk.co.gresearch.siembol</groupId>
5353
<artifactId>alerting-core</artifactId>
54-
<version>2.6.7-SNAPSHOT</version>
54+
<version>2.6.0</version>
5555
<exclusions>
5656
<exclusion>
5757
<groupId>org.slf4j</groupId>

alerting/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>uk.co.gresearch.siembol</groupId>
1313
<artifactId>siembol</artifactId>
14-
<version>2.6.7-SNAPSHOT</version>
14+
<version>2.6.0</version>
1515
</parent>
1616
<modules>
1717
<module>alerting-core</module>

config-editor/config-editor-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
<parent>
1010
<groupId>uk.co.gresearch.siembol</groupId>
1111
<artifactId>config-editor</artifactId>
12-
<version>2.6.7-SNAPSHOT</version>
12+
<version>2.6.0</version>
1313
</parent>
1414
<dependencies>
1515
<dependency>
1616
<groupId>uk.co.gresearch.siembol</groupId>
1717
<artifactId>siembol-common</artifactId>
18-
<version>2.6.7-SNAPSHOT</version>
18+
<version>2.6.0</version>
1919
</dependency>
2020
<dependency>
2121
<groupId>org.apache.commons</groupId>

config-editor/config-editor-rest/pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>uk.co.gresearch.siembol</groupId>
1111
<artifactId>config-editor</artifactId>
12-
<version>2.6.7-SNAPSHOT</version>
12+
<version>2.6.0</version>
1313
</parent>
1414
<dependencyManagement>
1515
<dependencies>
@@ -56,7 +56,7 @@
5656
<dependency>
5757
<groupId>uk.co.gresearch.siembol</groupId>
5858
<artifactId>siembol-common</artifactId>
59-
<version>2.6.7-SNAPSHOT</version>
59+
<version>2.6.0</version>
6060
<exclusions>
6161
<exclusion>
6262
<groupId>org.slf4j</groupId>
@@ -67,22 +67,22 @@
6767
<dependency>
6868
<groupId>uk.co.gresearch.siembol</groupId>
6969
<artifactId>config-editor-core</artifactId>
70-
<version>2.6.7-SNAPSHOT</version>
70+
<version>2.6.0</version>
7171
</dependency>
7272
<dependency>
7373
<groupId>uk.co.gresearch.siembol</groupId>
7474
<artifactId>config-editor-services</artifactId>
75-
<version>2.6.7-SNAPSHOT</version>
75+
<version>2.6.0</version>
7676
</dependency>
7777
<dependency>
7878
<groupId>uk.co.gresearch.siembol</groupId>
7979
<artifactId>config-editor-sync</artifactId>
80-
<version>2.6.7-SNAPSHOT</version>
80+
<version>2.6.0</version>
8181
</dependency>
8282
<dependency>
8383
<groupId>uk.co.gresearch.siembol</groupId>
8484
<artifactId>alerting-core</artifactId>
85-
<version>2.6.7-SNAPSHOT</version>
85+
<version>2.6.0</version>
8686
<exclusions>
8787
<exclusion>
8888
<groupId>org.slf4j</groupId>
@@ -93,7 +93,7 @@
9393
<dependency>
9494
<groupId>uk.co.gresearch.siembol</groupId>
9595
<artifactId>parsing-app</artifactId>
96-
<version>2.6.7-SNAPSHOT</version>
96+
<version>2.6.0</version>
9797
<exclusions>
9898
<exclusion>
9999
<groupId>org.slf4j</groupId>
@@ -104,7 +104,7 @@
104104
<dependency>
105105
<groupId>uk.co.gresearch.siembol</groupId>
106106
<artifactId>enriching-core</artifactId>
107-
<version>2.6.7-SNAPSHOT</version>
107+
<version>2.6.0</version>
108108
<exclusions>
109109
<exclusion>
110110
<groupId>org.slf4j</groupId>
@@ -115,7 +115,7 @@
115115
<dependency>
116116
<groupId>uk.co.gresearch.siembol</groupId>
117117
<artifactId>responding-core</artifactId>
118-
<version>2.6.7-SNAPSHOT</version>
118+
<version>2.6.0</version>
119119
<exclusions>
120120
<exclusion>
121121
<groupId>org.slf4j</groupId>

config-editor/config-editor-services/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>uk.co.gresearch.siembol</groupId>
1212
<artifactId>config-editor</artifactId>
13-
<version>2.6.7-SNAPSHOT</version>
13+
<version>2.6.0</version>
1414
</parent>
1515
<dependencies>
1616
<dependency>
@@ -41,32 +41,32 @@
4141
<dependency>
4242
<groupId>uk.co.gresearch.siembol</groupId>
4343
<artifactId>siembol-common</artifactId>
44-
<version>2.6.7-SNAPSHOT</version>
44+
<version>2.6.0</version>
4545
</dependency>
4646
<dependency>
4747
<groupId>uk.co.gresearch.siembol</groupId>
4848
<artifactId>config-editor-core</artifactId>
49-
<version>2.6.7-SNAPSHOT</version>
49+
<version>2.6.0</version>
5050
</dependency>
5151
<dependency>
5252
<groupId>uk.co.gresearch.siembol</groupId>
5353
<artifactId>alerting-core</artifactId>
54-
<version>2.6.7-SNAPSHOT</version>
54+
<version>2.6.0</version>
5555
</dependency>
5656
<dependency>
5757
<groupId>uk.co.gresearch.siembol</groupId>
5858
<artifactId>parsing-app</artifactId>
59-
<version>2.6.7-SNAPSHOT</version>
59+
<version>2.6.0</version>
6060
</dependency>
6161
<dependency>
6262
<groupId>uk.co.gresearch.siembol</groupId>
6363
<artifactId>enriching-core</artifactId>
64-
<version>2.6.7-SNAPSHOT</version>
64+
<version>2.6.0</version>
6565
</dependency>
6666
<dependency>
6767
<groupId>uk.co.gresearch.siembol</groupId>
6868
<artifactId>responding-core</artifactId>
69-
<version>2.6.7-SNAPSHOT</version>
69+
<version>2.6.0</version>
7070
</dependency>
7171
<dependency>
7272
<groupId>junit</groupId>

config-editor/config-editor-sync/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>uk.co.gresearch.siembol</groupId>
1111
<artifactId>config-editor</artifactId>
12-
<version>2.6.7-SNAPSHOT</version>
12+
<version>2.6.0</version>
1313
</parent>
1414
<dependencies>
1515
<dependency>
@@ -20,17 +20,17 @@
2020
<dependency>
2121
<groupId>uk.co.gresearch.siembol</groupId>
2222
<artifactId>siembol-common</artifactId>
23-
<version>2.6.7-SNAPSHOT</version>
23+
<version>2.6.0</version>
2424
</dependency>
2525
<dependency>
2626
<groupId>uk.co.gresearch.siembol</groupId>
2727
<artifactId>config-editor-core</artifactId>
28-
<version>2.6.7-SNAPSHOT</version>
28+
<version>2.6.0</version>
2929
</dependency>
3030
<dependency>
3131
<groupId>uk.co.gresearch.siembol</groupId>
3232
<artifactId>parsing-app</artifactId>
33-
<version>2.6.7-SNAPSHOT</version>
33+
<version>2.6.0</version>
3434
<scope>provided</scope>
3535
</dependency>
3636
<dependency>

config-editor/config-editor-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rule-editor.ui",
3-
"version": "2.6.7-dev",
3+
"version": "2.6.0",
44
"license": "MIT",
55
"scripts": {
66
"ng": "ng",

config-editor/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>uk.co.gresearch.siembol</groupId>
1313
<artifactId>siembol</artifactId>
14-
<version>2.6.7-SNAPSHOT</version>
14+
<version>2.6.0</version>
1515
</parent>
1616
<modules>
1717
<module>config-editor-core</module>

deployment/siembol-monitoring/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>uk.co.gresearch.siembol</groupId>
1111
<artifactId>siembol</artifactId>
12-
<version>2.6.7-SNAPSHOT</version>
12+
<version>2.6.0</version>
1313
<relativePath>../../pom.xml</relativePath>
1414
</parent>
1515
<dependencyManagement>
@@ -37,7 +37,7 @@
3737
<dependency>
3838
<groupId>uk.co.gresearch.siembol</groupId>
3939
<artifactId>siembol-common</artifactId>
40-
<version>2.6.7-SNAPSHOT</version>
40+
<version>2.6.0</version>
4141
<exclusions>
4242
<exclusion>
4343
<groupId>org.slf4j</groupId>

deployment/storm-topology-manager/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>uk.co.gresearch.siembol</groupId>
1111
<artifactId>siembol</artifactId>
12-
<version>2.6.7-SNAPSHOT</version>
12+
<version>2.6.0</version>
1313
<relativePath>../../pom.xml</relativePath>
1414
</parent>
1515
<dependencyManagement>
@@ -43,7 +43,7 @@
4343
<dependency>
4444
<groupId>uk.co.gresearch.siembol</groupId>
4545
<artifactId>siembol-common</artifactId>
46-
<version>2.6.7-SNAPSHOT</version>
46+
<version>2.6.0</version>
4747
<exclusions>
4848
<exclusion>
4949
<groupId>org.slf4j</groupId>

enriching/enriching-core/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>uk.co.gresearch.siembol</groupId>
1313
<artifactId>enriching</artifactId>
14-
<version>2.6.7-SNAPSHOT</version>
14+
<version>2.6.0</version>
1515
</parent>
1616
<dependencies>
1717
<dependency>
@@ -35,12 +35,12 @@
3535
<dependency>
3636
<groupId>uk.co.gresearch.siembol</groupId>
3737
<artifactId>siembol-common</artifactId>
38-
<version>2.6.7-SNAPSHOT</version>
38+
<version>2.6.0</version>
3939
</dependency>
4040
<dependency>
4141
<groupId>uk.co.gresearch.siembol</groupId>
4242
<artifactId>alerting-core</artifactId>
43-
<version>2.6.7-SNAPSHOT</version>
43+
<version>2.6.0</version>
4444
</dependency>
4545
<dependency>
4646
<groupId>junit</groupId>

enriching/enriching-storm/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>uk.co.gresearch.siembol</groupId>
1111
<artifactId>enriching</artifactId>
12-
<version>2.6.7-SNAPSHOT</version>
12+
<version>2.6.0</version>
1313
</parent>
1414
<dependencies>
1515
<dependency>
@@ -75,7 +75,7 @@
7575
<dependency>
7676
<groupId>uk.co.gresearch.siembol</groupId>
7777
<artifactId>enriching-core</artifactId>
78-
<version>2.6.7-SNAPSHOT</version>
78+
<version>2.6.0</version>
7979
<exclusions>
8080
<exclusion>
8181
<groupId>org.slf4j</groupId>

enriching/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>uk.co.gresearch.siembol</groupId>
1313
<artifactId>siembol</artifactId>
14-
<version>2.6.7-SNAPSHOT</version>
14+
<version>2.6.0</version>
1515
</parent>
1616
<modules>
1717
<module>enriching-core</module>

parsing/parsing-app/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>uk.co.gresearch.siembol</groupId>
1313
<artifactId>parsing</artifactId>
14-
<version>2.6.7-SNAPSHOT</version>
14+
<version>2.6.0</version>
1515
</parent>
1616
<dependencies>
1717
<dependency>
@@ -39,12 +39,12 @@
3939
<dependency>
4040
<groupId>uk.co.gresearch.siembol</groupId>
4141
<artifactId>siembol-common</artifactId>
42-
<version>2.6.7-SNAPSHOT</version>
42+
<version>2.6.0</version>
4343
</dependency>
4444
<dependency>
4545
<groupId>uk.co.gresearch.siembol</groupId>
4646
<artifactId>parsing-core</artifactId>
47-
<version>2.6.7-SNAPSHOT</version>
47+
<version>2.6.0</version>
4848
</dependency>
4949
<dependency>
5050
<groupId>junit</groupId>

parsing/parsing-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>uk.co.gresearch.siembol</groupId>
1313
<artifactId>parsing</artifactId>
14-
<version>2.6.7-SNAPSHOT</version>
14+
<version>2.6.0</version>
1515
</parent>
1616
<dependencies>
1717
<dependency>
@@ -50,7 +50,7 @@
5050
<dependency>
5151
<groupId>uk.co.gresearch.siembol</groupId>
5252
<artifactId>siembol-common</artifactId>
53-
<version>2.6.7-SNAPSHOT</version>
53+
<version>2.6.0</version>
5454
</dependency>
5555
<dependency>
5656
<groupId>joda-time</groupId>

0 commit comments

Comments
 (0)