Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
# Changelog

## TBD
## 6.20.0 (2025-12-03)

### Enhancements

* Introduced [bugsnag-plugin-android-apphang](bugsnag-plugin-android-apphang) as a configurable alternative to ANR reporting based on heartbeat monitoring
[#2332](https://github.com/bugsnag/bugsnag-android/pull/2332)
* `Configuration.sendLaunchCrashesSynchronously` should result in fewer ANRs as it now calculates its timeout based on `Process.getStartElapsedRealtime` when available
[#2340](https://github.com/bugsnag/bugsnag-android/pull/2340)
* Added `ErrorOptions` and `ErrorCaptureOptions` to allow customisation of the the fields captured by `notify`
[#2328](https://github.com/bugsnag/bugsnag-android/pull/2328)

### Bug fixes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import java.io.IOException
*/
class Notifier @JvmOverloads constructor(
var name: String = "Android Bugsnag Notifier",
var version: String = "6.19.0",
var version: String = "6.20.0",
var url: String = "https://bugsnag.com"
) : JsonStream.Streamable {

Expand Down
2 changes: 1 addition & 1 deletion examples/sdk-app-example/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
activityCompose = "1.8.0"
agp = "8.10.0"
appcompat = "1.6.1"
bugsnag-android = "6.19.0"
bugsnag-android = "6.20.0"
bugsnag-gradle = "0.4.0"
composeBom = "2024.09.00"
coreKtx = "1.16.0"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ org.gradle.jvmargs=-Xmx4096m
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
org.gradle.parallel=true
VERSION_NAME=6.19.0
VERSION_NAME=6.20.0
GROUP=com.bugsnag
POM_SCM_URL=https://github.com/bugsnag/bugsnag-android
POM_SCM_CONNECTION=scm:git@github.com:bugsnag/bugsnag-android.git
Expand Down
Loading