mediasoup 3.12.12 → 3.12.13
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.mjs +1 -1
- package/package.json +11 -11
- package/worker/Makefile +1 -1
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.13',
|
|
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.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mediasoup",
|
|
3
|
-
"version": "3.12.
|
|
3
|
+
"version": "3.12.13",
|
|
4
4
|
"description": "Cutting Edge WebRTC Video Conferencing",
|
|
5
5
|
"contributors": [
|
|
6
6
|
"Iñaki Baz Castillo <ibc@aliax.net> (https://inakibaz.me)",
|
|
@@ -92,20 +92,20 @@
|
|
|
92
92
|
"node-fetch": "^3.3.2",
|
|
93
93
|
"supports-color": "^9.4.0",
|
|
94
94
|
"tar": "^6.2.0",
|
|
95
|
-
"uuid": "^9.0.
|
|
95
|
+
"uuid": "^9.0.1"
|
|
96
96
|
},
|
|
97
97
|
"devDependencies": {
|
|
98
98
|
"@octokit/rest": "^20.0.1",
|
|
99
99
|
"@types/debug": "^4.1.8",
|
|
100
|
-
"@types/jest": "^29.5.
|
|
101
|
-
"@types/node": "^20.
|
|
102
|
-
"@types/uuid": "^9.0.
|
|
103
|
-
"@typescript-eslint/eslint-plugin": "^6.
|
|
104
|
-
"@typescript-eslint/parser": "^6.
|
|
105
|
-
"eslint": "^8.
|
|
106
|
-
"eslint-plugin-jest": "^27.
|
|
107
|
-
"jest": "^29.
|
|
108
|
-
"marked": "^
|
|
100
|
+
"@types/jest": "^29.5.5",
|
|
101
|
+
"@types/node": "^20.6.3",
|
|
102
|
+
"@types/uuid": "^9.0.4",
|
|
103
|
+
"@typescript-eslint/eslint-plugin": "^6.7.2",
|
|
104
|
+
"@typescript-eslint/parser": "^6.7.2",
|
|
105
|
+
"eslint": "^8.49.0",
|
|
106
|
+
"eslint-plugin-jest": "^27.4.0",
|
|
107
|
+
"jest": "^29.7.0",
|
|
108
|
+
"marked": "^9.0.3",
|
|
109
109
|
"open-cli": "^7.2.0",
|
|
110
110
|
"pick-port": "^1.0.1",
|
|
111
111
|
"sctp": "^1.0.0",
|
package/worker/Makefile
CHANGED
|
@@ -20,7 +20,7 @@ PIP_DIR = $(MEDIASOUP_OUT_DIR)/pip
|
|
|
20
20
|
INSTALL_DIR ?= $(MEDIASOUP_OUT_DIR)/$(MEDIASOUP_BUILDTYPE)
|
|
21
21
|
BUILD_DIR ?= $(INSTALL_DIR)/build
|
|
22
22
|
MESON ?= $(PIP_DIR)/bin/meson
|
|
23
|
-
MESON_VERSION ?= 1.1
|
|
23
|
+
MESON_VERSION ?= 1.2.1
|
|
24
24
|
# `MESON_ARGS` can be used to provide extra configuration parameters to Meson,
|
|
25
25
|
# such as adding defines or changing optimization options. For instance, use
|
|
26
26
|
# `MESON_ARGS="-Dms_log_trace=true -Dms_log_file_line=true" npm i` to compile
|