matterbridge 3.4.0-dev-20251120-1b65c89 → 3.4.0-dev-20251120-21b4f48
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 +1 -0
- package/dist/pluginManager.js +1 -0
- package/dist/utils/spawn.js +6 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -48,6 +48,7 @@ Removed the following long deprecated elements:
|
|
|
48
48
|
|
|
49
49
|
- [package]: Updated dependencies.
|
|
50
50
|
- [deviceManager]: Bumped DeviceManager v.1.1.1.
|
|
51
|
+
- [pluginManager]: Bumped PluginManager v.1.3.1.
|
|
51
52
|
- [broadcastServer]: Bumped BroadcastServer v.1.0.3.
|
|
52
53
|
- [jest]: Bumped jestHelpers v.1.0.13.
|
|
53
54
|
- [spawn]: Bumped spawn module v.1.2.0.
|
package/dist/pluginManager.js
CHANGED
|
@@ -266,6 +266,7 @@ export class PluginManager extends EventEmitter {
|
|
|
266
266
|
const pluginsArray = await this.matterbridge.nodeContext.get('plugins', []);
|
|
267
267
|
for (const plugin of pluginsArray)
|
|
268
268
|
this._plugins.set(plugin.name, plugin);
|
|
269
|
+
this.log.debug(`Loaded ${BLUE}${pluginsArray.length}${db} plugins from storage`);
|
|
269
270
|
return pluginsArray;
|
|
270
271
|
}
|
|
271
272
|
async saveToStorage() {
|
package/dist/utils/spawn.js
CHANGED
|
@@ -8,7 +8,12 @@ export async function spawnCommand(command, args, packageCommand, packageName) {
|
|
|
8
8
|
const log = new AnsiLogger({ logName: 'Spawn', logTimestampFormat: 4, logLevel: debug ? "debug" : "info" });
|
|
9
9
|
const server = new BroadcastServer('spawn', log);
|
|
10
10
|
const sendLog = (name, message) => {
|
|
11
|
-
|
|
11
|
+
try {
|
|
12
|
+
server.request({ type: 'frontend_logmessage', src: 'spawn', dst: 'frontend', params: { level: 'spawn', time: log.now(), name, message } });
|
|
13
|
+
}
|
|
14
|
+
catch (err) {
|
|
15
|
+
log.debug(`Failed to send log message to frontend: ${err instanceof Error ? err.message : String(err)}`);
|
|
16
|
+
}
|
|
12
17
|
};
|
|
13
18
|
if (verbose)
|
|
14
19
|
log.debug(`Spawning command: ${command} with ${args.join(' ')} ${packageCommand} ${packageName}`);
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.4.0-dev-20251120-
|
|
3
|
+
"version": "3.4.0-dev-20251120-21b4f48",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge",
|
|
9
|
-
"version": "3.4.0-dev-20251120-
|
|
9
|
+
"version": "3.4.0-dev-20251120-21b4f48",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@matter/main": "0.15.6",
|
package/package.json
CHANGED