diff --git a/CHANGELOG.md b/CHANGELOG.md index 2504779..0588aca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ 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.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.9.2] - 2024-10-18 + +### Android + +#### Fixed +- Reported ANR issues present on some devices were resolved ([GH Flutter issue #138](https://github.com/talsec/Free-RASP-Flutter/issues/138)) +- Reported crashes caused by ConcurrentModificationException and NullPointerException were resolved ([GH Flutter issue #140](https://github.com/talsec/Free-RASP-Flutter/issues/140)) +- Reported crashes caused by the UnsupportedOperationException were resolved + ## [3.9.1] - 2024-09-30 - Android SDK version: 11.1.1 - iOS SDK version: 6.6.0 diff --git a/android/build.gradle b/android/build.gradle index 835c06f..3a6febe 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -87,7 +87,7 @@ dependencies { //noinspection GradleDynamicVersion implementation "com.facebook.react:react-native:$react_native_version" implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" - implementation "com.aheaditec.talsec.security:TalsecSecurity-Community-ReactNative:11.1.1" + implementation "com.aheaditec.talsec.security:TalsecSecurity-Community-ReactNative:11.1.3" } if (isNewArchitectureEnabled()) { diff --git a/package.json b/package.json index e71039b..48f8737 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "freerasp-react-native", - "version": "3.9.1", + "version": "3.9.2", "description": "React Native plugin for improving app security and threat monitoring on Android and iOS mobile devices.", "main": "lib/commonjs/index", "module": "lib/module/index",