@stream-io/video-client 1.25.2 → 1.25.3

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,11 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [1.25.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.25.2...@stream-io/video-client-1.25.3) (2025-07-03)
6
+
7
+ - bump the default test timeout ([bea27db](https://github.com/GetStream/stream-video-js/commit/bea27db1922a6f2a0899375d1a4cade1eb1291b5))
8
+ - increase axios timeout ([d9cc4ac](https://github.com/GetStream/stream-video-js/commit/d9cc4ac69f58d12d97af0c714df564349c17c9b5))
9
+
5
10
  ## [1.25.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.25.1...@stream-io/video-client-1.25.2) (2025-07-02)
6
11
 
7
12
  ### Bug Fixes
@@ -5810,7 +5810,7 @@ const aggregate = (stats) => {
5810
5810
  return report;
5811
5811
  };
5812
5812
 
5813
- const version = "1.25.2";
5813
+ const version = "1.25.3";
5814
5814
  const [major, minor, patch] = version.split('.');
5815
5815
  let sdkInfo = {
5816
5816
  type: SdkType.PLAIN_JAVASCRIPT,
@@ -14273,7 +14273,7 @@ class StreamClient {
14273
14273
  this.getUserAgent = () => {
14274
14274
  if (!this.cachedUserAgent) {
14275
14275
  const { clientAppIdentifier = {} } = this.options;
14276
- const { sdkName = 'js', sdkVersion = "1.25.2", ...extras } = clientAppIdentifier;
14276
+ const { sdkName = 'js', sdkVersion = "1.25.3", ...extras } = clientAppIdentifier;
14277
14277
  this.cachedUserAgent = [
14278
14278
  `stream-video-${sdkName}-v${sdkVersion}`,
14279
14279
  ...Object.entries(extras).map(([key, value]) => `${key}=${value}`),
package/dist/index.cjs.js CHANGED
@@ -5812,7 +5812,7 @@ const aggregate = (stats) => {
5812
5812
  return report;
5813
5813
  };
5814
5814
 
5815
- const version = "1.25.2";
5815
+ const version = "1.25.3";
5816
5816
  const [major, minor, patch] = version.split('.');
5817
5817
  let sdkInfo = {
5818
5818
  type: SdkType.PLAIN_JAVASCRIPT,
@@ -14273,7 +14273,7 @@ class StreamClient {
14273
14273
  this.getUserAgent = () => {
14274
14274
  if (!this.cachedUserAgent) {
14275
14275
  const { clientAppIdentifier = {} } = this.options;
14276
- const { sdkName = 'js', sdkVersion = "1.25.2", ...extras } = clientAppIdentifier;
14276
+ const { sdkName = 'js', sdkVersion = "1.25.3", ...extras } = clientAppIdentifier;
14277
14277
  this.cachedUserAgent = [
14278
14278
  `stream-video-${sdkName}-v${sdkVersion}`,
14279
14279
  ...Object.entries(extras).map(([key, value]) => `${key}=${value}`),
package/dist/index.es.js CHANGED
@@ -5811,7 +5811,7 @@ const aggregate = (stats) => {
5811
5811
  return report;
5812
5812
  };
5813
5813
 
5814
- const version = "1.25.2";
5814
+ const version = "1.25.3";
5815
5815
  const [major, minor, patch] = version.split('.');
5816
5816
  let sdkInfo = {
5817
5817
  type: SdkType.PLAIN_JAVASCRIPT,
@@ -14272,7 +14272,7 @@ class StreamClient {
14272
14272
  this.getUserAgent = () => {
14273
14273
  if (!this.cachedUserAgent) {
14274
14274
  const { clientAppIdentifier = {} } = this.options;
14275
- const { sdkName = 'js', sdkVersion = "1.25.2", ...extras } = clientAppIdentifier;
14275
+ const { sdkName = 'js', sdkVersion = "1.25.3", ...extras } = clientAppIdentifier;
14276
14276
  this.cachedUserAgent = [
14277
14277
  `stream-video-${sdkName}-v${sdkVersion}`,
14278
14278
  ...Object.entries(extras).map(([key, value]) => `${key}=${value}`),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stream-io/video-client",
3
- "version": "1.25.2",
3
+ "version": "1.25.3",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.es.js",
6
6
  "browser": "dist/index.browser.es.js",
@@ -29,7 +29,7 @@ let client: StreamVideoClient;
29
29
  beforeEach(async () => {
30
30
  client = new StreamVideoClient({
31
31
  apiKey,
32
- options: { browser: true },
32
+ options: { browser: true, timeout: 15000 },
33
33
  tokenProvider,
34
34
  user: { id: 'jane' },
35
35
  });
@@ -35,6 +35,7 @@ describe('StreamVideoClient - coordinator API', () => {
35
35
  client = new StreamVideoClient(apiKey, {
36
36
  // tests run in node, so we have to fake being in browser env
37
37
  browser: true,
38
+ timeout: 15000,
38
39
  });
39
40
  client.connectUser(user, tokenProvider(user.id));
40
41
  });
@@ -29,6 +29,7 @@ describe('StreamVideoClient', () => {
29
29
  client = new StreamVideoClient(apiKey, {
30
30
  // tests run in node, so we have to fake being in browser env
31
31
  browser: true,
32
+ timeout: 15000,
32
33
  });
33
34
  });
34
35