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/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** 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", 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;