Skip to content

Commit

Permalink
Merge pull request #171 from bugsnag/release-v3.6.3
Browse files Browse the repository at this point in the history
Release v3.6.3
  • Loading branch information
tomlongridge authored Oct 12, 2021
2 parents 81abe4c + 2c02486 commit b163992
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 3.6.3 (2021-10-12)

* Bump Jackson from 2.9.1 for critical vulnerability fixes
[#170](https://github.com/bugsnag/bugsnag-java/pull/170)

## 3.6.2 (2020-11-10)

* Fix JVM hang when System.exit or bugsnag.close is not called
Expand Down
2 changes: 1 addition & 1 deletion bugsnag/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repositories {
}

dependencies {
compile "com.fasterxml.jackson.core:jackson-databind:2.9.1"
compile "com.fasterxml.jackson.core:jackson-databind:2.12.5"
compile "org.slf4j:slf4j-api:1.7.25"
compileOnly "javax.servlet:javax.servlet-api:${servletApiVersion}"
compileOnly("ch.qos.logback:logback-classic:${logbackVersion}") {
Expand Down
2 changes: 1 addition & 1 deletion bugsnag/src/main/java/com/bugsnag/Notifier.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
class Notifier {

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

private String notifierName = NOTIFIER_NAME;
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=3.6.2
version=3.6.3
group=com.bugsnag

# Default properties
Expand Down

0 comments on commit b163992

Please sign in to comment.