@stream-io/video-react-native-sdk 1.30.1 → 1.30.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 CHANGED
@@ -2,6 +2,26 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [1.30.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.30.2...@stream-io/video-react-native-sdk-1.30.3) (2026-03-06)
6
+
7
+ ### Dependency Updates
8
+
9
+ - `@stream-io/video-client` updated to version `1.44.3`
10
+ - `@stream-io/video-react-bindings` updated to version `1.13.12`
11
+
12
+ ## [1.30.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.30.1...@stream-io/video-react-native-sdk-1.30.2) (2026-03-06)
13
+
14
+ ### Dependency Updates
15
+
16
+ - `@stream-io/noise-cancellation-react-native` updated to version `0.5.1`
17
+ - `@stream-io/video-filters-react-native` updated to version `0.10.1`
18
+ - `@stream-io/video-client` updated to version `1.44.2`
19
+ - `@stream-io/video-react-bindings` updated to version `1.13.11`
20
+
21
+ ### Bug Fixes
22
+
23
+ - support prebuilt RN iOS app ([#2151](https://github.com/GetStream/stream-video-js/issues/2151)) ([372488c](https://github.com/GetStream/stream-video-js/commit/372488ce5d03a715d6670723ae593c940c3bff07))
24
+
5
25
  ## [1.30.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.30.0...@stream-io/video-react-native-sdk-1.30.1) (2026-03-04)
6
26
 
7
27
  ### Dependency Updates
@@ -4,5 +4,5 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.version = void 0;
7
- const version = exports.version = '1.30.1';
7
+ const version = exports.version = '1.30.3';
8
8
  //# sourceMappingURL=version.js.map
@@ -1,2 +1,2 @@
1
- export const version = '1.30.1';
1
+ export const version = '1.30.3';
2
2
  //# sourceMappingURL=version.js.map
@@ -1,2 +1,2 @@
1
- export declare const version = "1.30.1";
1
+ export declare const version = "1.30.3";
2
2
  //# sourceMappingURL=version.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stream-io/video-react-native-sdk",
3
- "version": "1.30.1",
3
+ "version": "1.30.3",
4
4
  "description": "Stream Video SDK for React Native",
5
5
  "author": "https://getstream.io",
6
6
  "homepage": "https://getstream.io/video/docs/react-native/",
@@ -50,8 +50,8 @@
50
50
  "!**/.*"
51
51
  ],
52
52
  "dependencies": {
53
- "@stream-io/video-client": "1.44.1",
54
- "@stream-io/video-react-bindings": "1.13.10",
53
+ "@stream-io/video-client": "1.44.3",
54
+ "@stream-io/video-react-bindings": "1.13.12",
55
55
  "intl-pluralrules": "2.0.1",
56
56
  "react-native-url-polyfill": "^3.0.0",
57
57
  "rxjs": "~7.8.2",
@@ -129,9 +129,9 @@
129
129
  "@react-native-firebase/app": "^23.4.0",
130
130
  "@react-native-firebase/messaging": "^23.4.0",
131
131
  "@react-native/babel-preset": "^0.81.5",
132
- "@stream-io/noise-cancellation-react-native": "^0.5.0",
132
+ "@stream-io/noise-cancellation-react-native": "^0.5.1",
133
133
  "@stream-io/react-native-webrtc": "137.1.0",
134
- "@stream-io/video-filters-react-native": "^0.10.0",
134
+ "@stream-io/video-filters-react-native": "^0.10.1",
135
135
  "@testing-library/jest-native": "^5.4.3",
136
136
  "@testing-library/react-native": "13.3.3",
137
137
  "@tsconfig/node18": "^18.2.4",
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const version = '1.30.1';
1
+ export const version = '1.30.3';
@@ -1,7 +1,6 @@
1
1
  require "json"
2
2
 
3
3
  package = JSON.parse(File.read(File.join(__dir__, "package.json")))
4
- folly_compiler_flags = '-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32'
5
4
 
6
5
  Pod::Spec.new do |s|
7
6
  s.name = "stream-video-react-native"
@@ -17,27 +16,5 @@ Pod::Spec.new do |s|
17
16
  s.source_files = "ios/**/*.{h,m,mm,swift}"
18
17
  s.dependency "stream-react-native-webrtc"
19
18
 
20
- # Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0.
21
- # See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79.
22
- if respond_to?(:install_modules_dependencies, true)
23
- install_modules_dependencies(s)
24
- else
25
- s.dependency "React-Core"
26
-
27
- # Don't install the dependencies when we run `pod install` in the old architecture.
28
- if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then
29
- s.compiler_flags = folly_compiler_flags + " -DRCT_NEW_ARCH_ENABLED=1"
30
- s.pod_target_xcconfig = {
31
- "HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)/boost\"",
32
- "OTHER_CPLUSPLUSFLAGS" => "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
33
- "CLANG_CXX_LANGUAGE_STANDARD" => "c++17"
34
- }
35
- s.dependency "React-RCTFabric"
36
- s.dependency "React-Codegen"
37
- s.dependency "RCT-Folly"
38
- s.dependency "RCTRequired"
39
- s.dependency "RCTTypeSafety"
40
- s.dependency "ReactCommon/turbomodule/core"
41
- end
42
- end
19
+ install_modules_dependencies(s)
43
20
  end