@stream-io/video-client 0.3.18 → 0.3.19
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 +7 -0
- package/dist/index.browser.es.js +2 -2
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.cjs.js +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +2 -2
- package/dist/index.es.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/devices/InputMediaDeviceManager.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
### [0.3.19](https://github.com/GetStream/stream-video-js/compare/client0.3.18...client0.3.19) (2023-09-15)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* initial device state handling ([#1092](https://github.com/GetStream/stream-video-js/issues/1092)) ([a98d07f](https://github.com/GetStream/stream-video-js/commit/a98d07f9e3eaf6bb059911538ba2a64a1550e53d))
|
|
11
|
+
|
|
5
12
|
### [0.3.18](https://github.com/GetStream/stream-video-js/compare/client0.3.17...client0.3.18) (2023-09-15)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.browser.es.js
CHANGED
|
@@ -10118,7 +10118,7 @@ class InputMediaDeviceManager {
|
|
|
10118
10118
|
// @ts-expect-error release() is present in react-native-webrtc and must be called to dispose the stream
|
|
10119
10119
|
if (typeof this.state.mediaStream.release === 'function') {
|
|
10120
10120
|
// @ts-expect-error
|
|
10121
|
-
|
|
10121
|
+
this.state.mediaStream.release();
|
|
10122
10122
|
}
|
|
10123
10123
|
this.state.setMediaStream(undefined);
|
|
10124
10124
|
}
|
|
@@ -13106,7 +13106,7 @@ class WSConnectionFallback {
|
|
|
13106
13106
|
}
|
|
13107
13107
|
}
|
|
13108
13108
|
|
|
13109
|
-
const version = '0.3.
|
|
13109
|
+
const version = '0.3.19';
|
|
13110
13110
|
|
|
13111
13111
|
const logger = getLogger(['location']);
|
|
13112
13112
|
const HINT_URL = `https://hint.stream-io-video.com/`;
|