From d49504c72b9aa661f0d3ab431d1d4a349dfc6efa Mon Sep 17 00:00:00 2001 From: Tomas Psota Date: Tue, 20 Feb 2024 13:50:00 +0100 Subject: [PATCH 1/3] fix(iOS): fix app crash on deviceID --- src/index.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index ac72595..f365751 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -89,6 +89,9 @@ export const setThreatListeners = async ( case Threat.ObfuscationIssues.value: config.obfuscationIssues?.(); break; + case Threat.DeviceID.value: + config.deviceID?.(); + break; default: onInvalidCallback(); break; From 5f0313b554fba6f3a375fcb8d4b72a6994cc60b1 Mon Sep 17 00:00:00 2001 From: Tomas Psota Date: Tue, 20 Feb 2024 13:50:09 +0100 Subject: [PATCH 2/3] docs: update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f7e3d52..1b69751 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ freeRASP React Native plugin uses Pods. Navigate to the `ios` folder and run: $ pod install -**IMPORTANT:** If you are upgrading from a previous version of freeRASP, please remove the old TalsecRuntime.xcframework and integration script from your project: +**IMPORTANT:** If you are upgrading from version 1.x.x, please remove the old TalsecRuntime.xcframework and integration script from your project: 1. Open up the **.xcworkspace** file 1. Go to **Target -> Build Phases -> Link Binary With Libraries** From 4c36d2b40c9f7c597a65beb8dcc97c4306ca1658 Mon Sep 17 00:00:00 2001 From: Tomas Psota Date: Tue, 20 Feb 2024 13:50:31 +0100 Subject: [PATCH 3/3] chore(release): freeRASP 3.6.1 --- CHANGELOG.md | 8 ++++++++ package.json | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 920adf9..f2afded 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# freeRASP 3.6.1 + +- 📄 Documentation updates + +### iOS + +- ⚡ Fixed bug that caused app being killed in specific situations ([#42](https://github.com/talsec/Free-RASP-ReactNative/issues/42)) + # freeRASP 3.6.0 - ⚡ Improved reaction obfuscation diff --git a/package.json b/package.json index a9f5882..b063ab3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "freerasp-react-native", - "version": "3.6.0", + "version": "3.6.1", "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",