@stream-io/video-react-sdk 1.13.2 → 1.14.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.
- package/CHANGELOG.md +11 -0
- package/README.md +2 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.es.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [1.14.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.13.2...@stream-io/video-react-sdk-1.14.0) (2025-04-04)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `@stream-io/video-client` updated to version `1.19.0`
|
|
10
|
+
* `@stream-io/video-react-bindings` updated to version `1.5.12`
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* collect more granular RTC stats and RPC tracing ([#1735](https://github.com/GetStream/stream-video-js/issues/1735)) ([e356d6b](https://github.com/GetStream/stream-video-js/commit/e356d6b9fe361c186a5b92de55fabf0598ea4885))
|
|
15
|
+
|
|
5
16
|
## [1.13.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.13.1...@stream-io/video-react-sdk-1.13.2) (2025-04-02)
|
|
6
17
|
|
|
7
18
|
### Dependency Updates
|
package/README.md
CHANGED
|
@@ -82,7 +82,7 @@ Here are some of the features we support:
|
|
|
82
82
|
- [x] Audio filters
|
|
83
83
|
- [x] Noise Cancellation
|
|
84
84
|
|
|
85
|
-
###
|
|
85
|
+
### Milestones
|
|
86
86
|
|
|
87
87
|
- [ ] Break-out rooms
|
|
88
88
|
- [ ] Waiting rooms
|
|
@@ -91,6 +91,7 @@ Here are some of the features we support:
|
|
|
91
91
|
- [ ] Logging 2.0
|
|
92
92
|
- [x] Hardware-accelerated video encoding on supported platforms
|
|
93
93
|
- [x] Dynascale 2.0 (codec switching)
|
|
94
|
+
- [x] Improved stat collection
|
|
94
95
|
- [ ] E2E testing platform
|
|
95
96
|
- [ ] Dynascale: turn off incoming video when the browser is in the background
|
|
96
97
|
|
package/dist/index.cjs.js
CHANGED
|
@@ -2674,7 +2674,7 @@ const LivestreamPlayer = (props) => {
|
|
|
2674
2674
|
return (jsxRuntime.jsx(StreamCall, { call: call, children: jsxRuntime.jsx(LivestreamLayout, { ...layoutProps }) }));
|
|
2675
2675
|
};
|
|
2676
2676
|
|
|
2677
|
-
const [major, minor, patch] = ("1.
|
|
2677
|
+
const [major, minor, patch] = ("1.14.0").split('.');
|
|
2678
2678
|
videoClient.setSdkInfo({
|
|
2679
2679
|
type: videoClient.SfuModels.SdkType.REACT,
|
|
2680
2680
|
major,
|
package/dist/index.es.js
CHANGED
|
@@ -2674,7 +2674,7 @@ const LivestreamPlayer = (props) => {
|
|
|
2674
2674
|
return (jsx(StreamCall, { call: call, children: jsx(LivestreamLayout, { ...layoutProps }) }));
|
|
2675
2675
|
};
|
|
2676
2676
|
|
|
2677
|
-
const [major, minor, patch] = ("1.
|
|
2677
|
+
const [major, minor, patch] = ("1.14.0").split('.');
|
|
2678
2678
|
setSdkInfo({
|
|
2679
2679
|
type: SfuModels.SdkType.REACT,
|
|
2680
2680
|
major,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stream-io/video-react-sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.0",
|
|
4
4
|
"main": "./dist/index.cjs.js",
|
|
5
5
|
"module": "./dist/index.es.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@floating-ui/react": "^0.26.24",
|
|
33
|
-
"@stream-io/video-client": "1.
|
|
33
|
+
"@stream-io/video-client": "1.19.0",
|
|
34
34
|
"@stream-io/video-filters-web": "0.1.7",
|
|
35
|
-
"@stream-io/video-react-bindings": "1.5.
|
|
35
|
+
"@stream-io/video-react-bindings": "1.5.12",
|
|
36
36
|
"chart.js": "^4.4.4",
|
|
37
37
|
"clsx": "^2.0.0",
|
|
38
38
|
"react-chartjs-2": "^5.3.0"
|