@kaleyra/video-react-native-module 1.4.0 → 1.5.0

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.
@@ -82,8 +82,9 @@ def kotlin_version = getExtOrDefault("kotlinVersion")
82
82
  dependencies {
83
83
  // For < 0.71, this will be from the local maven repo
84
84
  // For > 0.71, this will be replaced by `com.facebook.react:react-android:$version` by react gradle plugin
85
+ // https://github.com/facebook/react-native/blob/d280772ea4b2b945340e88c6b95ffb4c0dd56dac/packages/react-native/android/README.md?plain=1#L13
85
86
  //noinspection GradleDynamicVersion
86
- implementation "com.facebook.react:react-android:$REACT_NATIVE_VERSION"
87
+ implementation "com.facebook.react:react-native:$REACT_NATIVE_VERSION"
87
88
  implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
88
89
  }
89
90
 
@@ -1 +1 @@
1
- React/1.4.0
1
+ React/1.5.0
@@ -7,7 +7,7 @@ import Foundation
7
7
  class _KaleyraVideoHybridVersionInfo: NSObject {
8
8
 
9
9
  @objc
10
- static let krvVersion: String = "1.4.0"
10
+ static let krvVersion: String = "1.5.0"
11
11
 
12
12
  @objc
13
13
  static let krvPlatform: String = "react"
@@ -6,7 +6,7 @@ platform :ios, '12.0'
6
6
  target 'KaleyraVideoHybridNativeBridge' do
7
7
  use_frameworks!
8
8
 
9
- pod "Bandyer"
9
+ pod 'Bandyer', '~> 3.12.1'
10
10
 
11
11
  target 'KaleyraVideoHybridNativeBridgeTests' do
12
12
  use_frameworks!
@@ -1,13 +1,13 @@
1
1
  PODS:
2
- - Bandyer (3.11.1):
3
- - Bandyer/Core (= 3.11.1)
4
- - Bandyer/WebRTC (= 3.11.1)
5
- - Bandyer/Core (3.11.1)
6
- - Bandyer/WebRTC (3.11.1)
2
+ - Bandyer (3.12.1):
3
+ - Bandyer/Core (= 3.12.1)
4
+ - Bandyer/WebRTC (= 3.12.1)
5
+ - Bandyer/Core (3.12.1)
6
+ - Bandyer/WebRTC (3.12.1)
7
7
  - SwiftHamcrest (2.2.4)
8
8
 
9
9
  DEPENDENCIES:
10
- - Bandyer
10
+ - Bandyer (~> 3.12.1)
11
11
  - SwiftHamcrest (~> 2.2)
12
12
 
13
13
  SPEC REPOS:
@@ -16,9 +16,9 @@ SPEC REPOS:
16
16
  - SwiftHamcrest
17
17
 
18
18
  SPEC CHECKSUMS:
19
- Bandyer: 310861e4191a19084a712b8a42a6e83e2c17f159
19
+ Bandyer: 85a49f0c6c3e2084075991dc05a37ae3b54ca9d8
20
20
  SwiftHamcrest: a45dd878978049c0953259aa01c34fd7258d0340
21
21
 
22
- PODFILE CHECKSUM: 66fc4f81333eb6e98b7f40196dbf5ee1fa5c1996
22
+ PODFILE CHECKSUM: eec3e41640e9473d6444b76c82ece16fcb50757e
23
23
 
24
- COCOAPODS: 1.14.2
24
+ COCOAPODS: 1.15.2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaleyra/video-react-native-module",
3
- "version": "1.4.0",
3
+ "version": "1.5.0",
4
4
  "private": false,
5
5
  "description": "Kaleyra Video module for react native.",
6
6
  "main": "lib/commonjs/index.js",
@@ -74,8 +74,8 @@
74
74
  "@react-native-community/eslint-config": "^3.0.2",
75
75
  "@release-it/conventional-changelog": "^5.0.0",
76
76
  "@types/jest": "^28.1.2",
77
- "@types/react": "~17.0.21",
78
- "@types/react-native": "0.70.0",
77
+ "@types/react": "~18.2.79",
78
+ "@types/react-native": "0.70.19",
79
79
  "@typescript-eslint/eslint-plugin": "^5.60.0",
80
80
  "@typescript-eslint/parser": "^5.60.0",
81
81
  "commitlint": "^17.0.2",
@@ -88,12 +88,12 @@
88
88
  "prettier": "^2.0.5",
89
89
  "quicktype": "^16.0.43",
90
90
  "react": "18.2.0",
91
- "react-native": "0.71.9",
91
+ "react-native": "0.70.15",
92
92
  "typedoc": "^0.24.4",
93
93
  "typescript": "^4.9.5"
94
94
  },
95
95
  "resolutions": {
96
- "@types/react": "17.0.21"
96
+ "@types/react": "18.2.79"
97
97
  },
98
98
  "peerDependencies": {
99
99
  "react": "*",
@@ -18,10 +18,13 @@ Pod::Spec.new do |s|
18
18
 
19
19
  s.dependency "React-Core"
20
20
 
21
+ podfile = Pod::Podfile.from_file(Pathname.new('native-bridge/iOS/Podfile'))
22
+ pod = podfile.dependencies.select { |pod| pod.name == "Bandyer" }
23
+
21
24
  if defined?($KaleyraNoWebRTC)
22
- s.dependency "Bandyer/Core", "~> 3.12.0"
25
+ s.dependency "Bandyer/Core", pod[0].requirement.to_s
23
26
  else
24
- s.dependency "Bandyer", "~> 3.12.0"
27
+ s.dependency "Bandyer", pod[0].requirement.to_s
25
28
  end
26
29
 
27
30
  # Don't install the dependencies when we run `pod install` in the old architecture.