From 939c01b1802a1e2c5c09e1894c14339ccd8ebb2f Mon Sep 17 00:00:00 2001 From: Aman Jain Date: Tue, 28 Jul 2026 13:21:42 +0530 Subject: [PATCH 1/2] Update changelog and bump version Co-Authored-By: Claude Opus 4.8 --- CHANGELOG.md | 15 +++++++++++++++ sample/dependencies.gradle.kts | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d6c10e7..2f91722 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 2.3.12 + +### Added +- Added an SDK version filter for session replay, allowing replay to be enabled or disabled for specific SDK versions from the dashboard. Crash and ANR capture continue to work while replay is suppressed; note that the session-started listener callback does not fire in that state. + +### Security +- Hardened the PLuG support widget against being launched by other apps. + +### Fixed +- Fixed a main-thread deadlock when resolving external masks with Flutter. +- Fixed a crash in the screenshot capturer caused by a recycled bitmap on cancel. +- Fixed a stale identity issue across organizations on cold start. +- Fixed an ANR caused by a slow crash handler. +- Fixed an issue with mask coordinate clipping. + ## 2.3.11 ### Fixed diff --git a/sample/dependencies.gradle.kts b/sample/dependencies.gradle.kts index d47693f..afe45a4 100644 --- a/sample/dependencies.gradle.kts +++ b/sample/dependencies.gradle.kts @@ -1,4 +1,4 @@ -val sdk_version = "2.3.11" +val sdk_version = "2.3.12" extra["versions"] = mapOf( "androidx.core" to "androidx.core:core-ktx:1.9.0", From fb1444d3b323c16ca3248495113f2e38a820b651 Mon Sep 17 00:00:00 2001 From: Aman Jain Date: Tue, 28 Jul 2026 15:29:46 +0530 Subject: [PATCH 2/2] Move security entry to Fixed section per keepachangelog format Co-Authored-By: Claude Sonnet 4.6 --- CHANGELOG.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f91722..3e0eb9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,10 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Added an SDK version filter for session replay, allowing replay to be enabled or disabled for specific SDK versions from the dashboard. Crash and ANR capture continue to work while replay is suppressed; note that the session-started listener callback does not fire in that state. -### Security -- Hardened the PLuG support widget against being launched by other apps. - ### Fixed +- Hardened the PLuG support widget against being launched by other apps. - Fixed a main-thread deadlock when resolving external masks with Flutter. - Fixed a crash in the screenshot capturer caused by a recycled bitmap on cancel. - Fixed a stale identity issue across organizations on cold start.