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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 6.24.0 (2026-02-11)

### Enhancements

* When configured, the AppHangPlugin can now start taking stack snapshots over time when the monitored thread becomes unresponsive.
[#2372](https://github.com/bugsnag/bugsnag-android/pull/2372)

## 6.23.0 (2026-02-02)

### Enhancements
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.23.0",
var version: String = "6.24.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.23.0"
bugsnag-android = "6.24.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.23.0
VERSION_NAME=6.24.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