capacitor-freerasp 1.3.0 → 1.3.1-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +67 -0
- package/android/build.gradle +2 -2
- package/package.json +1 -12
- package/android/proguard-rules.pro +0 -21
- package/android/settings.gradle +0 -2
- package/android/src/main/res/.gitkeep +0 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
# freeRASP 1.3.1
|
|
2
|
+
|
|
3
|
+
### Android
|
|
4
|
+
|
|
5
|
+
- ⚡ Updated freeRASP SDK artifact hosting ensuring better stability and availibility
|
|
6
|
+
|
|
7
|
+
# freeRASP 1.3.0
|
|
8
|
+
|
|
9
|
+
- 📄 Documentation updates
|
|
10
|
+
|
|
11
|
+
### Android
|
|
12
|
+
|
|
13
|
+
- ⚡ Shortened duration of threat evaluation
|
|
14
|
+
- ⚡ Fixed a native crash bug during one of the native root checks (detected after NDK upgrade)
|
|
15
|
+
- ⚡ Improved _appIntegrity_ check and its logging
|
|
16
|
+
- ⚡ Updated `CURL` to `8.5.0` and `OpenSSL` to `1.1.1w`
|
|
17
|
+
|
|
18
|
+
### iOS
|
|
19
|
+
|
|
20
|
+
- ❗ Added Privacy Manifest
|
|
21
|
+
- ❗ Added codesigning for the SDK, it is signed by:
|
|
22
|
+
- _Team ID_: `ASQC376HCN`
|
|
23
|
+
- _Team Name_: `AHEAD iTec, s.r.o.`
|
|
24
|
+
- ⚡ Improved obfuscation of Swift and C strings
|
|
25
|
+
- ⚡ Fixed memory leak ([freeRASP iOS issue #13](https://github.com/talsec/Free-RASP-iOS/issues/13))
|
|
26
|
+
- ⚡ Updated `CURL` to `8.5.0` and `OpenSSL` to `1.1.1w`
|
|
27
|
+
|
|
28
|
+
# freeRASP 1.2.1
|
|
29
|
+
|
|
30
|
+
### Android
|
|
31
|
+
- ⚡ Fixed bug that prevented firing callbacks in specific situations
|
|
32
|
+
|
|
33
|
+
### iOS
|
|
34
|
+
- ⚡ Fixed bug that caused app being killed in specific situations ([#42](https://github.com/talsec/Free-RASP-ReactNative/issues/42))
|
|
35
|
+
|
|
36
|
+
# freeRASP 1.2.0
|
|
37
|
+
|
|
38
|
+
- ⚡ Improved message passing between native iOS/Android and Capacitor
|
|
39
|
+
- ✔️ Restricted message passing to valid callbacks only. If an invalid callback is received, the SDK will kill the app
|
|
40
|
+
- ⚡ Improved reaction obfuscation
|
|
41
|
+
- 📄 Documentation updates and improvements
|
|
42
|
+
|
|
43
|
+
### Android
|
|
44
|
+
|
|
45
|
+
- ⚡ Fixed ProviderException which could be occassionally triggered
|
|
46
|
+
|
|
47
|
+
### iOS
|
|
48
|
+
|
|
49
|
+
- ❗ Raised supported Xcode version to 14.3.1
|
|
50
|
+
- ⚡ Improved SDK obfuscation
|
|
51
|
+
|
|
52
|
+
# freeRASP 1.1.0
|
|
53
|
+
|
|
54
|
+
- 📄 Documentation updates and improvements
|
|
55
|
+
|
|
56
|
+
### Android
|
|
57
|
+
|
|
58
|
+
- ✔️ updated CA bundle for logging pinning
|
|
59
|
+
- ✔️ added error logging of network issues within the logging process
|
|
60
|
+
- ✔️ added retry politics for logging
|
|
61
|
+
- ⚡ fixed issue with DeadObjectException on Android 5 and 6 caused by excessive PackageManager.queryIntentActivities() usage
|
|
62
|
+
- ⚡ improved root detection capabilities
|
|
63
|
+
|
|
64
|
+
# freeRASP 1.0.0
|
|
65
|
+
|
|
66
|
+
- 🎉 Initial release of freeRASP for Capacitor
|
|
67
|
+
- ℹ️ Based on _Android freeRASP SDK 8.2.0_ and _iOS freeRASP SDK 5.1.0_
|
package/android/build.gradle
CHANGED
|
@@ -57,7 +57,7 @@ repositories {
|
|
|
57
57
|
|
|
58
58
|
rootProject.allprojects {
|
|
59
59
|
repositories {
|
|
60
|
-
maven{url "https://
|
|
60
|
+
maven{url "https://europe-west3-maven.pkg.dev/talsec-artifact-repository/freerasp"}
|
|
61
61
|
maven{url "https://jitpack.io"}
|
|
62
62
|
}
|
|
63
63
|
}
|
|
@@ -71,5 +71,5 @@ dependencies {
|
|
|
71
71
|
androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
|
|
72
72
|
androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"
|
|
73
73
|
|
|
74
|
-
implementation 'com.aheaditec.talsec.security:TalsecSecurity-Community-Capacitor:9.0
|
|
74
|
+
implementation 'com.aheaditec.talsec.security:TalsecSecurity-Community-Capacitor:9.1.0'
|
|
75
75
|
}
|
package/package.json
CHANGED
|
@@ -1,22 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "capacitor-freerasp",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1-1",
|
|
4
4
|
"description": "Capacitor plugin for improving app security and threat monitoring on Android and iOS mobile devices",
|
|
5
5
|
"main": "dist/plugin.cjs.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
7
7
|
"types": "dist/esm/index.d.ts",
|
|
8
8
|
"unpkg": "dist/plugin.js",
|
|
9
|
-
"files": [
|
|
10
|
-
"android/src/main/",
|
|
11
|
-
"android/build.gradle",
|
|
12
|
-
"android/consumer-rules.pro",
|
|
13
|
-
"android/proguard-rules.pro",
|
|
14
|
-
"android/gradle.properties",
|
|
15
|
-
"android/settings.gradle",
|
|
16
|
-
"dist/",
|
|
17
|
-
"ios/Plugin/",
|
|
18
|
-
"CapacitorFreerasp.podspec"
|
|
19
|
-
],
|
|
20
9
|
"author": "talsec.app",
|
|
21
10
|
"license": "MIT",
|
|
22
11
|
"repository": {
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
# Add project specific ProGuard rules here.
|
|
2
|
-
# You can control the set of applied configuration files using the
|
|
3
|
-
# proguardFiles setting in build.gradle.
|
|
4
|
-
#
|
|
5
|
-
# For more details, see
|
|
6
|
-
# http://developer.android.com/guide/developing/tools/proguard.html
|
|
7
|
-
|
|
8
|
-
# If your project uses WebView with JS, uncomment the following
|
|
9
|
-
# and specify the fully qualified class name to the JavaScript interface
|
|
10
|
-
# class:
|
|
11
|
-
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
|
12
|
-
# public *;
|
|
13
|
-
#}
|
|
14
|
-
|
|
15
|
-
# Uncomment this to preserve the line number information for
|
|
16
|
-
# debugging stack traces.
|
|
17
|
-
#-keepattributes SourceFile,LineNumberTable
|
|
18
|
-
|
|
19
|
-
# If you keep the line number information, uncomment this to
|
|
20
|
-
# hide the original source file name.
|
|
21
|
-
#-renamesourcefileattribute SourceFile
|
package/android/settings.gradle
DELETED
|
File without changes
|