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.
- package/node/lib/Worker.js +1 -1
- package/node/lib/index.d.ts +1 -1
- package/node/lib/index.js +1 -1
- package/npm-scripts.js +8 -1
- package/package.json +2 -2
package/node/lib/Worker.js
CHANGED
|
@@ -90,7 +90,7 @@ class Worker extends EnhancedEventEmitter_1.EnhancedEventEmitter {
|
|
|
90
90
|
// options
|
|
91
91
|
{
|
|
92
92
|
env: {
|
|
93
|
-
MEDIASOUP_VERSION: '3.12.
|
|
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.
|
package/node/lib/index.d.ts
CHANGED
package/node/lib/index.js
CHANGED
package/npm-scripts.js
CHANGED
|
@@ -547,7 +547,14 @@ async function downloadPrebuiltWorker()
|
|
|
547
547
|
|
|
548
548
|
try
|
|
549
549
|
{
|
|
550
|
-
execSync(
|
|
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.
|
|
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.
|
|
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",
|