Skip to content

Commit d0fe150

Browse files
authored
Merge pull request #44 from talsec/fix-deviceid
freeRASP 3.6.1
2 parents 4fe3a34 + 4c36d2b commit d0fe150

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# freeRASP 3.6.1
2+
3+
- 📄 Documentation updates
4+
5+
### iOS
6+
7+
- ⚡ Fixed bug that caused app being killed in specific situations ([#42](https://github.com/talsec/Free-RASP-ReactNative/issues/42))
8+
19
# freeRASP 3.6.0
210

311
- ⚡ Improved reaction obfuscation

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ freeRASP React Native plugin uses Pods. Navigate to the `ios` folder and run:
106106

107107
$ pod install
108108

109-
**IMPORTANT:** If you are upgrading from a previous version of freeRASP, please remove the old TalsecRuntime.xcframework and integration script from your project:
109+
**IMPORTANT:** If you are upgrading from version 1.x.x, please remove the old TalsecRuntime.xcframework and integration script from your project:
110110

111111
1. Open up the **.xcworkspace** file
112112
1. Go to **Target -> Build Phases -> Link Binary With Libraries**

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "freerasp-react-native",
3-
"version": "3.6.0",
3+
"version": "3.6.1",
44
"description": "React Native plugin for improving app security and threat monitoring on Android and iOS mobile devices.",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",

src/index.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,9 @@ export const setThreatListeners = async <T extends NativeEventEmitterActions>(
8989
case Threat.ObfuscationIssues.value:
9090
config.obfuscationIssues?.();
9191
break;
92+
case Threat.DeviceID.value:
93+
config.deviceID?.();
94+
break;
9295
default:
9396
onInvalidCallback();
9497
break;

0 commit comments

Comments
 (0)