matterbridge 3.4.7-dev-20260112-a00b2bf → 3.4.7-dev-20260113-0917d83

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 CHANGED
@@ -28,7 +28,7 @@ Advantages:
28
28
  - individual plugin isolation in childbridge mode;
29
29
  - ability to update the plugin in childbridge mode without restarting matterbridge;
30
30
 
31
- ## [3.4.7] - Dev branch
31
+ ## [3.4.7] - 2026-01-12
32
32
 
33
33
  ### Added
34
34
 
@@ -41,12 +41,18 @@ Advantages:
41
41
  - [bug_report]: Updated the bug report issue template.
42
42
  - [dockerfile]: Refactored dockerfiles and entrypoints for main, dev, ubuntu and alpine.
43
43
  - [docker]: Removed from docker hub all images untagged or tag 1.x.x and 2.x.x (350 GB).
44
+ - [eslint]: Added --cache.
45
+ - [prettier]: Added --cache.
44
46
 
45
47
  ### Changed
46
48
 
47
49
  - [package]: Updated dependencies.
48
- - [dgram]: Bumbed version number to 1.0.2 and excluded Tailscale interfaces in Dgram class.
49
- - [network]: Bumbed version number to 1.0.2.
50
+ - [dgram]: Bumbed version number to 1.0.3 and excluded virtual, overlay, or tunnel interfaces in Dgram class.
51
+ - [network]: Bumbed version number to 1.0.3.
52
+
53
+ ### Fixed
54
+
55
+ - [macOS]: Fixed the macOS launchctl configuration file. Update it from the README-MACOS-PLIST.
50
56
 
51
57
  <a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
52
58
 
@@ -56,8 +56,6 @@ It should output something like:
56
56
  /usr/local/bin/node
57
57
  ```
58
58
 
59
- In this case you will need in the step below to replace **_MYNODEPATH_** with /usr/local/bin
60
-
61
59
  ### First create the Matterbridge directories
62
60
 
63
61
  This will create the required directories if they don't exist and install matterbridge in the matterbridge global node_modules directory
@@ -82,7 +80,7 @@ sudo NPM_CONFIG_PREFIX=/usr/local/etc/matterbridge/.npm-global npm install -g ma
82
80
  sudo nano /Library/LaunchDaemons/matterbridge.plist
83
81
  ```
84
82
 
85
- - add the following to the file, replacing **_MYNODEPATH_** with the path found in the step before:
83
+ - add the following to the file:
86
84
 
