Skip to content

Commit

Permalink
release: freeRASP 6.2.0 (#82)
Browse files Browse the repository at this point in the history
* fix: Add compatibility with AGP 8.0

* fix: Remove forgotten `onOverlay` callback

* build: Raise freeRASP Android SDK version

* chore(release): Prepare for release
  • Loading branch information
yardexx authored Aug 4, 2023
1 parent a9aeb01 commit 4d9c813
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 17 deletions.
18 changes: 13 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
# freeRASP 6.2.0
Minor fixes and added support for AGP 8.0

## What's new in 6.2.0?
- ⚡ Added support for AGP 8.0
- ❗ Removed PolarSSL dependency on Android
- ❗ Removed forgotten `onOverlay` callback
- ✔️ Fixed issue with [denied USE_BIOMETRICS permission](https://github.com/talsec/Free-RASP-Android/issues/20)

# freeRASP 6.1.0
### Android
- ⚡ Fixed issue with incorrect Keystore type detection on Android 11 and above (https://github.com/talsec/Free-RASP-Flutter/issues/77)

### iOS
- ⚡ Reduced timeout period for logging from 20 sec to 5 sec
- ⚡ Logging is now async in all calls
## What's new in 6.1.0?
- ⚡ Fixed issue with incorrect Keystore type detection on Android 11 and above (https://github.com/talsec/Free-RASP-Flutter/issues/77)
- ⚡ Reduced timeout period for logging from 20 sec to 5 sec on iOS
- ⚡ Logging is now async in all calls on iOS

# freeRASP 6.0.0
We are constantly working on improving your freeRASP experience. This update contains a new check - obfuscation detection. Minimal supported Android SDK level was raised to 23.
Expand Down
7 changes: 5 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:4.1.0'
classpath 'com.android.tools.build:gradle:7.4.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
Expand All @@ -27,6 +27,9 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

android {
if (project.android.hasProperty("namespace")) {
namespace("com.aheaditec.talsec")
}
compileSdkVersion 33

compileOptions {
Expand All @@ -52,5 +55,5 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"

// Talsec SDK
implementation 'com.aheaditec.talsec.security:TalsecSecurity-Community-Flutter:8.0.2'
implementation 'com.aheaditec.talsec.security:TalsecSecurity-Community-Flutter:8.0.4'
}
2 changes: 1 addition & 1 deletion android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-all.zip
2 changes: 1 addition & 1 deletion example/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:4.1.0'
classpath 'com.android.tools.build:gradle:7.4.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
Expand Down
2 changes: 1 addition & 1 deletion example/android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-all.zip
6 changes: 0 additions & 6 deletions lib/src/threat_callback.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ class ThreatCallback {
ThreatCallback({
this.onHooks,
this.onDebug,
this.onOverlay,
this.onPasscode,
this.onDeviceID,
this.onSimulator,
Expand All @@ -41,11 +40,6 @@ class ThreatCallback {
/// This method is called when an unsafe environment (debugger) is detected.
final VoidCallback? onDebug;

/// This method is called when overlay of application view is detected.
///
/// Android only.
final VoidCallback? onOverlay;

/// This method is called when the device has not set any passcode.
final VoidCallback? onPasscode;

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: freerasp
description: Flutter library for improving app security and threat monitoring on Android and iOS mobile devices. Learn more about provided features on the freeRASP's homepage first.
version: 6.1.0
version: 6.2.0
homepage: https://www.talsec.app/freerasp-in-app-protection-security-talsec
repository: https://github.com/talsec/Free-RASP-Flutter

Expand Down

0 comments on commit 4d9c813

Please sign in to comment.