diff --git a/CHANGELOG.md b/CHANGELOG.md index 24ae38e2..fa0a7eca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 1.3.2 (2018-10-05) + +### Bug fixes + +* Ensure error reports for fatal crashes gets sent + [#77](https://github.com/bugsnag/bugsnag-go/pull/77) + ## 1.3.1 (2018-03-14) ### Bug fixes diff --git a/bugsnag.go b/bugsnag.go index 09bcc39e..0ad85caf 100644 --- a/bugsnag.go +++ b/bugsnag.go @@ -15,7 +15,7 @@ import ( ) // The current version of bugsnag-go. -const VERSION = "1.3.1" +const VERSION = "1.3.2" var once sync.Once var middleware middlewareStack diff --git a/panicwrap.go b/panicwrap.go index 5cab85e8..b5e410fc 100644 --- a/panicwrap.go +++ b/panicwrap.go @@ -22,7 +22,7 @@ func defaultPanicHandler() { defaultNotifier.Config.logf("bugsnag.handleUncaughtPanic: %v", err) } state := HandledState{SeverityReasonUnhandledPanic, SeverityError, true, ""} - Notify(toNotify, state, Configuration{Synchronous: true}) + defaultNotifier.NotifySync(toNotify, true, state) }) if err != nil {