87
85
  ```
88
86
  <?xml version="1.0" encoding="UTF-8"?>
@@ -92,7 +90,7 @@ sudo nano /Library/LaunchDaemons/matterbridge.plist
92
90
  <key>EnvironmentVariables</key>
93
91
  <dict>
94
92
  <key>PATH</key>
95
- <string>/usr/local/etc/matterbridge/.npm-global/bin:MYNODEPATH</string>
93
+ <string>/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/etc/matterbridge/.npm-global/bin</string>
96
94
  <key>NPM_CONFIG_PREFIX</key>
97
95
  <string>/usr/local/etc/matterbridge/.npm-global</string>
98
96
  <key>HOME</key>
@@ -133,7 +133,7 @@ export class Dgram extends EventEmitter {
133
133
  }
134
134
  if (!networkInterface) {
135
135
  for (const [interfaceName, interfaceDetails] of Object.entries(interfaces)) {
136
- if (interfaceName.toLowerCase().includes('tailscale'))
136
+ if (!networkInterface && this.excludedInterfaceNamePattern.test(interfaceName))
137
137
  continue;
138
138
  if (!interfaceDetails)
139
139
  continue;
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "matterbridge",
3
- "version": "3.4.7-dev-20260112-a00b2bf",
3
+ "version": "3.4.7-dev-20260113-0917d83",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "matterbridge",
9
- "version": "3.4.7-dev-20260112-a00b2bf",
9
+ "version": "3.4.7-dev-20260113-0917d83",
10
10
  "license": "Apache-2.0",
11
11
  "workspaces": [
12
12
  "packages/jest-utils",
@@ -16,7 +16,7 @@
16
16
  ],
17
17
  "dependencies": {
18
18
  "@matter/main": "0.15.6",
19
- "@matterbridge/dgram": "0.0.1",
19
+ "@matterbridge/dgram": "0.0.2",
20
20
  "@matterbridge/jest-utils": "0.0.1",
21
21
  "@matterbridge/utils": "0.0.1",
22
22
  "@matterbridge/vitest-utils": "0.0.1",
@@ -42,13 +42,13 @@
42
42
  }
43
43
  },
44
44
  "node_modules/@babel/code-frame": {
45
- "version": "7.27.1",
46
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
47
- "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
45
+ "version": "7.28.6",
46
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.28.6.tgz",
47
+ "integrity": "sha512-JYgintcMjRiCvS8mMECzaEn+m3PfoQiyqukOMCCVQtoJGYJw8j/8LBJEiqkHLkfwCcs74E3pbAUFNg7d9VNJ+Q==",
48
48
  "dev": true,
49
49
  "license": "MIT",
50
50
  "dependencies": {
51
- "@babel/helper-validator-identifier": "^7.27.1",
51
+ "@babel/helper-validator-identifier": "^7.28.5",
52
52
  "js-tokens": "^4.0.0",
53
53
  "picocolors": "^1.1.1"
54
54
  },
@@ -64,9 +64,9 @@
64
64
  "license": "MIT"
65
65
  },
66
66
  "node_modules/@babel/compat-data": {
67
- "version": "7.28.5",
68
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz",
69
- "integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==",
67
+ "version": "7.28.6",
68
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.6.tgz",
69
+ "integrity": "sha512-2lfu57JtzctfIrcGMz992hyLlByuzgIk58+hhGCxjKZ3rWI82NnVLjXcaTqkI2NvlcvOskZaiZ5kjUALo3Lpxg==",
70
70
  "dev": true,
71
71
  "license": "MIT",
72
72
  "engines": {
@@ -74,21 +74,21 @@
74
74
  }
75
75
  },
76
76
  "node_modules/@babel/core": {
77
- "version": "7.28.5",
78
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz",
79
- "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==",
77
+ "version": "7.28.6",
78
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.6.tgz",
79
+ "integrity": "sha512-H3mcG6ZDLTlYfaSNi0iOKkigqMFvkTKlGUYlD8GW7nNOYRrevuA46iTypPyv+06V3fEmvvazfntkBU34L0azAw==",
80
80
  "dev": true,
81
81
  "license": "MIT",
82
82
  "dependencies": {
83
- "@babel/code-frame": "^7.27.1",
84
- "@babel/generator": "^7.28.5",
85
- "@babel/helper-compilation-targets": "^7.27.2",
86
- "@babel/helper-module-transforms": "^7.28.3",
87
- "@babel/helpers": "^7.28.4",
88
- "@babel/parser": "^7.28.5",
89
- "@babel/template": "^7.27.2",
90
- "@babel/traverse": "^7.28.5",
91
- "@babel/types": "^7.28.5",
83
+ "@babel/code-frame": "^7.28.6",
84
+ "@babel/generator": "^7.28.6",
85
+ "@babel/helper-compilation-targets": "^7.28.6",
86
+ "@babel/helper-module-transforms": "^7.28.6",
87
+ "@babel/helpers": "^7.28.6",
88
+ "@babel/parser": "^7.28.6",
89
+ "@babel/template": "^7.28.6",
90
+ "@babel/traverse": "^7.28.6",
91
+ "@babel/types": "^7.28.6",
92
92
  "@jridgewell/remapping": "^2.3.5",
93
93
  "convert-source-map": "^2.0.0",
94
94
  "debug": "^4.1.0",
@@ -115,14 +115,14 @@
115
115
  }
116
116
  },
117
117
  "node_modules/@babel/generator": {
118
- "version": "7.28.5",
119
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz",
120
- "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==",
118
+ "version": "7.28.6",
119
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.6.tgz",
120
+ "integrity": "sha512-lOoVRwADj8hjf7al89tvQ2a1lf53Z+7tiXMgpZJL3maQPDxh0DgLMN62B2MKUOFcoodBHLMbDM6WAbKgNy5Suw==",
121
121
  "dev": true,
122
122
  "license": "MIT",
123
123
  "dependencies": {
124
- "@babel/parser": "^7.28.5",
125
- "@babel/types": "^7.28.5",
124
+ "@babel/parser": "^7.28.6",
125
+ "@babel/types": "^7.28.6",
126
126
  "@jridgewell/gen-mapping": "^0.3.12",
127
127
  "@jridgewell/trace-mapping": "^0.3.28",
128
128
  "jsesc": "^3.0.2"
@@ -132,13 +132,13 @@
132
132
  }
133
133
  },
134
134
  "node_modules/@babel/helper-compilation-targets": {
135
- "version": "7.27.2",
136
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz",
137
- "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==",
135
+ "version": "7.28.6",
136
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz",
137
+ "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==",
138
138
  "dev": true,
139
139
  "license": "MIT",
140
140
  "dependencies": {
141
- "@babel/compat-data": "^7.27.2",
141
+ "@babel/compat-data": "^7.28.6",
142
142
  "@babel/helper-validator-option": "^7.27.1",
143
143
  "browserslist": "^4.24.0",
144
144
  "lru-cache": "^5.1.1",
@@ -169,29 +169,29 @@
169
169
  }
170
170
  },
171
171
  "node_modules/@babel/helper-module-imports": {
172
- "version": "7.27.1",
173
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz",
174
- "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==",
172
+ "version": "7.28.6",
173
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz",
174
+ "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==",
175
175
  "dev": true,
176
176
  "license": "MIT",
177
177
  "dependencies": {
178
- "@babel/traverse": "^7.27.1",
179
- "@babel/types": "^7.27.1"
178
+ "@babel/traverse": "^7.28.6",
179
+ "@babel/types": "^7.28.6"
180
180
  },
181
181
  "engines": {
182
182
  "node": ">=6.9.0"
183
183
  }
184
184
  },
185
185
  "node_modules/@babel/helper-module-transforms": {
186
- "version": "7.28.3",
187
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz",
188
- "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==",
186
+ "version": "7.28.6",
187
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz",
188
+ "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==",
189
189
  "dev": true,
190
190
  "license": "MIT",
191
191
  "dependencies": {
192
- "@babel/helper-module-imports": "^7.27.1",
193
- "@babel/helper-validator-identifier": "^7.27.1",
194
- "@babel/traverse": "^7.28.3"
192
+ "@babel/helper-module-imports": "^7.28.6",
193
+ "@babel/helper-validator-identifier": "^7.28.5",
194
+ "@babel/traverse": "^7.28.6"
195
195
  },
196
196
  "engines": {
197
197
  "node": ">=6.9.0"
@@ -201,9 +201,9 @@
201
201
  }
202
202
  },
203
203
  "node_modules/@babel/helper-plugin-utils": {
204
- "version": "7.27.1",
205
- "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz",
206
- "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==",
204
+ "version": "7.28.6",
205
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz",
206
+ "integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==",
207
207
  "dev": true,
208
208
  "license": "MIT",
209
209
  "engines": {
@@ -241,27 +241,27 @@
241
241
  }
242
242
  },
243
243
  "node_modules/@babel/helpers": {
244
- "version": "7.28.4",
245
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz",
246
- "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==",
244
+ "version": "7.28.6",
245
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.6.tgz",
246
+ "integrity": "sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==",
247
247
  "dev": true,
248
248
  "license": "MIT",
249
249
  "dependencies": {
250
- "@babel/template": "^7.27.2",
251
- "@babel/types": "^7.28.4"
250
+ "@babel/template": "^7.28.6",
251
+ "@babel/types": "^7.28.6"
252
252
  },
253
253
  "engines": {
254
254
  "node": ">=6.9.0"
255
255
  }
256
256
  },
257
257
  "node_modules/@babel/parser": {
258
- "version": "7.28.5",
259
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz",
260
- "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==",
258
+ "version": "7.28.6",
259
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.6.tgz",
260
+ "integrity": "sha512-TeR9zWR18BvbfPmGbLampPMW+uW1NZnJlRuuHso8i87QZNq2JRF9i6RgxRqtEq+wQGsS19NNTWr2duhnE49mfQ==",
261
261
  "dev": true,
262
262
  "license": "MIT",
263
263
  "dependencies": {
264
- "@babel/types": "^7.28.5"
264
+ "@babel/types": "^7.28.6"
265
265
  },
266
266
  "bin": {
267
267
  "parser": "bin/babel-parser.js"
@@ -326,13 +326,13 @@
326
326
  }
327
327
  },
328
328
  "node_modules/@babel/plugin-syntax-import-attributes": {
329
- "version": "7.27.1",
330
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz",
331
- "integrity": "sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==",
329
+ "version": "7.28.6",
330
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.28.6.tgz",
331
+ "integrity": "sha512-jiLC0ma9XkQT3TKJ9uYvlakm66Pamywo+qwL+oL8HJOvc6TWdZXVfhqJr8CCzbSGUAbDOzlGHJC1U+vRfLQDvw==",
332
332
  "dev": true,
333
333
  "license": "MIT",
334
334
  "dependencies": {
335
- "@babel/helper-plugin-utils": "^7.27.1"
335
+ "@babel/helper-plugin-utils": "^7.28.6"
336
336
  },
337
337
  "engines": {
338
338
  "node": ">=6.9.0"
@@ -368,13 +368,13 @@
368
368
  }
369
369
  },
370
370
  "node_modules/@babel/plugin-syntax-jsx": {
371
- "version": "7.27.1",
372
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz",
373
- "integrity": "sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==",
371
+ "version": "7.28.6",
372
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.28.6.tgz",
373
+ "integrity": "sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==",
374
374
  "dev": true,
375
375
  "license": "MIT",
376
376
  "dependencies": {
377
- "@babel/helper-plugin-utils": "^7.27.1"
377
+ "@babel/helper-plugin-utils": "^7.28.6"
378
378
  },
379
379
  "engines": {
380
380
  "node": ">=6.9.0"
@@ -494,13 +494,13 @@
494
494
  }
495
495
  },
496
496
  "node_modules/@babel/plugin-syntax-typescript": {
497
- "version": "7.27.1",
498
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz",
499
- "integrity": "sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==",
497
+ "version": "7.28.6",
498
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.28.6.tgz",
499
+ "integrity": "sha512-+nDNmQye7nlnuuHDboPbGm00Vqg3oO8niRRL27/4LYHUsHYh0zJ1xWOz0uRwNFmM1Avzk8wZbc6rdiYhomzv/A==",
500
500
  "dev": true,
501
501
  "license": "MIT",
502
502
  "dependencies": {
503
- "@babel/helper-plugin-utils": "^7.27.1"
503
+ "@babel/helper-plugin-utils": "^7.28.6"
504
504
  },
505
505
  "engines": {
506
506
  "node": ">=6.9.0"
@@ -510,33 +510,33 @@
510
510
  }
511
511
  },
512
512
  "node_modules/@babel/template": {
513
- "version": "7.27.2",
514
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz",
515
- "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==",
513
+ "version": "7.28.6",
514
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz",
515
+ "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==",
516
516
  "dev": true,
517
517
  "license": "MIT",
518
518
  "dependencies": {
519
- "@babel/code-frame": "^7.27.1",
520
- "@babel/parser": "^7.27.2",
521
- "@babel/types": "^7.27.1"
519
+ "@babel/code-frame": "^7.28.6",
520
+ "@babel/parser": "^7.28.6",
521
+ "@babel/types": "^7.28.6"
522
522
  },
523
523
  "engines": {
524
524
  "node": ">=6.9.0"
525
525
  }
526
526
  },
527
527
  "node_modules/@babel/traverse": {
528
- "version": "7.28.5",
529
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz",
530
- "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==",
528
+ "version": "7.28.6",
529
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.6.tgz",
530
+ "integrity": "sha512-fgWX62k02qtjqdSNTAGxmKYY/7FSL9WAS1o2Hu5+I5m9T0yxZzr4cnrfXQ/MX0rIifthCSs6FKTlzYbJcPtMNg==",
531
531
  "dev": true,
532
532
  "license": "MIT",
533
533
  "dependencies": {
534
- "@babel/code-frame": "^7.27.1",
535
- "@babel/generator": "^7.28.5",
534
+ "@babel/code-frame": "^7.28.6",
535
+ "@babel/generator": "^7.28.6",
536
536
  "@babel/helper-globals": "^7.28.0",
537
- "@babel/parser": "^7.28.5",
538
- "@babel/template": "^7.27.2",
539
- "@babel/types": "^7.28.5",
537
+ "@babel/parser": "^7.28.6",
538
+ "@babel/template": "^7.28.6",
539
+ "@babel/types": "^7.28.6",
540
540
  "debug": "^4.3.1"
541
541
  },
542
542
  "engines": {
@@ -544,9 +544,9 @@
544
544
  }
545
545
  },
546
546
  "node_modules/@babel/types": {
547
- "version": "7.28.5",
548
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz",
549
- "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==",
547
+ "version": "7.28.6",
548
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.6.tgz",
549
+ "integrity": "sha512-0ZrskXVEHSWIqZM/sQZ4EV3jZJXRkio/WCxaqKZP1g//CEWEPSfeZFcms4XeKBCHU0ZKnIkdJeU/kF+eRp5lBg==",
550
550
  "dev": true,
551
551
  "license": "MIT",
552
552
  "dependencies": {
@@ -3106,14 +3106,14 @@
3106
3106
  }
3107
3107
  },
3108
3108
  "node_modules/@typescript-eslint/project-service": {
3109
- "version": "8.52.0",
3110
- "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.52.0.tgz",
3111
- "integrity": "sha512-xD0MfdSdEmeFa3OmVqonHi+Cciab96ls1UhIF/qX/O/gPu5KXD0bY9lu33jj04fjzrXHcuvjBcBC+D3SNSadaw==",
3109
+ "version": "8.53.0",
3110
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.53.0.tgz",
3111
+ "integrity": "sha512-Bl6Gdr7NqkqIP5yP9z1JU///Nmes4Eose6L1HwpuVHwScgDPPuEWbUVhvlZmb8hy0vX9syLk5EGNL700WcBlbg==",
3112
3112
  "dev": true,
3113
3113
  "license": "MIT",
3114
3114
  "dependencies": {
3115
- "@typescript-eslint/tsconfig-utils": "^8.52.0",
3116
- "@typescript-eslint/types": "^8.52.0",
3115
+ "@typescript-eslint/tsconfig-utils": "^8.53.0",
3116
+ "@typescript-eslint/types": "^8.53.0",
3117
3117
  "debug": "^4.4.3"
3118
3118
  },
3119
3119
  "engines": {
@@ -3128,14 +3128,14 @@
3128
3128
  }
3129
3129
  },
3130
3130
  "node_modules/@typescript-eslint/scope-manager": {
3131
- "version": "8.52.0",
3132
- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.52.0.tgz",
3133
- "integrity": "sha512-ixxqmmCcc1Nf8S0mS0TkJ/3LKcC8mruYJPOU6Ia2F/zUUR4pApW7LzrpU3JmtePbRUTes9bEqRc1Gg4iyRnDzA==",
3131
+ "version": "8.53.0",
3132
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.53.0.tgz",
3133
+ "integrity": "sha512-kWNj3l01eOGSdVBnfAF2K1BTh06WS0Yet6JUgb9Cmkqaz3Jlu0fdVUjj9UI8gPidBWSMqDIglmEXifSgDT/D0g==",
3134
3134
  "dev": true,
3135
3135
  "license": "MIT",
3136
3136
  "dependencies": {
3137
- "@typescript-eslint/types": "8.52.0",
3138
- "@typescript-eslint/visitor-keys": "8.52.0"
3137
+ "@typescript-eslint/types": "8.53.0",
3138
+ "@typescript-eslint/visitor-keys": "8.53.0"
3139
3139
  },
3140
3140
  "engines": {
3141
3141
  "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
@@ -3146,9 +3146,9 @@
3146
3146
  }
3147
3147
  },
3148
3148
  "node_modules/@typescript-eslint/tsconfig-utils": {
3149
- "version": "8.52.0",
3150
- "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.52.0.tgz",
3151
- "integrity": "sha512-jl+8fzr/SdzdxWJznq5nvoI7qn2tNYV/ZBAEcaFMVXf+K6jmXvAFrgo/+5rxgnL152f//pDEAYAhhBAZGrVfwg==",
3149
+ "version": "8.53.0",
3150
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.53.0.tgz",
3151
+ "integrity": "sha512-K6Sc0R5GIG6dNoPdOooQ+KtvT5KCKAvTcY8h2rIuul19vxH5OTQk7ArKkd4yTzkw66WnNY0kPPzzcmWA+XRmiA==",
3152
3152
  "dev": true,
3153
3153
  "license": "MIT",
3154
3154
  "engines": {
@@ -3342,9 +3342,9 @@
3342
3342
  }
3343
3343
  },
3344
3344
  "node_modules/@typescript-eslint/types": {
3345
- "version": "8.52.0",
3346
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.52.0.tgz",
3347
- "integrity": "sha512-LWQV1V4q9V4cT4H5JCIx3481iIFxH1UkVk+ZkGGAV1ZGcjGI9IoFOfg3O6ywz8QqCDEp7Inlg6kovMofsNRaGg==",
3345
+ "version": "8.53.0",
3346
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.53.0.tgz",
3347
+ "integrity": "sha512-Bmh9KX31Vlxa13+PqPvt4RzKRN1XORYSLlAE+sO1i28NkisGbTtSLFVB3l7PWdHtR3E0mVMuC7JilWJ99m2HxQ==",
3348
3348
  "dev": true,
3349
3349
  "license": "MIT",
3350
3350
  "engines": {
@@ -3356,16 +3356,16 @@
3356
3356
  }
3357
3357
  },
3358
3358
  "node_modules/@typescript-eslint/typescript-estree": {
3359
- "version": "8.52.0",
3360
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.52.0.tgz",
3361
- "integrity": "sha512-XP3LClsCc0FsTK5/frGjolyADTh3QmsLp6nKd476xNI9CsSsLnmn4f0jrzNoAulmxlmNIpeXuHYeEQv61Q6qeQ==",
3359
+ "version": "8.53.0",
3360
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.53.0.tgz",
3361
+ "integrity": "sha512-pw0c0Gdo7Z4xOG987u3nJ8akL9093yEEKv8QTJ+Bhkghj1xyj8cgPaavlr9rq8h7+s6plUJ4QJYw2gCZodqmGw==",
3362
3362
  "dev": true,
3363
3363
  "license": "MIT",
3364
3364
  "dependencies": {
3365
- "@typescript-eslint/project-service": "8.52.0",
3366
- "@typescript-eslint/tsconfig-utils": "8.52.0",
3367
- "@typescript-eslint/types": "8.52.0",
3368
- "@typescript-eslint/visitor-keys": "8.52.0",
3365
+ "@typescript-eslint/project-service": "8.53.0",
3366
+ "@typescript-eslint/tsconfig-utils": "8.53.0",
3367
+ "@typescript-eslint/types": "8.53.0",
3368
+ "@typescript-eslint/visitor-keys": "8.53.0",
3369
3369
  "debug": "^4.4.3",
3370
3370
  "minimatch": "^9.0.5",
3371
3371
  "semver": "^7.7.3",
@@ -3384,16 +3384,16 @@
3384
3384
  }
3385
3385
  },
3386
3386
  "node_modules/@typescript-eslint/utils": {
3387
- "version": "8.52.0",
3388
- "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.52.0.tgz",
3389
- "integrity": "sha512-wYndVMWkweqHpEpwPhwqE2lnD2DxC6WVLupU/DOt/0/v+/+iQbbzO3jOHjmBMnhu0DgLULvOaU4h4pwHYi2oRQ==",
3387
+ "version": "8.53.0",
3388
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.53.0.tgz",
3389
+ "integrity": "sha512-XDY4mXTez3Z1iRDI5mbRhH4DFSt46oaIFsLg+Zn97+sYrXACziXSQcSelMybnVZ5pa1P6xYkPr5cMJyunM1ZDA==",
3390
3390
  "dev": true,
3391
3391
  "license": "MIT",
3392
3392
  "dependencies": {
3393
3393
  "@eslint-community/eslint-utils": "^4.9.1",
3394
- "@typescript-eslint/scope-manager": "8.52.0",
3395
- "@typescript-eslint/types": "8.52.0",
3396
- "@typescript-eslint/typescript-estree": "8.52.0"
3394
+ "@typescript-eslint/scope-manager": "8.53.0",
3395
+ "@typescript-eslint/types": "8.53.0",
3396
+ "@typescript-eslint/typescript-estree": "8.53.0"
3397
3397
  },
3398
3398
  "engines": {
3399
3399
  "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
@@ -3408,13 +3408,13 @@
3408
3408
  }
3409
3409
  },
3410
3410
  "node_modules/@typescript-eslint/visitor-keys": {
3411
- "version": "8.52.0",
3412
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.52.0.tgz",
3413
- "integrity": "sha512-ink3/Zofus34nmBsPjow63FP5M7IGff0RKAgqR6+CFpdk22M7aLwC9gOcLGYqr7MczLPzZVERW9hRog3O4n1sQ==",
3411
+ "version": "8.53.0",
3412
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.53.0.tgz",
3413
+ "integrity": "sha512-LZ2NqIHFhvFwxG0qZeLL9DvdNAHPGCY5dIRwBhyYeU+LfLhcStE1ImjsuTG/WaVh3XysGaeLW8Rqq7cGkPCFvw==",
3414
3414
  "dev": true,
3415
3415
  "license": "MIT",
3416
3416
  "dependencies": {
3417
- "@typescript-eslint/types": "8.52.0",
3417
+ "@typescript-eslint/types": "8.53.0",
3418
3418
  "eslint-visitor-keys": "^4.2.1"
3419
3419
  },
3420
3420
  "engines": {
@@ -12063,7 +12063,7 @@
12063
12063
  },
12064
12064
  "packages/dgram": {
12065
12065
  "name": "@matterbridge/dgram",
12066
- "version": "0.0.1",
12066
+ "version": "0.0.2",
12067
12067
  "license": "Apache-2.0",
12068
12068
  "dependencies": {
12069
12069
  "@matterbridge/jest-utils": "0.0.1",
@@ -12094,6 +12094,9 @@
12094
12094
  "typescript-eslint": "8.51.0",
12095
12095
  "vitest": "4.0.16"
12096
12096
  },
12097
+ "engines": {
12098
+ "node": ">=20.0.0 <21.0.0 || >=22.0.0 <23.0.0 || >=24.0.0 <25.0.0"
12099
+ },
12097
12100
  "funding": {
12098
12101
  "type": "buymeacoffee",
12099
12102
  "url": "https://www.buymeacoffee.com/luligugithub"
@@ -12172,6 +12175,9 @@
12172
12175
  "typescript-eslint": "8.51.0",
12173
12176
  "vitest": "4.0.16"
12174
12177
  },
12178
+ "engines": {
12179
+ "node": ">=20.0.0 <21.0.0 || >=22.0.0 <23.0.0 || >=24.0.0 <25.0.0"
12180
+ },
12175
12181
  "funding": {
12176
12182
  "type": "buymeacoffee",
12177
12183
  "url": "https://www.buymeacoffee.com/luligugithub"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matterbridge",
3
- "version": "3.4.7-dev-20260112-a00b2bf",
3
+ "version": "3.4.7-dev-20260113-0917d83",
4
4
  "description": "Matterbridge plugin manager for Matter",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",
@@ -110,7 +110,7 @@
110
110
  },
111
111
  "dependencies": {
112
112
  "@matter/main": "0.15.6",
113
- "@matterbridge/dgram": "0.0.1",
113
+ "@matterbridge/dgram": "0.0.2",
114
114
  "@matterbridge/jest-utils": "0.0.1",
115
115
  "@matterbridge/utils": "0.0.1",
116
116
  "@matterbridge/vitest-utils": "0.0.1",
@@ -137,7 +137,7 @@ export class Dgram extends EventEmitter {
137
137
  }
138
138
  if (!networkInterface) {
139
139
  for (const [interfaceName, interfaceDetails] of Object.entries(interfaces)) {
140
- if (interfaceName.toLowerCase().includes('tailscale'))
140
+ if (!networkInterface && this.excludedInterfaceNamePattern.test(interfaceName))
141
141
  continue;
142
142
  if (!interfaceDetails)
143
143
  continue;