@stream-io/video-client 1.23.0 → 1.23.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,12 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [1.23.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.23.0...@stream-io/video-client-1.23.1) (2025-05-21)
6
+
7
+ ### Bug Fixes
8
+
9
+ - restore echoCancellation settings ([#1799](https://github.com/GetStream/stream-video-js/issues/1799)) ([e839036](https://github.com/GetStream/stream-video-js/commit/e839036f279ee9b27ce3d62d4f07e3517c3e5fef)), closes [#1794](https://github.com/GetStream/stream-video-js/issues/1794)
10
+
5
11
  ## [1.23.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.22.2...@stream-io/video-client-1.23.0) (2025-05-20)
6
12
 
7
13
  ### Features
@@ -5680,7 +5680,7 @@ const aggregate = (stats) => {
5680
5680
  return report;
5681
5681
  };
5682
5682
 
5683
- const version = "1.23.0";
5683
+ const version = "1.23.1";
5684
5684
  const [major, minor, patch] = version.split('.');
5685
5685
  let sdkInfo = {
5686
5686
  type: SdkType.PLAIN_JAVASCRIPT,
@@ -10404,15 +10404,6 @@ class MicrophoneManager extends InputMediaDeviceManager {
10404
10404
  this.noiseCancellationRegistration = Promise.resolve();
10405
10405
  }
10406
10406
  else {
10407
- // Krisp recommends disabling the browser's built-in noise cancellation
10408
- // and echo cancellation when using Krisp, so we do that here.
10409
- // https://sdk-docs.krisp.ai/docs/getting-started-js
10410
- this.setDefaultConstraints({
10411
- ...this.state.defaultConstraints,
10412
- echoCancellation: false,
10413
- noiseSuppression: false,
10414
- autoGainControl: false,
10415
- });
10416
10407
  const registrationResult = this.registerFilter(noiseCancellation.toFilter());
10417
10408
  this.noiseCancellationRegistration = registrationResult.registered;
10418
10409
  this.unregisterNoiseCancellation = registrationResult.unregister;
@@ -13796,7 +13787,7 @@ class StreamClient {
13796
13787
  this.getUserAgent = () => {
13797
13788
  if (!this.cachedUserAgent) {
13798
13789
  const { clientAppIdentifier = {} } = this.options;
13799
- const { sdkName = 'js', sdkVersion = "1.23.0", ...extras } = clientAppIdentifier;
13790
+ const { sdkName = 'js', sdkVersion = "1.23.1", ...extras } = clientAppIdentifier;
13800
13791
  this.cachedUserAgent = [
13801
13792
  `stream-video-${sdkName}-v${sdkVersion}`,
13802
13793
  ...Object.entries(extras).map(([key, value]) => `${key}=${value}`),