@stream-io/video-client 0.3.27 → 0.3.29

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,20 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ### [0.3.29](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-0.3.28...@stream-io/video-client-0.3.29) (2023-10-05)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * ensure stable sort ([#1130](https://github.com/GetStream/stream-video-js/issues/1130)) ([f96e1af](https://github.com/GetStream/stream-video-js/commit/f96e1af33ef9e60434e07dc0fba5161f20b8eba6))
11
+
12
+ ### [0.3.28](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-0.3.27...@stream-io/video-client-0.3.28) (2023-09-28)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * use `@stream-io/video-client` as a tag prefix ([#1116](https://github.com/GetStream/stream-video-js/issues/1116)) ([418206a](https://github.com/GetStream/stream-video-js/commit/418206aaa3a013e0d551e109d8243e75a053d5a3))
18
+
5
19
  ### [0.3.27](https://github.com/GetStream/stream-video-js/compare/client0.3.26...client0.3.27) (2023-09-28)
6
20
 
7
21
 
package/README.md CHANGED
@@ -1,6 +1,8 @@
1
- # @stream-io/video-client
1
+ # Official Plain-JS SDK and Low-Level Client for [Stream Video](https://getstream.io/video/docs/)
2
2
 
3
- Low-level video client for browser and Node.js integrations.
3
+ <img src="../../.readme-assets/Github-Graphic-JS.jpg" alt="Stream Video for JavaScript Header image" style="box-shadow: 0 3px 10px rgb(0 0 0 / 0.2); border-radius: 1rem" />
4
+
5
+ Low-level Video SDK client for browser and Node.js integrations.
4
6
 
5
7
  ## **Quick Links**
6
8
 
@@ -13,9 +15,9 @@ Stream allows developers to rapidly deploy scalable feeds, chat messaging and vi
13
15
 
14
16
  With Stream's video components, you can use their SDK to build in-app video calling, audio rooms, audio calls, or live streaming. The best place to get started is with their tutorials:
15
17
 
16
- - Video & Audio Calling Tutorial
18
+ - [Video & Audio Calling Tutorial](https://getstream.io/video/docs/javascript/tutorials/video-calling/)
17
19
  - Audio Rooms Tutorial
18
- - Livestreaming Tutorial
20
+ - [Livestreaming Tutorial](https://getstream.io/video/docs/javascript/tutorials/livestream/)
19
21
 
20
22
  Stream provides UI components and state handling that make it easy to build video calling for your app. All calls run on Stream's network of edge servers around the world, ensuring optimal latency and reliability.
21
23
 
@@ -8334,8 +8334,9 @@ class CallState {
8334
8334
  };
8335
8335
  this.logger = getLogger(['CallState']);
8336
8336
  this.participants$ = this.participantsSubject.asObservable().pipe(
8337
- // TODO: replace with Array.toSorted once available
8338
- map$1((ps) => [...ps].sort(this.sortParticipantsBy)), shareReplay({ bufferSize: 1, refCount: true }));
8337
+ // maintain stable-sort by mutating the participants stored
8338
+ // in the original subject
8339
+ map$1((ps) => ps.sort(this.sortParticipantsBy)), shareReplay({ bufferSize: 1, refCount: true }));
8339
8340
  this.localParticipant$ = this.participants$.pipe(map$1((participants) => participants.find(isStreamVideoLocalParticipant)), shareReplay({ bufferSize: 1, refCount: true }));
8340
8341
  this.remoteParticipants$ = this.participants$.pipe(map$1((participants) => participants.filter((p) => !p.isLocalParticipant)), shareReplay({ bufferSize: 1, refCount: true }));
8341
8342
  this.pinnedParticipants$ = this.participants$.pipe(map$1((participants) => participants.filter((p) => !!p.pin)), shareReplay({ bufferSize: 1, refCount: true }));
@@ -13218,7 +13219,7 @@ class WSConnectionFallback {
13218
13219
  }
13219
13220
  }
13220
13221
 
13221
- const version = '0.3.27';
13222
+ const version = '0.3.29';
13222
13223
 
13223
13224
  const logger = getLogger(['location']);
13224
13225
  const HINT_URL = `https://hint.stream-io-video.com/`;