Skip to content

Commit

Permalink
Release/6.1.0 (#23)
Browse files Browse the repository at this point in the history
* feat(iOS): bump freeRASP SDK to 6.1.2

* feat(Android): bump freeRASP SDK to 9.0.2

* chore(example): formatting

* chore(release): freeRASP 6.1.0

* Update CHANGELOG.md

---------

Co-authored-by: Matúš Šikyňa <[email protected]>
  • Loading branch information
tompsota and msikyna committed Mar 25, 2024
1 parent 5ff578d commit 77e8e0e
Show file tree
Hide file tree
Showing 53 changed files with 4,222 additions and 2,669 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,32 @@
# freeRASP 6.1.0

- 📄 Documentation updates

### Android

- ⚡ Shortened duration of threat evaluation
- ⚡ Fixed a native crash bug during one of the native root checks (detected after NDK upgrade)
- ⚡ Improved _appIntegrity_ check and its logging
- ⚡ Updated `CURL` to `8.5.0` and `OpenSSL` to `1.1.1w`

### iOS

- ❗ Added Privacy Manifest
- ❗ Added codesigning for the SDK, it is signed by:
- _Team ID_: `ASQC376HCN`
- _Team Name_: `AHEAD iTec, s.r.o.`
- ⚡ Improved obfuscation of Swift and C strings
- ⚡ Fixed memory leak ([freeRASP iOS issue #13](https://github.com/talsec/Free-RASP-iOS/issues/13))
- ⚡ Updated `CURL` to `8.5.0` and `OpenSSL` to `1.1.1w`

# freeRASP 6.0.1

### Android

- ⚡ Fixed bug that prevented firing callbacks in specific situations

### iOS

- ⚡ Fixed bug that caused app being killed in specific situations ([#42](https://github.com/talsec/Free-RASP-ReactNative/issues/42))

# freeRASP 6.0.0
Expand Down
2 changes: 1 addition & 1 deletion hello/www/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ function onDeviceReady () {
};

const actions = {
// Android & iOS
// Android & iOS
privilegedAccess: () => {
console.log('privilegedAccess');
changeThreatStyle('privilegedAccess');
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": "cordova-talsec-plugin-freerasp",
"version": "6.0.1",
"version": "6.1.0",
"description": "Cordova plugin for improving app security and threat monitoring on Android and iOS mobile devices.",
"cordova": {
"id": "cordova-talsec-plugin-freerasp",
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-talsec-plugin-freerasp"
version="6.0.1">
version="6.1.0">

<name>freerasp</name>
<author>Talsec ([email protected])</author>
Expand Down
2 changes: 1 addition & 1 deletion src/android/talsec.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ repositories {
}

dependencies {
implementation "com.aheaditec.talsec.security:TalsecSecurity-Community-Cordova:9.0.0"
implementation "com.aheaditec.talsec.security:TalsecSecurity-Community-Cordova:9.0.2"
}

android {
Expand Down
10 changes: 5 additions & 5 deletions src/ios/TalsecRuntime.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,30 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>TalsecRuntime.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>TalsecRuntime.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit 77e8e0e

Please sign in to comment.