This release adds runtime version data to the report and session payloads, which will show up under the Device tab in the Bugsnag dashboard.
- Ignore Gin unit tests when running against the latest version of Gin on Go versions below 1.10 as Gin has dropped support for these versions. #121
- Introduce runtime version data to the report and session payloads. Additionally adds the OS name to reports. #122
This release adds "access_token"
to the default list of keys to filter and introduces filtering of URL query parameters under the request tab.
- Adds filtering of URL parameters in the request tab of an event. Additionally adds
access_token
to theParamsFilters
by default. #117 Adam Renberg Tamm - Ignore Gin unit tests when running against the latest version of Gin on Go 1.7 as Gin has dropped support for Go 1.6 and Go 1.7. #118
This release re-introduces prioritizing user specified error classes over the inferred error class.
- Fixes a bug introduced in
v1.4.0
wherebugsnag.Notify(err, bugsnag.ErrorClass{Name: "MyCustomErrorClass"})
is not respected. #115
- Testing improvements #105
- Only run full test suite on PRs targeting master
- Test against the latest release of go (currently 1.12) rather than go's unstable master branch
- App engine has not been supported for a while. This release removes the app engine-specific code and tests from the codebase #109.
This release fixes a compilation error on Windows. Due to a missing implementation in the Go library, Windows users may have to send two interrupt signals to interrupt the application. Other signals are unaffected.
Additionally, ensure data sanitisation behaves the same for both request data and metadata.
-
Use the
os
package instead ofsyscall
to re-send signals, assyscall
varies per platform, which caused a compilation error. -
Make sure that all data sanitization using
Config.ParamsFilters
behaves the same. #104 Adam Renberg Tamm
This release is a big non-breaking revamp of the notifier. Most importantly, this release introduces session tracking to Go applications.
As of this release we require that you use Go 1.7 or higher.
- Session tracking to be able to show a stability score in the dashboard. Automatic recording of sessions for net/http, gin, revel, negroni and martini. Automatic capturing of sessions can be disabled using the
AutoCaptureSessions
configuration parameter. - Automatic recording of HTTP request information such as HTTP method, headers, URL and query parameters.
- Migrate report payload version from 3 to 4.
- Improve test coverage and introduce maze runner tests. Simplify integration tests for Negroni, Gin and Martini.
- Deprecate the use of the old
Endpoint
configuration parameter, and allow users of on-premise to configure both the notify endpoint and the sessions endpoint. bugsnag.Notify()
now accepts acontext.Context
object, generally from*http.Request
'sr.Context()
, which Bugsnag can extract session and request information from.- Improve and augment examples (
bugsnag_example_test.go
) for documentation. - Improve example applications (
examples/
directory) to get up and running faster. - Clarify and improve GoDocs.
- Improved serialization performance and safety of the report payload.
- Filter HTTP headers based on the
FiltersParams
. - Revel enhancements:
- Ensure all non-code configuration options are configurable from config file.
- Stop using deprecated logger.
- Attempt to configure a what we can from the revel configuration options.
- Make NotifyReleaseStages work consistently with other notifiers, both for sessions and for reports.
- Also filter out 'authorization' and 'cookie' by default, to match other notifiers.
- Address compile errors test failures that failed the build.
- Don't crash when calling
bugsnag.Notify(nil)
- Other minor bug fixes that came to light after improving test coverage.
- Ensure error reports for fatal crashes gets sent #77
- Add support for Revel v0.18 #63 Cameron Halter
- Track whether an error report was captured automatically
- Add SourceRoot as a configuration option, defaulting to
$GOPATH
- Point osext dependency at upstream, update with fixes
- Improve goroutine panic reporting by sending reports synchronously in the case that a goroutine is about to be cleaned up #52
-
Support custom stack frame implementations alexanderwilling #43
-
Support app.type in error reports Jascha Ephraim #51
- Mend nil pointer panic in metadata Johan Sageryd #46
- Replace empty error class property in reports with "error"
-
Add middleware for Negroni am-manideep #28
-
Support stripping subpackage names Facundo Ferrer #25
-
Support using
ErrorWithCallers
to create a stacktrace for errors Conrad Irwin #35
- Avoid swallowing errors which occur upon delivery
- Fix appengine integration broken by 1.0.3
- Allow any Logger with a Printf method.
- Use bugsnag copies of dependencies to avoid potential link rot
- gofmt/golint/govet docs improvements.