Skip to content

Commit b163992

Browse files
authored
Merge pull request #171 from bugsnag/release-v3.6.3
Release v3.6.3
2 parents 81abe4c + 2c02486 commit b163992

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 3.6.3 (2021-10-12)
4+
5+
* Bump Jackson from 2.9.1 for critical vulnerability fixes
6+
[#170](https://github.com/bugsnag/bugsnag-java/pull/170)
7+
38
## 3.6.2 (2020-11-10)
49

510
* Fix JVM hang when System.exit or bugsnag.close is not called

bugsnag/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repositories {
1010
}
1111

1212
dependencies {
13-
compile "com.fasterxml.jackson.core:jackson-databind:2.9.1"
13+
compile "com.fasterxml.jackson.core:jackson-databind:2.12.5"
1414
compile "org.slf4j:slf4j-api:1.7.25"
1515
compileOnly "javax.servlet:javax.servlet-api:${servletApiVersion}"
1616
compileOnly("ch.qos.logback:logback-classic:${logbackVersion}") {

bugsnag/src/main/java/com/bugsnag/Notifier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
class Notifier {
66

77
private static final String NOTIFIER_NAME = "Bugsnag Java";
8-
private static final String NOTIFIER_VERSION = "3.6.2";
8+
private static final String NOTIFIER_VERSION = "3.6.3";
99
private static final String NOTIFIER_URL = "https://github.com/bugsnag/bugsnag-java";
1010

1111
private String notifierName = NOTIFIER_NAME;

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=3.6.2
1+
version=3.6.3
22
group=com.bugsnag
33

44
# Default properties

0 commit comments

Comments
 (0)