Skip to content

Commit

Permalink
Merge pull request #44 from talsec/fix-deviceid
Browse files Browse the repository at this point in the history
freeRASP 3.6.1
  • Loading branch information
msikyna authored Feb 20, 2024
2 parents 4fe3a34 + 4c36d2b commit d0fe150
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
3 changes: 3 additions & 0 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,9 @@ export const setThreatListeners = async <T extends NativeEventEmitterActions>(
case Threat.ObfuscationIssues.value:
config.obfuscationIssues?.();
break;
case Threat.DeviceID.value:
config.deviceID?.();
break;
default:
onInvalidCallback();
break;
Expand Down

0 comments on commit d0fe150

Please sign in to comment.