@blueconic/blueconic-react-native 3.2.2 → 3.2.3
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 +6 -0
- package/android/build.gradle +4 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
`@blueconic/blueconic-react-native` adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
4
4
|
|
|
5
|
+
## [3.2.3] 2024-09-18
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- React-Android: Fixed crash during commit log merging events.
|
|
9
|
+
- React-Android: Fixed issue with commit log crashing when upgrading from older versions of the SDK.
|
|
10
|
+
|
|
5
11
|
## [3.2.2] 2024-08-12
|
|
6
12
|
|
|
7
13
|
### Fixed
|
package/android/build.gradle
CHANGED
|
@@ -19,10 +19,10 @@ android {
|
|
|
19
19
|
defaultConfig {
|
|
20
20
|
minSdkVersion 21
|
|
21
21
|
targetSdkVersion 33
|
|
22
|
-
versionCode
|
|
23
|
-
versionName "3.2.
|
|
22
|
+
versionCode 323
|
|
23
|
+
versionName "3.2.3"
|
|
24
24
|
buildConfigField 'String', 'PLATFORM_NAME', "\"React Native\""
|
|
25
|
-
buildConfigField 'String', 'PLATFORM_VERSION', "\"3.2.
|
|
25
|
+
buildConfigField 'String', 'PLATFORM_VERSION', "\"3.2.3\""
|
|
26
26
|
}
|
|
27
27
|
lintOptions {
|
|
28
28
|
abortOnError false
|
|
@@ -36,5 +36,5 @@ repositories {
|
|
|
36
36
|
|
|
37
37
|
dependencies {
|
|
38
38
|
compileOnly 'com.facebook.react:react-android:+'
|
|
39
|
-
implementation 'com.blueconic:blueconic-android-lib:5.2.
|
|
39
|
+
implementation 'com.blueconic:blueconic-android-lib:5.2.5'
|
|
40
40
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blueconic/blueconic-react-native",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.3",
|
|
4
4
|
"description": "The BlueConicClient Framework provides the basis for communicating with BlueConic.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"author": "BlueConic (info@blueconic.com)",
|
|
27
27
|
"license": "SEE LICENSE IN LICENSE",
|
|
28
28
|
"nativeDependencies": {
|
|
29
|
-
"android": "5.2.
|
|
29
|
+
"android": "5.2.5",
|
|
30
30
|
"ios": "3.3.0"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|