Skip to content

Commit 183e59b

Browse files
committed
chore(release): freeRASP 3.8.0
1 parent 24c7b93 commit 183e59b

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# freeRASP 3.8.0
2+
3+
- ⚡ Added new threat `systemVPN` for VPN detection
4+
- 📄 Documentation updates
5+
6+
### Android
7+
8+
- ⚡ Added new threat `devMode` for detecting Developer mode
9+
- ⚡ Fixed proguard warning in specific versions of RN
10+
111
# freeRASP 3.7.2
212

313
- ⚡ Update expo config plugin to fix release build issue in RN 0.73

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,10 @@ const actions = {
222222
console.log('secureHardwareNotAvailable');
223223
},
224224
// Android & iOS
225+
systemVPN: () => {
226+
console.log('systemVPN');
227+
},
228+
// Android & iOS
225229
passcode: () => {
226230
console.log('passcode');
227231
},
@@ -233,6 +237,10 @@ const actions = {
233237
obfuscationIssues: () => {
234238
console.log('obfuscationIssues');
235239
},
240+
// Android only
241+
devMode: () => {
242+
console.log('devMode');
243+
},
236244
};
237245

238246
useFreeRasp(config, actions);
@@ -507,6 +515,8 @@ freeRASP is freemium software i.e. there is a Fair Usage Policy (FUP) that impos
507515
<li>Screen lock control</li>
508516
<li>Google Play Services enabled/disabled</li>
509517
<li>Last security patch update</li>
518+
<li>System VPN control</li>
519+
<li>Developer mode control</li>
510520
</ul>
511521
</td>
512522
<td>yes</td>

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.7.2",
3+
"version": "3.8.0",
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",

0 commit comments

Comments
 (0)