@stream-io/video-react-native-sdk 1.15.0 → 1.15.1

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,19 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [1.15.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.15.0...@stream-io/video-react-native-sdk-1.15.1) (2025-06-02)
6
+
7
+ ### Dependency Updates
8
+
9
+ - `@stream-io/noise-cancellation-react-native` updated to version `0.1.1`
10
+ - `@stream-io/video-client` updated to version `1.23.3`
11
+ - `@stream-io/video-react-bindings` updated to version `1.6.6`
12
+
13
+ ### Bug Fixes
14
+
15
+ - expo plugin should add foreground permissions on ringing config ([cba9746](https://github.com/GetStream/stream-video-js/commit/cba97469966aa35b67f380d82272a9bf3a8e2ef2))
16
+ - report to callkit that we do not support holding ([#1809](https://github.com/GetStream/stream-video-js/issues/1809)) ([e779d3f](https://github.com/GetStream/stream-video-js/commit/e779d3fbdda30be5db5c42ee4655d8311dd53d60))
17
+
5
18
  ## [1.15.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.14.2...@stream-io/video-react-native-sdk-1.15.0) (2025-05-27)
6
19
 
7
20
  ### Features
@@ -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.15.0';
7
+ const version = exports.version = '1.15.1';
8
8
  //# sourceMappingURL=version.js.map
@@ -1,2 +1,2 @@
1
- export const version = '1.15.0';
1
+ export const version = '1.15.1';
2
2
  //# sourceMappingURL=version.js.map
@@ -1,2 +1,2 @@
1
- export declare const version = "1.15.0";
1
+ export declare const version = "1.15.1";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -8,13 +8,15 @@ const withStreamVideoReactNativeSDKAndroidPermissions = (configuration, props) =
8
8
  'android.permission.BLUETOOTH_ADMIN',
9
9
  'android.permission.WAKE_LOCK',
10
10
  ];
11
- if (props?.ringingPushNotifications || props?.enableScreenshare) {
11
+ if (props?.androidKeepCallAlive ||
12
+ props?.ringingPushNotifications ||
13
+ props?.enableScreenshare) {
12
14
  permissions.push('android.permission.POST_NOTIFICATIONS', 'android.permission.FOREGROUND_SERVICE');
13
15
  if (props?.enableScreenshare) {
14
16
  permissions.push('android.permission.FOREGROUND_SERVICE_MEDIA_PROJECTION');
15
17
  }
16
18
  }
17
- if (props?.androidKeepCallAlive) {
19
+ if (props?.androidKeepCallAlive || props?.ringingPushNotifications) {
18
20
  permissions.push('android.permission.FOREGROUND_SERVICE_CAMERA', 'android.permission.FOREGROUND_SERVICE_MICROPHONE', 'android.permission.FOREGROUND_SERVICE_CONNECTED_DEVICE', 'android.permission.FOREGROUND_SERVICE_DATA_SYNC');
19
21
  }
20
22
  if (props?.ringingPushNotifications?.showWhenLockedAndroid) {
@@ -300,10 +300,10 @@ function addDidReceiveIncomingPushCallbackSwift(contents) {
300
300
  handleType: "generic",
301
301
  hasVideo: true,
302
302
  localizedCallerName: createdCallerName,
303
- supportsHolding: true,
304
- supportsDTMF: true,
305
- supportsGrouping: true,
306
- supportsUngrouping: true,
303
+ supportsHolding: false,
304
+ supportsDTMF: false,
305
+ supportsGrouping: false,
306
+ supportsUngrouping: false,
307
307
  fromPushKit: true,
308
308
  payload: stream,
309
309
  withCompletionHandler: nil)`;
@@ -351,10 +351,10 @@ function addDidReceiveIncomingPushCallbackObjc(contents) {
351
351
  handleType: @"generic"
352
352
  hasVideo: YES
353
353
  localizedCallerName: createdCallerName
354
- supportsHolding: YES
355
- supportsDTMF: YES
356
- supportsGrouping: YES
357
- supportsUngrouping: YES
354
+ supportsHolding: NO
355
+ supportsDTMF: NO
356
+ supportsGrouping: NO
357
+ supportsUngrouping: NO
358
358
  fromPushKit: YES
359
359
  payload: stream
360
360
  withCompletionHandler: nil];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stream-io/video-react-native-sdk",
3
- "version": "1.15.0",
3
+ "version": "1.15.1",
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/",
@@ -45,8 +45,8 @@
45
45
  "!**/.*"
46
46
  ],
47
47
  "dependencies": {
48
- "@stream-io/video-client": "1.23.2",
49
- "@stream-io/video-react-bindings": "1.6.5",
48
+ "@stream-io/video-client": "1.23.3",
49
+ "@stream-io/video-react-bindings": "1.6.6",
50
50
  "intl-pluralrules": "2.0.1",
51
51
  "lodash.merge": "^4.6.2",
52
52
  "react-native-url-polyfill": "1.3.0",
@@ -125,7 +125,7 @@
125
125
  "@react-native-firebase/app": "^22.1.0",
126
126
  "@react-native-firebase/messaging": "^22.1.0",
127
127
  "@react-native/babel-preset": "^0.79.2",
128
- "@stream-io/noise-cancellation-react-native": "^0.1.0",
128
+ "@stream-io/noise-cancellation-react-native": "^0.1.1",
129
129
  "@stream-io/react-native-webrtc": "^125.3.0",
130
130
  "@stream-io/video-filters-react-native": "^0.4.0",
131
131
  "@testing-library/jest-native": "^5.4.3",
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const version = '1.15.0';
1
+ export const version = '1.15.1';