Skip to content

Commit a683225

Browse files
authored
Merge pull request #20 from opsgenie/update-vulnerable-libraries
update jackson-databind version
2 parents 0a20b53 + 0daa49a commit a683225

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

pom.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.opsgenie.plugin.graylog</groupId>
88
<artifactId>opsgenie-graylog-alarmcallback</artifactId>
9-
<version>1.3.10-RELEASE</version>
9+
<version>1.3.11-RELEASE</version>
1010
<packaging>jar</packaging>
1111

1212
<name>${project.artifactId}</name>
@@ -58,12 +58,16 @@
5858
<artifactId>*</artifactId>
5959
<groupId>io.netty</groupId>
6060
</exclusion>
61+
<exclusion>
62+
<artifactId>snakeyaml</artifactId>
63+
<groupId>org.yaml</groupId>
64+
</exclusion>
6165
</exclusions>
6266
</dependency>
6367
<dependency>
6468
<groupId>com.fasterxml.jackson.core</groupId>
6569
<artifactId>jackson-databind</artifactId>
66-
<version>2.10.0</version>
70+
<version>2.10.5.1</version>
6771
</dependency>
6872
</dependencies>
6973

src/main/java/com/opsgenie/plugin/graylog/OpsGenieAlarmCallbackMetaData.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public URI getURL() {
3131

3232
@Override
3333
public Version getVersion() {
34-
return new Version(1, 3, 10, "RELEASE");
34+
return new Version(1, 3, 11, "RELEASE");
3535
}
3636

3737
@Override

0 commit comments

Comments
 (0)