mediasoup 3.10.9 → 3.10.10

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.
@@ -489,7 +489,7 @@ class Router extends EnhancedEventEmitter_1.EnhancedEventEmitter {
489
489
  if (producer.closed)
490
490
  throw new errors_1.InvalidStateError('original Producer closed');
491
491
  // Ensure that producer.paused has not changed in the meanwhile and, if
492
- // so, sych the pipeProducer.
492
+ // so, sync the pipeProducer.
493
493
  if (pipeProducer.paused !== producer.paused) {
494
494
  if (producer.paused)
495
495
  await pipeProducer.pause();
@@ -81,7 +81,7 @@ class Worker extends EnhancedEventEmitter_1.EnhancedEventEmitter {
81
81
  // options
82
82
  {
83
83
  env: {
84
- MEDIASOUP_VERSION: '3.10.9',
84
+ MEDIASOUP_VERSION: '3.10.10',
85
85
  // Let the worker process inherit all environment variables, useful
86
86
  // if a custom and not in the path GCC is used so the user can set
87
87
  // LD_LIBRARY_PATH environment variable for runtime.
@@ -9,7 +9,7 @@ export { types };
9
9
  /**
10
10
  * Expose mediasoup version.
11
11
  */
12
- export declare const version = "3.10.9";
12
+ export declare const version = "3.10.10";
13
13
  /**
14
14
  * Expose parseScalabilityMode() function.
15
15
  */
package/node/lib/index.js CHANGED
@@ -11,7 +11,7 @@ exports.types = types;
11
11
  /**
12
12
  * Expose mediasoup version.
13
13
  */
14
- exports.version = '3.10.9';
14
+ exports.version = '3.10.10';
15
15
  /**
16
16
  * Expose parseScalabilityMode() function.
17
17
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mediasoup",
3
- "version": "3.10.9",
3
+ "version": "3.10.10",
4
4
  "description": "Cutting Edge WebRTC Video Conferencing",
5
5
  "contributors": [
6
6
  "Iñaki Baz Castillo <ibc@aliax.net> (https://inakibaz.me)",
@@ -78,13 +78,13 @@
78
78
  "devDependencies": {
79
79
  "@types/debug": "^4.1.7",
80
80
  "@types/uuid": "^8.3.4",
81
- "@typescript-eslint/eslint-plugin": "^5.38.1",
82
- "@typescript-eslint/parser": "^5.38.1",
83
- "eslint": "^8.24.0",
84
- "eslint-plugin-jest": "^26.8.7",
85
- "jest": "^27.5.1",
81
+ "@typescript-eslint/eslint-plugin": "^5.40.1",
82
+ "@typescript-eslint/parser": "^5.40.1",
83
+ "eslint": "^8.25.0",
84
+ "eslint-plugin-jest": "^27.1.3",
85
+ "jest": "^29.2.1",
86
86
  "jest-tobetype": "^1.2.3",
87
- "open-cli": "^7.0.1",
87
+ "open-cli": "^7.1.0",
88
88
  "pick-port": "^1.0.1",
89
89
  "sctp": "^1.0.0",
90
90
  "tsc-watch": "^5.0.3",
@@ -31,7 +31,7 @@ namespace PayloadChannel
31
31
  notification.append(targetId);
32
32
  notification.append("\",\"event\":\"");
33
33
  notification.append(event);
34
- notification.append("}");
34
+ notification.append("\"}");
35
35
 
36
36
  PayloadChannelNotifier::payloadChannel->Send(notification, payload, payloadLen);
37
37
  }