@pexip/media 22.3.0 → 22.3.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 +11 -0
- package/dist/media.js +1 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @pexip/media
|
|
2
2
|
|
|
3
|
+
## 22.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 70f97b7: Fix media status and mute state hook interpretation
|
|
8
|
+
- 1841fdb: Fix constraints update
|
|
9
|
+
- Updated dependencies [8b563f5]
|
|
10
|
+
- @pexip/utils@17.5.0
|
|
11
|
+
- @pexip/media-control@22.3.1
|
|
12
|
+
- @pexip/media-processor@22.3.1
|
|
13
|
+
|
|
3
14
|
## 22.3.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
package/dist/media.js
CHANGED
|
@@ -101,6 +101,7 @@ export const createMediaUpdater = ({ getUserMedia, getCurrentDevices, shouldDisc
|
|
|
101
101
|
]);
|
|
102
102
|
}
|
|
103
103
|
else if (currentMedia?.status) {
|
|
104
|
+
currentMedia.setOriginalConstraints(constraints);
|
|
104
105
|
// No media request, update status only
|
|
105
106
|
const anyAudioTrack = currentMedia
|
|
106
107
|
.getAudioTracks()
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pexip/media",
|
|
3
|
-
"version": "22.3.
|
|
3
|
+
"version": "22.3.1",
|
|
4
4
|
"description": "Home for media related stuff",
|
|
5
5
|
"homepage": "https://developer.pexip.com",
|
|
6
6
|
"bugs": "https://gitlab.com/pexip/zoo/issues",
|
|
@@ -47,10 +47,10 @@
|
|
|
47
47
|
"docs": "typedoc"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@pexip/media-control": "22.3.
|
|
51
|
-
"@pexip/media-processor": "22.3.
|
|
50
|
+
"@pexip/media-control": "22.3.1",
|
|
51
|
+
"@pexip/media-processor": "22.3.1",
|
|
52
52
|
"@pexip/signal": "16.9.6",
|
|
53
|
-
"@pexip/utils": "17.
|
|
53
|
+
"@pexip/utils": "17.5.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@pexip/bundler": "18.3.0",
|