diff --git a/CHANGELOG.md b/CHANGELOG.md index ffed1b66..fb19f2da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# 2.27.3 (March 2024) + +- [Update]: This version updates the Vonage Video iOS SDK version to 2.27.2 and the Vonage Video Android SDK version to 2.27.1. See their release notes for details: + + * https://tokbox.com/developer/sdks/android/release-notes.html + * https://tokbox.com/developer/sdks/ios/release-notes.html + +- [Fix] Toggling between a screen and camera video source for publisher caused apps to crash in iOS. This version fixes the issue (issue #710). + # 2.27.2 (March 2024) - [Fix]: On Android, a screen-sharing OTPublisher (one with the `videoSource` setting set to `"screen"`) failed if the app did not have camera access permission. This version fixes the issue, so that screen-sharing can proceed without camera access permission. diff --git a/README.md b/README.md index 875eca79..ff4ae47d 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ If you've installed this package before, you may need to edit your `Podfile` and target '' do # Pods for - pod 'OTXCFramework', '2.27.0' + pod 'OTXCFramework', '2.27.2' end ``` diff --git a/android/build.gradle b/android/build.gradle index cea1d259..a99ecc52 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -27,5 +27,5 @@ android { dependencies { implementation fileTree(dir: "libs", include: ["*.jar"]) implementation "com.facebook.react:react-native:${_reactNativeVersion}" // From node_modules - implementation 'com.opentok.android:opentok-android-sdk:2.27.0' + implementation 'com.opentok.android:opentok-android-sdk:2.27.1' } diff --git a/opentok-react-native.podspec b/opentok-react-native.podspec index 6643446a..04713e9b 100644 --- a/opentok-react-native.podspec +++ b/opentok-react-native.podspec @@ -17,5 +17,5 @@ Pod::Spec.new do |s| s.source_files = "ios/**/*.{h,m,swift}" s.dependency 'React' - s.dependency 'OTXCFramework','2.27.0' + s.dependency 'OTXCFramework','2.27.2' end diff --git a/package-lock.json b/package-lock.json index 9b1e70a4..4be2590f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "opentok-react-native", - "version": "2.27.2", + "version": "2.27.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "opentok-react-native", - "version": "2.27.2", + "version": "2.27.3", "license": "MIT", "dependencies": { "axios": "^1.6.8", diff --git a/package.json b/package.json index 8ee72229..d5819ea8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "opentok-react-native", - "version": "2.27.2", + "version": "2.27.3", "description": "React Native components for OpenTok iOS and Android SDKs", "main": "src/index.js", "homepage": "https://www.tokbox.com",