matterbridge 3.0.5-dev-20250529-f277de1 → 3.0.5-dev-20250606-1299c57
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 +3 -1
- package/README-NGINX.md +108 -14
- package/dist/frontend.js +1 -1
- package/npm-shrinkwrap.json +70 -92
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -13,12 +13,14 @@ If you like this project and find it useful, please consider giving it a star on
|
|
|
13
13
|
### Added
|
|
14
14
|
|
|
15
15
|
- [cli]: Added takeHeapSnapshot() and triggerGarbageCollection().
|
|
16
|
-
- [LaundryWasher]:
|
|
16
|
+
- [LaundryWasher]: Added LaundryWasher class and Jest test.
|
|
17
|
+
- [nginx]: Added new example configuration for [nginx](README-NGINX.md).
|
|
17
18
|
|
|
18
19
|
### Changed
|
|
19
20
|
|
|
20
21
|
- [package]: Updated dependencies.
|
|
21
22
|
- [matter.js]: Update to 0.14.0-alpha.0-20250528-d6d12ae65.
|
|
23
|
+
- [matter.js]: Update to 0.14.0. Great job matter.js!
|
|
22
24
|
|
|
23
25
|
### Fixed
|
|
24
26
|
|
package/README-NGINX.md
CHANGED
|
@@ -16,7 +16,43 @@
|
|
|
16
16
|
|
|
17
17
|
## Run matterbridge with nginx
|
|
18
18
|
|
|
19
|
-
### Create a basic nginx configuration file
|
|
19
|
+
### Create a basic nginx configuration file that redirect to http://yourhost:8283
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
sudo nano /etc/nginx/sites-available/matterbridge
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
paste this configuration and if desired change the port to listen (here is 80) and the server_name using yours:
|
|
26
|
+
|
|
27
|
+
```
|
|
28
|
+
server {
|
|
29
|
+
listen 80 default_server;
|
|
30
|
+
listen [::]:80 default_server;
|
|
31
|
+
server_name _;
|
|
32
|
+
|
|
33
|
+
location / {
|
|
34
|
+
# Redirect to Matterbridge frontend
|
|
35
|
+
proxy_pass http://localhost:8283/;
|
|
36
|
+
proxy_set_header Host $host;
|
|
37
|
+
proxy_set_header X-Real-IP $remote_addr;
|
|
38
|
+
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
39
|
+
proxy_set_header X-Forwarded-Proto $scheme;
|
|
40
|
+
|
|
41
|
+
# WebSocket support
|
|
42
|
+
proxy_http_version 1.1;
|
|
43
|
+
proxy_set_header Upgrade $http_upgrade;
|
|
44
|
+
proxy_set_header Connection $http_connection;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
Add matterbridge to enabled sites
|
|
50
|
+
|
|
51
|
+
```
|
|
52
|
+
sudo ln -s /etc/nginx/sites-available/matterbridge /etc/nginx/sites-enabled/
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
### Create a basic nginx configuration file that redirect to http://yourhost:8283/matterbridge
|
|
20
56
|
|
|
21
57
|
```
|
|
22
58
|
sudo nano /etc/nginx/sites-available/matterbridge
|
|
@@ -33,15 +69,73 @@ server {
|
|
|
33
69
|
location /matterbridge/ {
|
|
34
70
|
# Redirect to Matterbridge frontend
|
|
35
71
|
proxy_pass http://localhost:8283/;
|
|
36
|
-
proxy_set_header Host
|
|
37
|
-
proxy_set_header X-Real-IP
|
|
38
|
-
proxy_set_header X-Forwarded-For
|
|
39
|
-
proxy_set_header X-Forwarded-Proto
|
|
72
|
+
proxy_set_header Host $host;
|
|
73
|
+
proxy_set_header X-Real-IP $remote_addr;
|
|
74
|
+
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
75
|
+
proxy_set_header X-Forwarded-Proto $scheme;
|
|
40
76
|
|
|
41
77
|
# WebSocket support
|
|
42
78
|
proxy_http_version 1.1;
|
|
43
|
-
proxy_set_header Upgrade
|
|
44
|
-
proxy_set_header Connection
|
|
79
|
+
proxy_set_header Upgrade $http_upgrade;
|
|
80
|
+
proxy_set_header Connection $http_connection;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
Add matterbridge to enabled sites
|
|
86
|
+
|
|
87
|
+
```
|
|
88
|
+
sudo ln -s /etc/nginx/sites-available/matterbridge /etc/nginx/sites-enabled/
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
### Create an advanced nginx configuration file that redirect to http://yourhost:8283 with ssl
|
|
92
|
+
|
|
93
|
+
```
|
|
94
|
+
sudo nano /etc/nginx/sites-available/matterbridge
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
paste this configuration adding your certificates:
|
|
98
|
+
|
|
99
|
+
```
|
|
100
|
+
# Default server configuration
|
|
101
|
+
|
|
102
|
+
# Redirect all HTTP requests to HTTPS
|
|
103
|
+
server {
|
|
104
|
+
listen 80 default_server;
|
|
105
|
+
listen [::]:80 default_server;
|
|
106
|
+
server_name _;
|
|
107
|
+
|
|
108
|
+
return 301 https://$host$request_uri;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
# HTTPS server configuration
|
|
112
|
+
server {
|
|
113
|
+
listen 443 ssl default_server;
|
|
114
|
+
listen [::]:443 ssl default_server;
|
|
115
|
+
http2 on;
|
|
116
|
+
server_name _;
|
|
117
|
+
|
|
118
|
+
# SSL certificate paths
|
|
119
|
+
ssl_certificate /etc/nginx/certs/cert.pem;
|
|
120
|
+
ssl_certificate_key /etc/nginx/certs/key.pem;
|
|
121
|
+
|
|
122
|
+
# SSL security settings
|
|
123
|
+
ssl_protocols TLSv1.2 TLSv1.3;
|
|
124
|
+
ssl_ciphers HIGH:!aNULL:!MD5;
|
|
125
|
+
ssl_prefer_server_ciphers on;
|
|
126
|
+
|
|
127
|
+
location / {
|
|
128
|
+
# Redirect to Matterbridge frontend
|
|
129
|
+
proxy_pass http://localhost:8283/;
|
|
130
|
+
proxy_set_header Host $host;
|
|
131
|
+
proxy_set_header X-Real-IP $remote_addr;
|
|
132
|
+
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
133
|
+
proxy_set_header X-Forwarded-Proto $scheme;
|
|
134
|
+
|
|
135
|
+
# WebSocket support
|
|
136
|
+
proxy_http_version 1.1;
|
|
137
|
+
proxy_set_header Upgrade $http_upgrade;
|
|
138
|
+
proxy_set_header Connection $http_connection;
|
|
45
139
|
}
|
|
46
140
|
}
|
|
47
141
|
```
|
|
@@ -52,7 +146,7 @@ Add matterbridge to enabled sites
|
|
|
52
146
|
sudo ln -s /etc/nginx/sites-available/matterbridge /etc/nginx/sites-enabled/
|
|
53
147
|
```
|
|
54
148
|
|
|
55
|
-
### Create an advanced nginx configuration file that redirect to ssl
|
|
149
|
+
### Create an advanced nginx configuration file that redirect to http://yourhost/matterbridge with ssl
|
|
56
150
|
|
|
57
151
|
```
|
|
58
152
|
sudo nano /etc/nginx/sites-available/matterbridge
|
|
@@ -98,15 +192,15 @@ server {
|
|
|
98
192
|
location /matterbridge/ {
|
|
99
193
|
# Redirect to Matterbridge frontend
|
|
100
194
|
proxy_pass http://localhost:8283/;
|
|
101
|
-
proxy_set_header Host
|
|
102
|
-
proxy_set_header X-Real-IP
|
|
103
|
-
proxy_set_header X-Forwarded-For
|
|
104
|
-
proxy_set_header X-Forwarded-Proto
|
|
195
|
+
proxy_set_header Host $host;
|
|
196
|
+
proxy_set_header X-Real-IP $remote_addr;
|
|
197
|
+
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
198
|
+
proxy_set_header X-Forwarded-Proto $scheme;
|
|
105
199
|
|
|
106
200
|
# WebSocket support
|
|
107
201
|
proxy_http_version 1.1;
|
|
108
|
-
proxy_set_header Upgrade
|
|
109
|
-
proxy_set_header Connection
|
|
202
|
+
proxy_set_header Upgrade $http_upgrade;
|
|
203
|
+
proxy_set_header Connection $http_connection;
|
|
110
204
|
}
|
|
111
205
|
}
|
|
112
206
|
```
|
package/dist/frontend.js
CHANGED
|
@@ -441,7 +441,7 @@ export class Frontend {
|
|
|
441
441
|
}
|
|
442
442
|
});
|
|
443
443
|
this.expressApp.use((req, res) => {
|
|
444
|
-
this.log.debug(
|
|
444
|
+
this.log.debug(`The frontend sent ${req.url} method ${req.method}: sending index.html as fallback`);
|
|
445
445
|
res.sendFile(path.join(this.matterbridge.rootDirectory, 'frontend/build/index.html'));
|
|
446
446
|
});
|
|
447
447
|
this.log.debug(`Frontend initialized on port ${YELLOW}${this.port}${db} static ${UNDERLINE}${path.join(this.matterbridge.rootDirectory, 'frontend/build')}${UNDERLINEOFF}${rs}`);
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.0.5-dev-
|
|
3
|
+
"version": "3.0.5-dev-20250606-1299c57",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge",
|
|
9
|
-
"version": "3.0.5-dev-
|
|
9
|
+
"version": "3.0.5-dev-20250606-1299c57",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@matter/main": "0.14.0
|
|
12
|
+
"@matter/main": "0.14.0",
|
|
13
13
|
"archiver": "7.0.1",
|
|
14
14
|
"express": "5.1.0",
|
|
15
15
|
"glob": "11.0.2",
|
|
16
|
-
"multer": "2.0.
|
|
16
|
+
"multer": "2.0.1",
|
|
17
17
|
"node-ansi-logger": "3.0.1",
|
|
18
18
|
"node-persist-manager": "1.0.8",
|
|
19
19
|
"ws": "8.18.2"
|
|
@@ -47,86 +47,86 @@
|
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
49
|
"node_modules/@matter/general": {
|
|
50
|
-
"version": "0.14.0
|
|
51
|
-
"resolved": "https://registry.npmjs.org/@matter/general/-/general-0.14.0
|
|
52
|
-
"integrity": "sha512-
|
|
50
|
+
"version": "0.14.0",
|
|
51
|
+
"resolved": "https://registry.npmjs.org/@matter/general/-/general-0.14.0.tgz",
|
|
52
|
+
"integrity": "sha512-lTaJgeWRlwr+4JZr0RcuwSMqbZMa/uPpDWG5P2RC7N/QvmL3fPoRjfdWYjCKXZkGfeG2XXIezQGCkp0z2BWLLQ==",
|
|
53
53
|
"license": "Apache-2.0",
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@noble/curves": "^1.9.1"
|
|
56
56
|
}
|
|
57
57
|
},
|
|
58
58
|
"node_modules/@matter/main": {
|
|
59
|
-
"version": "0.14.0
|
|
60
|
-
"resolved": "https://registry.npmjs.org/@matter/main/-/main-0.14.0
|
|
61
|
-
"integrity": "sha512-
|
|
59
|
+
"version": "0.14.0",
|
|
60
|
+
"resolved": "https://registry.npmjs.org/@matter/main/-/main-0.14.0.tgz",
|
|
61
|
+
"integrity": "sha512-fBXQtBm5+ySWg7yA4FyiCl/olbirWeBSt8ExXCBoMX2blByiYgKdj7HiHWUK0ksgNGXwh8qX62jS3+VFEdWNBQ==",
|
|
62
62
|
"license": "Apache-2.0",
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@matter/general": "0.14.0
|
|
65
|
-
"@matter/model": "0.14.0
|
|
66
|
-
"@matter/node": "0.14.0
|
|
67
|
-
"@matter/protocol": "0.14.0
|
|
68
|
-
"@matter/types": "0.14.0
|
|
64
|
+
"@matter/general": "0.14.0",
|
|
65
|
+
"@matter/model": "0.14.0",
|
|
66
|
+
"@matter/node": "0.14.0",
|
|
67
|
+
"@matter/protocol": "0.14.0",
|
|
68
|
+
"@matter/types": "0.14.0"
|
|
69
69
|
},
|
|
70
70
|
"optionalDependencies": {
|
|
71
|
-
"@matter/nodejs": "0.14.0
|
|
71
|
+
"@matter/nodejs": "0.14.0"
|
|
72
72
|
}
|
|
73
73
|
},
|
|
74
74
|
"node_modules/@matter/model": {
|
|
75
|
-
"version": "0.14.0
|
|
76
|
-
"resolved": "https://registry.npmjs.org/@matter/model/-/model-0.14.0
|
|
77
|
-
"integrity": "sha512-
|
|
75
|
+
"version": "0.14.0",
|
|
76
|
+
"resolved": "https://registry.npmjs.org/@matter/model/-/model-0.14.0.tgz",
|
|
77
|
+
"integrity": "sha512-m4j+AY4lJCi9VE5bikUMwRIVuNWfjFIjhjD6VonTuYWVvqMGttWRQ3jTZV9qszkgur9YvOW2REmCJKvzB/KPqw==",
|
|
78
78
|
"license": "Apache-2.0",
|
|
79
79
|
"dependencies": {
|
|
80
|
-
"@matter/general": "0.14.0
|
|
80
|
+
"@matter/general": "0.14.0"
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
83
|
"node_modules/@matter/node": {
|
|
84
|
-
"version": "0.14.0
|
|
85
|
-
"resolved": "https://registry.npmjs.org/@matter/node/-/node-0.14.0
|
|
86
|
-
"integrity": "sha512-
|
|
84
|
+
"version": "0.14.0",
|
|
85
|
+
"resolved": "https://registry.npmjs.org/@matter/node/-/node-0.14.0.tgz",
|
|
86
|
+
"integrity": "sha512-QlK8Dg4YRD3db+CNZGnp0KVC1PsIbBwMzIAGh4TiO4ln68ltjRiOjNwYxb62F9YTSQhTuEQNxxiSfhK2nkYe2A==",
|
|
87
87
|
"license": "Apache-2.0",
|
|
88
88
|
"dependencies": {
|
|
89
|
-
"@matter/general": "0.14.0
|
|
90
|
-
"@matter/model": "0.14.0
|
|
91
|
-
"@matter/protocol": "0.14.0
|
|
92
|
-
"@matter/types": "0.14.0
|
|
89
|
+
"@matter/general": "0.14.0",
|
|
90
|
+
"@matter/model": "0.14.0",
|
|
91
|
+
"@matter/protocol": "0.14.0",
|
|
92
|
+
"@matter/types": "0.14.0"
|
|
93
93
|
}
|
|
94
94
|
},
|
|
95
95
|
"node_modules/@matter/nodejs": {
|
|
96
|
-
"version": "0.14.0
|
|
97
|
-
"resolved": "https://registry.npmjs.org/@matter/nodejs/-/nodejs-0.14.0
|
|
98
|
-
"integrity": "sha512
|
|
96
|
+
"version": "0.14.0",
|
|
97
|
+
"resolved": "https://registry.npmjs.org/@matter/nodejs/-/nodejs-0.14.0.tgz",
|
|
98
|
+
"integrity": "sha512-/XkBV5yX8ZH2SOkR4DDLoBivSONpEKk88QNf7AcTCf2wDadvM+hETsQ0Kli6U8pInpKTG/vghec+0bQ50nvO/A==",
|
|
99
99
|
"license": "Apache-2.0",
|
|
100
100
|
"optional": true,
|
|
101
101
|
"dependencies": {
|
|
102
|
-
"@matter/general": "0.14.0
|
|
103
|
-
"@matter/node": "0.14.0
|
|
104
|
-
"@matter/protocol": "0.14.0
|
|
105
|
-
"@matter/types": "0.14.0
|
|
102
|
+
"@matter/general": "0.14.0",
|
|
103
|
+
"@matter/node": "0.14.0",
|
|
104
|
+
"@matter/protocol": "0.14.0",
|
|
105
|
+
"@matter/types": "0.14.0"
|
|
106
106
|
},
|
|
107
107
|
"engines": {
|
|
108
108
|
"node": ">=18.0.0"
|
|
109
109
|
}
|
|
110
110
|
},
|
|
111
111
|
"node_modules/@matter/protocol": {
|
|
112
|
-
"version": "0.14.0
|
|
113
|
-
"resolved": "https://registry.npmjs.org/@matter/protocol/-/protocol-0.14.0
|
|
114
|
-
"integrity": "sha512-
|
|
112
|
+
"version": "0.14.0",
|
|
113
|
+
"resolved": "https://registry.npmjs.org/@matter/protocol/-/protocol-0.14.0.tgz",
|
|
114
|
+
"integrity": "sha512-lmnXEXiO9/dEKOL/0n4jTXnEhwDwZvkRIu9QU6miuETMjBoG0spUkV6+EPWbE1+j/vXr21m65NoIvUtDoS2SKw==",
|
|
115
115
|
"license": "Apache-2.0",
|
|
116
116
|
"dependencies": {
|
|
117
|
-
"@matter/general": "0.14.0
|
|
118
|
-
"@matter/model": "0.14.0
|
|
119
|
-
"@matter/types": "0.14.0
|
|
117
|
+
"@matter/general": "0.14.0",
|
|
118
|
+
"@matter/model": "0.14.0",
|
|
119
|
+
"@matter/types": "0.14.0"
|
|
120
120
|
}
|
|
121
121
|
},
|
|
122
122
|
"node_modules/@matter/types": {
|
|
123
|
-
"version": "0.14.0
|
|
124
|
-
"resolved": "https://registry.npmjs.org/@matter/types/-/types-0.14.0
|
|
125
|
-
"integrity": "sha512-
|
|
123
|
+
"version": "0.14.0",
|
|
124
|
+
"resolved": "https://registry.npmjs.org/@matter/types/-/types-0.14.0.tgz",
|
|
125
|
+
"integrity": "sha512-xOm/Mbs2Uqota4jJwAjl8kzsz8l1wIA216FslzSpS4TmzCskQNI8j7JIROlGkJbdMeZvBhFLirYnwilLYfQ6zw==",
|
|
126
126
|
"license": "Apache-2.0",
|
|
127
127
|
"dependencies": {
|
|
128
|
-
"@matter/general": "0.14.0
|
|
129
|
-
"@matter/model": "0.14.0
|
|
128
|
+
"@matter/general": "0.14.0",
|
|
129
|
+
"@matter/model": "0.14.0"
|
|
130
130
|
}
|
|
131
131
|
},
|
|
132
132
|
"node_modules/@noble/curves": {
|
|
@@ -529,54 +529,32 @@
|
|
|
529
529
|
}
|
|
530
530
|
},
|
|
531
531
|
"node_modules/concat-stream": {
|
|
532
|
-
"version": "
|
|
533
|
-
"resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-
|
|
534
|
-
"integrity": "sha512-
|
|
532
|
+
"version": "2.0.0",
|
|
533
|
+
"resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz",
|
|
534
|
+
"integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==",
|
|
535
535
|
"engines": [
|
|
536
|
-
"node >= 0
|
|
536
|
+
"node >= 6.0"
|
|
537
537
|
],
|
|
538
538
|
"license": "MIT",
|
|
539
539
|
"dependencies": {
|
|
540
540
|
"buffer-from": "^1.0.0",
|
|
541
541
|
"inherits": "^2.0.3",
|
|
542
|
-
"readable-stream": "^
|
|
542
|
+
"readable-stream": "^3.0.2",
|
|
543
543
|
"typedarray": "^0.0.6"
|
|
544
544
|
}
|
|
545
545
|
},
|
|
546
|
-
"node_modules/concat-stream/node_modules/isarray": {
|
|
547
|
-
"version": "1.0.0",
|
|
548
|
-
"resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
|
|
549
|
-
"integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
|
|
550
|
-
"license": "MIT"
|
|
551
|
-
},
|
|
552
546
|
"node_modules/concat-stream/node_modules/readable-stream": {
|
|
553
|
-
"version": "
|
|
554
|
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-
|
|
555
|
-
"integrity": "sha512-
|
|
556
|
-
"license": "MIT",
|
|
557
|
-
"dependencies": {
|
|
558
|
-
"core-util-is": "~1.0.0",
|
|
559
|
-
"inherits": "~2.0.3",
|
|
560
|
-
"isarray": "~1.0.0",
|
|
561
|
-
"process-nextick-args": "~2.0.0",
|
|
562
|
-
"safe-buffer": "~5.1.1",
|
|
563
|
-
"string_decoder": "~1.1.1",
|
|
564
|
-
"util-deprecate": "~1.0.1"
|
|
565
|
-
}
|
|
566
|
-
},
|
|
567
|
-
"node_modules/concat-stream/node_modules/safe-buffer": {
|
|
568
|
-
"version": "5.1.2",
|
|
569
|
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
|
570
|
-
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
|
571
|
-
"license": "MIT"
|
|
572
|
-
},
|
|
573
|
-
"node_modules/concat-stream/node_modules/string_decoder": {
|
|
574
|
-
"version": "1.1.1",
|
|
575
|
-
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
|
|
576
|
-
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
|
547
|
+
"version": "3.6.2",
|
|
548
|
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
|
|
549
|
+
"integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
|
|
577
550
|
"license": "MIT",
|
|
578
551
|
"dependencies": {
|
|
579
|
-
"
|
|
552
|
+
"inherits": "^2.0.3",
|
|
553
|
+
"string_decoder": "^1.1.1",
|
|
554
|
+
"util-deprecate": "^1.0.1"
|
|
555
|
+
},
|
|
556
|
+
"engines": {
|
|
557
|
+
"node": ">= 6"
|
|
580
558
|
}
|
|
581
559
|
},
|
|
582
560
|
"node_modules/content-disposition": {
|
|
@@ -1280,18 +1258,18 @@
|
|
|
1280
1258
|
"license": "MIT"
|
|
1281
1259
|
},
|
|
1282
1260
|
"node_modules/multer": {
|
|
1283
|
-
"version": "2.0.
|
|
1284
|
-
"resolved": "https://registry.npmjs.org/multer/-/multer-2.0.
|
|
1285
|
-
"integrity": "sha512-
|
|
1261
|
+
"version": "2.0.1",
|
|
1262
|
+
"resolved": "https://registry.npmjs.org/multer/-/multer-2.0.1.tgz",
|
|
1263
|
+
"integrity": "sha512-Ug8bXeTIUlxurg8xLTEskKShvcKDZALo1THEX5E41pYCD2sCVub5/kIRIGqWNoqV6szyLyQKV6mD4QUrWE5GCQ==",
|
|
1286
1264
|
"license": "MIT",
|
|
1287
1265
|
"dependencies": {
|
|
1288
1266
|
"append-field": "^1.0.0",
|
|
1289
|
-
"busboy": "^1.
|
|
1290
|
-
"concat-stream": "^
|
|
1291
|
-
"mkdirp": "^0.5.
|
|
1267
|
+
"busboy": "^1.6.0",
|
|
1268
|
+
"concat-stream": "^2.0.0",
|
|
1269
|
+
"mkdirp": "^0.5.6",
|
|
1292
1270
|
"object-assign": "^4.1.1",
|
|
1293
|
-
"type-is": "^1.6.
|
|
1294
|
-
"xtend": "^4.0.
|
|
1271
|
+
"type-is": "^1.6.18",
|
|
1272
|
+
"xtend": "^4.0.2"
|
|
1295
1273
|
},
|
|
1296
1274
|
"engines": {
|
|
1297
1275
|
"node": ">= 10.16.0"
|
|
@@ -1835,9 +1813,9 @@
|
|
|
1835
1813
|
}
|
|
1836
1814
|
},
|
|
1837
1815
|
"node_modules/streamx": {
|
|
1838
|
-
"version": "2.22.
|
|
1839
|
-
"resolved": "https://registry.npmjs.org/streamx/-/streamx-2.22.
|
|
1840
|
-
"integrity": "sha512-
|
|
1816
|
+
"version": "2.22.1",
|
|
1817
|
+
"resolved": "https://registry.npmjs.org/streamx/-/streamx-2.22.1.tgz",
|
|
1818
|
+
"integrity": "sha512-znKXEBxfatz2GBNK02kRnCXjV+AA4kjZIUxeWSr3UGirZMJfTE9uiwKHobnbgxWyL/JWro8tTq+vOqAK1/qbSA==",
|
|
1841
1819
|
"license": "MIT",
|
|
1842
1820
|
"dependencies": {
|
|
1843
1821
|
"fast-fifo": "^1.3.2",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.0.5-dev-
|
|
3
|
+
"version": "3.0.5-dev-20250606-1299c57",
|
|
4
4
|
"description": "Matterbridge plugin manager for Matter",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -94,11 +94,11 @@
|
|
|
94
94
|
}
|
|
95
95
|
},
|
|
96
96
|
"dependencies": {
|
|
97
|
-
"@matter/main": "0.14.0
|
|
97
|
+
"@matter/main": "0.14.0",
|
|
98
98
|
"archiver": "7.0.1",
|
|
99
99
|
"express": "5.1.0",
|
|
100
100
|
"glob": "11.0.2",
|
|
101
|
-
"multer": "2.0.
|
|
101
|
+
"multer": "2.0.1",
|
|
102
102
|
"node-ansi-logger": "3.0.1",
|
|
103
103
|
"node-persist-manager": "1.0.8",
|
|
104
104
|
"ws": "8.18.2"
|