From 4b868009b877c4ccfff4663c9a33ff214144a144 Mon Sep 17 00:00:00 2001 From: Pranitha P Shetty Date: Wed, 19 Aug 2026 10:48:06 +0530 Subject: [PATCH 1/2] Bump version --- sample/dependencies.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sample/dependencies.gradle.kts b/sample/dependencies.gradle.kts index afe45a4..d51040b 100644 --- a/sample/dependencies.gradle.kts +++ b/sample/dependencies.gradle.kts @@ -1,4 +1,4 @@ -val sdk_version = "2.3.12" +val sdk_version = "2.3.13" extra["versions"] = mapOf( "androidx.core" to "androidx.core:core-ktx:1.9.0", From 874dbed43b9e8b1d8a6d99f34ef8e42ed99d0c22 Mon Sep 17 00:00:00 2001 From: Pranitha P Shetty Date: Wed, 19 Aug 2026 10:48:26 +0530 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e0eb9d..99779aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ 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.13 + +### Changed +- For apps that opt into `alwaysUseRemoteConfig(false)`, a version filter change now applies to a running session on the next background config refresh, ending the session and discarding its captured data. By default, filter changes still take effect only when the next session starts, and no in-progress session or its data is affected. +- The SDK version filter now suppresses all capture for an excluded version — session replay, crash, and ANR — where previously it suppressed only session replay. No session is started for an excluded version, so `DevRev.isRecording` now reports `false` for it, where it previously reported `true`. +- Invalid or incomplete filter rules are now applied as configured instead of being ignored, so a malformed allowlist or blocklist can stop recording where it previously recorded every version. +- The SDK version filter now matches version values with one or two components (such as `2` or `2.3`), not only full `x.y.z` values. + ## 2.3.12 ### Added