diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e15bbfd..d4c81397 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ [Full documentation](https://docs.tealium.com/platforms/react-native/install/) +-2.5.1 + - Android fix: Added proper error handling for loading from file and saving VisitorProfile + - 2.5.0 - Android fix: VisitorProfile dates now displayed as numerical timestamps instead of strings - Added `VisitorProfile` type definition diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index 5426847e..1ea87e9f 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -498,7 +498,7 @@ PODS: - tealium-react-native-swift (~> 2.4) - tealium-swift/Core (~> 2.14) - tealium-swift/MomentsAPI (~> 2.14) - - tealium-react-native (2.5.0): + - tealium-react-native (2.5.1): - React-Core - tealium-swift/Collect (~> 2.13) - tealium-swift/Core (~> 2.13) @@ -518,7 +518,7 @@ PODS: - tealium-react-native-swift (~> 2.4) - tealium-swift/Core (~> 2.12) - tealium-swift/Location (~> 2.12) - - tealium-react-native-swift (2.5.0): + - tealium-react-native-swift (2.5.1): - React-Core - tealium-react-native - tealium-swift/Collect (~> 2.13) @@ -808,10 +808,10 @@ SPEC CHECKSUMS: tealium-react-braze: f72256073bf99902dbfbfcd875399cd0fac61796 tealium-react-firebase: 44bc3f5f8294a0f9fc2fba5ebd109bde31a141e5 tealium-react-moments-api: 34241abf796c723cdee660dd15dc7ff17ac41acb - tealium-react-native: 63c63a846552771b3c98e2b9fdfd85954864d1e6 + tealium-react-native: f13fda95069e73fbf17d762ea9412b5a9224fcd5 tealium-react-native-crash-reporter: b6bbb018f2d3fc1c27a0423aca58c33820395d41 tealium-react-native-location: 7f275669c9434c0877e8ba20af06ac37c003657f - tealium-react-native-swift: 6a5ec3a0297a38fd6f437935cbc2c34361bfdb0f + tealium-react-native-swift: 72d2f1c2dac5758e1b45041edffe98c6a33f0937 tealium-swift: d2a1f3ee12f3a0aa759ab43c07005b24148b6f75 TealiumAdjust: 7a8c033c93f5aaf306ebecaa2e575a5958e55e87 TealiumAdobeVisitorAPI: dd487f3e130829a15b9cdc7de7b2841a200214e2 diff --git a/npm-package/android/build.gradle b/npm-package/android/build.gradle index 4d495eed..21b4ff89 100644 --- a/npm-package/android/build.gradle +++ b/npm-package/android/build.gradle @@ -43,7 +43,7 @@ buildscript { } } -version = "2.5.0" +version = "2.5.1" android { compileSdkVersion safeExtGet('compileSdkVersion', DEFAULT_COMPILE_SDK_VERSION) buildToolsVersion safeExtGet('buildToolsVersion', DEFAULT_BUILD_TOOLS_VERSION) @@ -105,12 +105,12 @@ dependencies { implementation 'com.facebook.react:react-native:+' // From node_modules //Tealium - implementation 'com.tealium:kotlin-core:1.6.0' + implementation 'com.tealium:kotlin-core:1.6.1' implementation 'com.tealium:kotlin-collect-dispatcher:1.1.1' implementation 'com.tealium:kotlin-tagmanagement-dispatcher:1.2.3' implementation 'com.tealium:kotlin-remotecommand-dispatcher:1.4.0' implementation 'com.tealium:kotlin-lifecycle:1.2.0' - implementation 'com.tealium:kotlin-visitor-service:1.2.0' + implementation 'com.tealium:kotlin-visitor-service:1.2.1' implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${project.ext.kotlinVersion}" testImplementation 'com.facebook.react:react-native:+' diff --git a/npm-package/index.js b/npm-package/index.js index 9ed8d07a..94fa3372 100644 --- a/npm-package/index.js +++ b/npm-package/index.js @@ -18,7 +18,7 @@ export default class Tealium { }); } TealiumWrapper.initialize(config, callback || (response => {})); - TealiumWrapper.addToDataLayer({'plugin_name': 'Tealium-ReactNative', 'plugin_version': '2.5.0'}, Expiry.forever); + TealiumWrapper.addToDataLayer({'plugin_name': 'Tealium-ReactNative', 'plugin_version': '2.5.1'}, Expiry.forever); if (config["dispatchers"].includes(Dispatchers.RemoteCommands)) { this.setRemoteCommandListener(); } diff --git a/npm-package/package.json b/npm-package/package.json index f623551f..d99ca026 100644 --- a/npm-package/package.json +++ b/npm-package/package.json @@ -1,7 +1,7 @@ { "name": "tealium-react-native", "title": "Tealium React Native", - "version": "2.5.0", + "version": "2.5.1", "description": "A native module for using Tealium's Kotlin and Swift libraries.", "main": "index.js", "types": "*.ts",