mediasoup 3.12.1 → 3.12.2

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.
@@ -90,7 +90,7 @@ class Worker extends EnhancedEventEmitter_1.EnhancedEventEmitter {
90
90
  // options
91
91
  {
92
92
  env: {
93
- MEDIASOUP_VERSION: '3.12.1',
93
+ MEDIASOUP_VERSION: '3.12.2',
94
94
  // Let the worker process inherit all environment variables, useful
95
95
  // if a custom and not in the path GCC is used so the user can set
96
96
  // LD_LIBRARY_PATH environment variable for runtime.
@@ -10,7 +10,7 @@ export { types };
10
10
  /**
11
11
  * Expose mediasoup version.
12
12
  */
13
- export declare const version = "3.12.1";
13
+ export declare const version = "3.12.2";
14
14
  /**
15
15
  * Expose parseScalabilityMode() function.
16
16
  */
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.12.1';
14
+ exports.version = '3.12.2';
15
15
  /**
16
16
  * Expose parseScalabilityMode() function.
17
17
  */
package/npm-scripts.js CHANGED
@@ -547,7 +547,14 @@ async function downloadPrebuiltWorker()
547
547
 
548
548
  try
549
549
  {
550
- execSync(`${WORKER_RELEASE_BIN_PATH}`, { stdio: [ 'ignore', 'ignore', 'ignore' ] });
550
+ execSync(
551
+ `${WORKER_RELEASE_BIN_PATH}`,
552
+ {
553
+ stdio : [ 'ignore', 'ignore', 'ignore' ],
554
+ // Ensure no env is passed to avoid accidents.
555
+ env : {}
556
+ }
557
+ );
551
558
  }
552
559
  catch (error)
553
560
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mediasoup",
3
- "version": "3.12.1",
3
+ "version": "3.12.2",
4
4
  "description": "Cutting Edge WebRTC Video Conferencing",
5
5
  "contributors": [
6
6
  "Iñaki Baz Castillo <ibc@aliax.net> (https://inakibaz.me)",
@@ -105,7 +105,7 @@
105
105
  "eslint": "^8.41.0",
106
106
  "eslint-plugin-jest": "^27.2.1",
107
107
  "jest": "^29.5.0",
108
- "marked": "^5.0.2",
108
+ "marked": "^5.0.3",
109
109
  "open-cli": "^7.2.0",
110
110
  "pick-port": "^1.0.1",
111
111
  "sctp": "^1.0.0",