matterbridge 2.1.3-dev.1 → 2.1.4-dev.1
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 +16 -2
- package/dist/frontend.js +11 -2
- package/dist/matterbridge.js +19 -4
- package/dist/matterbridgeEndpointHelpers.js +16 -0
- package/dist/matterbridgePlatform.js +16 -1
- package/npm-shrinkwrap.json +47 -47
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -21,7 +21,7 @@ Starting from v. 2.1.0, the legacy old api of matter.js have been completely rem
|
|
|
21
21
|
|
|
22
22
|
For this reason there is no compatibility with the old versions of the plugins.
|
|
23
23
|
|
|
24
|
-
You need to update all plugins you use and Matterbridge in the same moment.
|
|
24
|
+
You need to update all plugins you use and Matterbridge in the same moment.
|
|
25
25
|
|
|
26
26
|
I suggest to first update all plugins without restarting and then to update Matterbridge so when it restarts, all versions will be the latest.
|
|
27
27
|
|
|
@@ -31,11 +31,25 @@ matterbridge-zigbee2mqtt v. 2.4.4
|
|
|
31
31
|
matterbridge-somfy-tahoma v. 1.2.3
|
|
32
32
|
matterbridge-hass v. 0.0.8
|
|
33
33
|
|
|
34
|
+
## [2.1.4] - 2025-02-05
|
|
35
|
+
|
|
36
|
+
### Added
|
|
37
|
+
|
|
38
|
+
- [frontend]: Added memorycheck before cleanup.
|
|
39
|
+
|
|
40
|
+
### Changed
|
|
41
|
+
|
|
42
|
+
- [package]: Update matter.js to 0.12.3.
|
|
43
|
+
|
|
44
|
+
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
45
|
+
<img src="./yellow-button.png" alt="Buy me a coffee" width="120">
|
|
46
|
+
</a>
|
|
47
|
+
|
|
34
48
|
## [2.1.3] - 2025-02-04
|
|
35
49
|
|
|
36
50
|
### Added
|
|
37
51
|
|
|
38
|
-
- [matter.js]: Added temporary solution to serverNode.close() not returning.
|
|
52
|
+
- [matter.js]: Added temporary solution to prevent serverNode.close() not returning.
|
|
39
53
|
|
|
40
54
|
### Changed
|
|
41
55
|
|
package/dist/frontend.js
CHANGED
|
@@ -745,6 +745,15 @@ export class Frontend {
|
|
|
745
745
|
this.log.debug(`Frontend initialized on port ${YELLOW}${this.port}${db} static ${UNDERLINE}${path.join(this.matterbridge.rootDirectory, 'frontend/build')}${UNDERLINEOFF}${rs}`);
|
|
746
746
|
}
|
|
747
747
|
async stop() {
|
|
748
|
+
if (hasParameter('memorycheck')) {
|
|
749
|
+
await new Promise((resolve) => {
|
|
750
|
+
this.log.debug(`***Memory check started for ${getIntParameter('memorycheck') ?? 5 * 60 * 1000} ms`);
|
|
751
|
+
setTimeout(() => {
|
|
752
|
+
this.log.debug(`***Memory check stopped after ${getIntParameter('memorycheck') ?? 5 * 60 * 1000} ms`);
|
|
753
|
+
resolve();
|
|
754
|
+
}, getIntParameter('memorycheck') ?? 5 * 60 * 1000);
|
|
755
|
+
});
|
|
756
|
+
}
|
|
748
757
|
if (this.httpServer) {
|
|
749
758
|
this.httpServer.close();
|
|
750
759
|
this.httpServer.removeAllListeners();
|
|
@@ -814,7 +823,7 @@ export class Frontend {
|
|
|
814
823
|
external: this.formatMemoryUsage(memoryUsageRaw.external),
|
|
815
824
|
arrayBuffers: this.formatMemoryUsage(memoryUsageRaw.arrayBuffers),
|
|
816
825
|
};
|
|
817
|
-
this.log.debug(`***Cpu usage ${CYAN}${cpuUsage.padStart(6, ' ')} %${db} - Memory usage rss ${CYAN}${memoryUsage.rss}${db} heapTotal ${CYAN}${memoryUsage.heapTotal}${db} heapUsed ${CYAN}${memoryUsage.heapUsed}${db} external ${memoryUsage.external} arrayBuffers ${memoryUsage.arrayBuffers}`);
|
|
826
|
+
this.log.debug(`***Cpu usage: ${CYAN}${cpuUsage.padStart(6, ' ')} %${db} - Memory usage: rss ${CYAN}${memoryUsage.rss}${db} heapTotal ${CYAN}${memoryUsage.heapTotal}${db} heapUsed ${CYAN}${memoryUsage.heapUsed}${db} external ${memoryUsage.external} arrayBuffers ${memoryUsage.arrayBuffers}`);
|
|
818
827
|
};
|
|
819
828
|
interval();
|
|
820
829
|
this.memoryInterval = setInterval(interval, getIntParameter('memoryinterval') ?? 1000);
|
|
@@ -837,7 +846,7 @@ export class Frontend {
|
|
|
837
846
|
external: this.formatMemoryUsage(memory.external),
|
|
838
847
|
arrayBuffers: this.formatMemoryUsage(memory.arrayBuffers),
|
|
839
848
|
};
|
|
840
|
-
console.log(`${YELLOW}Cpu usage
|
|
849
|
+
console.log(`${YELLOW}Cpu usage:${db} ${CYAN}${memory.cpu.padStart(6, ' ')} %${db} - ${YELLOW}Memory usage:${db} rss ${CYAN}${memoryUsage.rss}${db} heapTotal ${CYAN}${memoryUsage.heapTotal}${db} heapUsed ${CYAN}${memoryUsage.heapUsed}${db} external ${memoryUsage.external} arrayBuffers ${memoryUsage.arrayBuffers}${rs}`);
|
|
841
850
|
}
|
|
842
851
|
this.memoryData = [];
|
|
843
852
|
this.prevCpus = [];
|
package/dist/matterbridge.js
CHANGED
|
@@ -14,7 +14,7 @@ import { MatterbridgeEndpoint } from './matterbridgeEndpoint.js';
|
|
|
14
14
|
import { bridge } from './matterbridgeDeviceTypes.js';
|
|
15
15
|
import { Frontend } from './frontend.js';
|
|
16
16
|
import { DeviceTypeId, Endpoint as EndpointNode, Logger, LogLevel as MatterLogLevel, LogFormat as MatterLogFormat, VendorId, StorageService, Environment, ServerNode } from '@matter/main';
|
|
17
|
-
import { DeviceCommissioner, FabricAction, PaseClient } from '@matter/main/protocol';
|
|
17
|
+
import { DeviceCommissioner, FabricAction, MdnsService, PaseClient } from '@matter/main/protocol';
|
|
18
18
|
import { AggregatorEndpoint } from '@matter/main/endpoints';
|
|
19
19
|
const plg = '\u001B[38;5;33m';
|
|
20
20
|
const dev = '\u001B[38;5;79m';
|
|
@@ -141,7 +141,22 @@ export class Matterbridge extends EventEmitter {
|
|
|
141
141
|
return Matterbridge.instance;
|
|
142
142
|
}
|
|
143
143
|
async destroyInstance() {
|
|
144
|
+
const servers = [];
|
|
145
|
+
if (this.bridgeMode === 'bridge') {
|
|
146
|
+
if (this.serverNode)
|
|
147
|
+
servers.push(this.serverNode);
|
|
148
|
+
}
|
|
149
|
+
if (this.bridgeMode === 'childbridge') {
|
|
150
|
+
for (const plugin of this.plugins.array()) {
|
|
151
|
+
if (plugin.serverNode)
|
|
152
|
+
servers.push(plugin.serverNode);
|
|
153
|
+
}
|
|
154
|
+
}
|
|
144
155
|
await this.cleanup('destroying instance...', false);
|
|
156
|
+
for (const server of servers) {
|
|
157
|
+
await server.env.get(MdnsService)[Symbol.asyncDispose]();
|
|
158
|
+
this.log.info(`Closed ${server.id} MdnsService`);
|
|
159
|
+
}
|
|
145
160
|
await new Promise((resolve) => {
|
|
146
161
|
setTimeout(resolve, 1000);
|
|
147
162
|
});
|
|
@@ -571,11 +586,11 @@ export class Matterbridge extends EventEmitter {
|
|
|
571
586
|
process.removeAllListeners('uncaughtException');
|
|
572
587
|
process.removeAllListeners('unhandledRejection');
|
|
573
588
|
this.exceptionHandler = async (error) => {
|
|
574
|
-
this.log.
|
|
589
|
+
this.log.error('Unhandled Exception detected at:', error.stack || error, rs);
|
|
575
590
|
};
|
|
576
591
|
process.on('uncaughtException', this.exceptionHandler);
|
|
577
592
|
this.rejectionHandler = async (reason, promise) => {
|
|
578
|
-
this.log.
|
|
593
|
+
this.log.error('Unhandled Rejection detected at:', promise, 'reason:', reason instanceof Error ? reason.stack : reason, rs);
|
|
579
594
|
};
|
|
580
595
|
process.on('unhandledRejection', this.rejectionHandler);
|
|
581
596
|
this.log.debug(`Registering SIGINT and SIGTERM signal handlers...`);
|
|
@@ -999,7 +1014,6 @@ export class Matterbridge extends EventEmitter {
|
|
|
999
1014
|
this.log.debug(`Plugin ${plg}${plugin.name}${db} reachability timeout cleared`);
|
|
1000
1015
|
}
|
|
1001
1016
|
}
|
|
1002
|
-
await this.frontend.stop();
|
|
1003
1017
|
this.log.notice(`Stopping matter server nodes in ${this.bridgeMode} mode...`);
|
|
1004
1018
|
if (this.bridgeMode === 'bridge') {
|
|
1005
1019
|
if (this.serverNode) {
|
|
@@ -1017,6 +1031,7 @@ export class Matterbridge extends EventEmitter {
|
|
|
1017
1031
|
}
|
|
1018
1032
|
this.log.notice('Stopped matter server nodes');
|
|
1019
1033
|
await this.stopMatterStorage();
|
|
1034
|
+
await this.frontend.stop();
|
|
1020
1035
|
try {
|
|
1021
1036
|
Logger.removeLogger('matterfilelogger');
|
|
1022
1037
|
}
|
|
@@ -84,6 +84,22 @@ export function lowercaseFirstLetter(name) {
|
|
|
84
84
|
return name;
|
|
85
85
|
return name.charAt(0).toLowerCase() + name.slice(1);
|
|
86
86
|
}
|
|
87
|
+
export function checkNotLatinCharacters(deviceName) {
|
|
88
|
+
const nonLatinRegexList = [
|
|
89
|
+
/[\u0400-\u04FF\u0500-\u052F]/,
|
|
90
|
+
/[\u2E80-\u9FFF]/,
|
|
91
|
+
/[\uAC00-\uD7AF]/,
|
|
92
|
+
/[\u0600-\u06FF\u0750-\u077F]/,
|
|
93
|
+
/[\u0590-\u05FF]/,
|
|
94
|
+
/[\u0900-\u097F]/,
|
|
95
|
+
/[\u0E00-\u0E7F]/,
|
|
96
|
+
/[\u1200-\u137F]/,
|
|
97
|
+
];
|
|
98
|
+
return nonLatinRegexList.some((regex) => regex.test(deviceName));
|
|
99
|
+
}
|
|
100
|
+
export function generateUniqueId(deviceName) {
|
|
101
|
+
return createHash('md5').update(deviceName).digest('hex');
|
|
102
|
+
}
|
|
87
103
|
export function createUniqueId(param1, param2, param3, param4) {
|
|
88
104
|
const hash = createHash('md5');
|
|
89
105
|
hash.update(param1 + param2 + param3 + param4);
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { isValidArray, isValidObject, isValidString } from './utils/utils.js';
|
|
2
|
-
import { CYAN, db, nf, wr } from './logger/export.js';
|
|
2
|
+
import { CYAN, db, er, nf, wr } from './logger/export.js';
|
|
3
3
|
import { NodeStorageManager } from './storage/export.js';
|
|
4
4
|
import path from 'path';
|
|
5
|
+
import { checkNotLatinCharacters } from './matterbridgeEndpointHelpers.js';
|
|
5
6
|
export class MatterbridgePlatform {
|
|
6
7
|
matterbridge;
|
|
7
8
|
log;
|
|
@@ -14,6 +15,7 @@ export class MatterbridgePlatform {
|
|
|
14
15
|
selectDevice = new Map();
|
|
15
16
|
selectEntity = new Map();
|
|
16
17
|
registeredEndpoints = new Map();
|
|
18
|
+
registeredEndpointsByName = new Map();
|
|
17
19
|
constructor(matterbridge, log, config) {
|
|
18
20
|
this.matterbridge = matterbridge;
|
|
19
21
|
this.log = log;
|
|
@@ -46,18 +48,31 @@ export class MatterbridgePlatform {
|
|
|
46
48
|
}
|
|
47
49
|
async registerDevice(device) {
|
|
48
50
|
device.plugin = this.name;
|
|
51
|
+
if (device.deviceName && this.registeredEndpointsByName.has(device.deviceName)) {
|
|
52
|
+
this.log.error(`Device with name ${CYAN}${device.deviceName}${er} is already registered. The device will not be added. Please change the device name.`);
|
|
53
|
+
return;
|
|
54
|
+
}
|
|
55
|
+
if (device.deviceName && checkNotLatinCharacters(device.deviceName)) {
|
|
56
|
+
this.log.debug(`Device with name ${CYAN}${device.deviceName}${er} has not latin characters. Please keep the name as short as possible.`);
|
|
57
|
+
return;
|
|
58
|
+
}
|
|
49
59
|
await this.matterbridge.addBridgedEndpoint(this.name, device);
|
|
50
60
|
if (device.uniqueId)
|
|
51
61
|
this.registeredEndpoints.set(device.uniqueId, device);
|
|
62
|
+
if (device.deviceName)
|
|
63
|
+
this.registeredEndpointsByName.set(device.deviceName, device);
|
|
52
64
|
}
|
|
53
65
|
async unregisterDevice(device) {
|
|
54
66
|
await this.matterbridge.removeBridgedEndpoint(this.name, device);
|
|
55
67
|
if (device.uniqueId)
|
|
56
68
|
this.registeredEndpoints.delete(device.uniqueId);
|
|
69
|
+
if (device.deviceName)
|
|
70
|
+
this.registeredEndpointsByName.delete(device.deviceName);
|
|
57
71
|
}
|
|
58
72
|
async unregisterAllDevices() {
|
|
59
73
|
await this.matterbridge.removeAllBridgedEndpoints(this.name);
|
|
60
74
|
this.registeredEndpoints.clear();
|
|
75
|
+
this.registeredEndpointsByName.clear();
|
|
61
76
|
}
|
|
62
77
|
verifyMatterbridgeVersion(requiredVersion) {
|
|
63
78
|
const compareVersions = (matterbridgeVersion, requiredVersion) => {
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.4-dev.1",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge",
|
|
9
|
-
"version": "2.1.
|
|
9
|
+
"version": "2.1.4-dev.1",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@matter/main": "0.12.
|
|
12
|
+
"@matter/main": "0.12.3",
|
|
13
13
|
"archiver": "7.0.1",
|
|
14
14
|
"express": "4.21.2",
|
|
15
15
|
"glob": "11.0.1",
|
|
@@ -47,65 +47,65 @@
|
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
49
|
"node_modules/@matter/general": {
|
|
50
|
-
"version": "0.12.
|
|
51
|
-
"resolved": "https://registry.npmjs.org/@matter/general/-/general-0.12.
|
|
52
|
-
"integrity": "sha512-
|
|
50
|
+
"version": "0.12.3",
|
|
51
|
+
"resolved": "https://registry.npmjs.org/@matter/general/-/general-0.12.3.tgz",
|
|
52
|
+
"integrity": "sha512-1dya8bKRAhNkXD5xDWapVSO4Wfug8Qw2RWw74NZQNtGKbyBuNQsCnShtOdYGLnkjf/7XUGsYGmCG8hKepBHnbQ==",
|
|
53
53
|
"license": "Apache-2.0",
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@noble/curves": "^1.8.1"
|
|
56
56
|
}
|
|
57
57
|
},
|
|
58
58
|
"node_modules/@matter/main": {
|
|
59
|
-
"version": "0.12.
|
|
60
|
-
"resolved": "https://registry.npmjs.org/@matter/main/-/main-0.12.
|
|
61
|
-
"integrity": "sha512-
|
|
59
|
+
"version": "0.12.3",
|
|
60
|
+
"resolved": "https://registry.npmjs.org/@matter/main/-/main-0.12.3.tgz",
|
|
61
|
+
"integrity": "sha512-PjbSuQfm7pv/opqODgU7JhA5Gj/6TxiFiDr+i4NWFit+/NyVorDpjCKTpCZmj3XD7QhEp0iKeDG7KKBqrQ4TUQ==",
|
|
62
62
|
"license": "Apache-2.0",
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@matter/general": "0.12.
|
|
65
|
-
"@matter/model": "0.12.
|
|
66
|
-
"@matter/node": "0.12.
|
|
67
|
-
"@matter/protocol": "0.12.
|
|
68
|
-
"@matter/types": "0.12.
|
|
64
|
+
"@matter/general": "0.12.3",
|
|
65
|
+
"@matter/model": "0.12.3",
|
|
66
|
+
"@matter/node": "0.12.3",
|
|
67
|
+
"@matter/protocol": "0.12.3",
|
|
68
|
+
"@matter/types": "0.12.3",
|
|
69
69
|
"@noble/curves": "^1.8.1"
|
|
70
70
|
},
|
|
71
71
|
"optionalDependencies": {
|
|
72
|
-
"@matter/nodejs": "0.12.
|
|
72
|
+
"@matter/nodejs": "0.12.3"
|
|
73
73
|
}
|
|
74
74
|
},
|
|
75
75
|
"node_modules/@matter/model": {
|
|
76
|
-
"version": "0.12.
|
|
77
|
-
"resolved": "https://registry.npmjs.org/@matter/model/-/model-0.12.
|
|
78
|
-
"integrity": "sha512-
|
|
76
|
+
"version": "0.12.3",
|
|
77
|
+
"resolved": "https://registry.npmjs.org/@matter/model/-/model-0.12.3.tgz",
|
|
78
|
+
"integrity": "sha512-wuiBuUR45lno2PMx1YPhwZyaG7+20iBlb5SlnzYfI5j6fJv1WyYv22APDDPKDglPj4rP2RABCyCUfd1/K5EfXg==",
|
|
79
79
|
"license": "Apache-2.0",
|
|
80
80
|
"dependencies": {
|
|
81
|
-
"@matter/general": "0.12.
|
|
81
|
+
"@matter/general": "0.12.3",
|
|
82
82
|
"@noble/curves": "^1.8.1"
|
|
83
83
|
}
|
|
84
84
|
},
|
|
85
85
|
"node_modules/@matter/node": {
|
|
86
|
-
"version": "0.12.
|
|
87
|
-
"resolved": "https://registry.npmjs.org/@matter/node/-/node-0.12.
|
|
88
|
-
"integrity": "sha512
|
|
86
|
+
"version": "0.12.3",
|
|
87
|
+
"resolved": "https://registry.npmjs.org/@matter/node/-/node-0.12.3.tgz",
|
|
88
|
+
"integrity": "sha512-+bIYQtjCR053lgCd8mlnIp6ufm+H+zJGlZp8cdMX6IkkvT0vRqF2QxDtHpQn8CtzjnFzg+O5j0R4jdss2SluXg==",
|
|
89
89
|
"license": "Apache-2.0",
|
|
90
90
|
"dependencies": {
|
|
91
|
-
"@matter/general": "0.12.
|
|
92
|
-
"@matter/model": "0.12.
|
|
93
|
-
"@matter/protocol": "0.12.
|
|
94
|
-
"@matter/types": "0.12.
|
|
91
|
+
"@matter/general": "0.12.3",
|
|
92
|
+
"@matter/model": "0.12.3",
|
|
93
|
+
"@matter/protocol": "0.12.3",
|
|
94
|
+
"@matter/types": "0.12.3",
|
|
95
95
|
"@noble/curves": "^1.8.1"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"node_modules/@matter/nodejs": {
|
|
99
|
-
"version": "0.12.
|
|
100
|
-
"resolved": "https://registry.npmjs.org/@matter/nodejs/-/nodejs-0.12.
|
|
101
|
-
"integrity": "sha512-
|
|
99
|
+
"version": "0.12.3",
|
|
100
|
+
"resolved": "https://registry.npmjs.org/@matter/nodejs/-/nodejs-0.12.3.tgz",
|
|
101
|
+
"integrity": "sha512-Jx6TIYvl+2WlD9Zh6eMdClsjoPQjIkR3qhYGPbbhHlO7QXZWZz7d83jo1yShHWQrqnnfqqrkXy6iLBphrZ4SSg==",
|
|
102
102
|
"license": "Apache-2.0",
|
|
103
103
|
"optional": true,
|
|
104
104
|
"dependencies": {
|
|
105
|
-
"@matter/general": "0.12.
|
|
106
|
-
"@matter/node": "0.12.
|
|
107
|
-
"@matter/protocol": "0.12.
|
|
108
|
-
"@matter/types": "0.12.
|
|
105
|
+
"@matter/general": "0.12.3",
|
|
106
|
+
"@matter/node": "0.12.3",
|
|
107
|
+
"@matter/protocol": "0.12.3",
|
|
108
|
+
"@matter/types": "0.12.3",
|
|
109
109
|
"node-localstorage": "^3.0.5"
|
|
110
110
|
},
|
|
111
111
|
"engines": {
|
|
@@ -113,25 +113,25 @@
|
|
|
113
113
|
}
|
|
114
114
|
},
|
|
115
115
|
"node_modules/@matter/protocol": {
|
|
116
|
-
"version": "0.12.
|
|
117
|
-
"resolved": "https://registry.npmjs.org/@matter/protocol/-/protocol-0.12.
|
|
118
|
-
"integrity": "sha512-
|
|
116
|
+
"version": "0.12.3",
|
|
117
|
+
"resolved": "https://registry.npmjs.org/@matter/protocol/-/protocol-0.12.3.tgz",
|
|
118
|
+
"integrity": "sha512-mUL6rSXdm0LaS/i6bxjBQlZ/0fi8hXoinBytbKNkztfDOB9I3FeNlgp9FJxZ+ZJtrsPleMg4q+loLU7uNQi30w==",
|
|
119
119
|
"license": "Apache-2.0",
|
|
120
120
|
"dependencies": {
|
|
121
|
-
"@matter/general": "0.12.
|
|
122
|
-
"@matter/model": "0.12.
|
|
123
|
-
"@matter/types": "0.12.
|
|
121
|
+
"@matter/general": "0.12.3",
|
|
122
|
+
"@matter/model": "0.12.3",
|
|
123
|
+
"@matter/types": "0.12.3",
|
|
124
124
|
"@noble/curves": "^1.8.1"
|
|
125
125
|
}
|
|
126
126
|
},
|
|
127
127
|
"node_modules/@matter/types": {
|
|
128
|
-
"version": "0.12.
|
|
129
|
-
"resolved": "https://registry.npmjs.org/@matter/types/-/types-0.12.
|
|
130
|
-
"integrity": "sha512-
|
|
128
|
+
"version": "0.12.3",
|
|
129
|
+
"resolved": "https://registry.npmjs.org/@matter/types/-/types-0.12.3.tgz",
|
|
130
|
+
"integrity": "sha512-4nlu7nCW+V/Sed1XkJoPvtdRz0wIv8o9YSDj4To3yGR77HDqK9nbLXxpM7J+PQmGQ0/xEX1ylWU9X2dSIsH8WQ==",
|
|
131
131
|
"license": "Apache-2.0",
|
|
132
132
|
"dependencies": {
|
|
133
|
-
"@matter/general": "0.12.
|
|
134
|
-
"@matter/model": "0.12.
|
|
133
|
+
"@matter/general": "0.12.3",
|
|
134
|
+
"@matter/model": "0.12.3",
|
|
135
135
|
"@noble/curves": "^1.8.1"
|
|
136
136
|
}
|
|
137
137
|
},
|
|
@@ -1355,9 +1355,9 @@
|
|
|
1355
1355
|
}
|
|
1356
1356
|
},
|
|
1357
1357
|
"node_modules/object-inspect": {
|
|
1358
|
-
"version": "1.13.
|
|
1359
|
-
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.
|
|
1360
|
-
"integrity": "sha512-
|
|
1358
|
+
"version": "1.13.4",
|
|
1359
|
+
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
|
|
1360
|
+
"integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
|
|
1361
1361
|
"license": "MIT",
|
|
1362
1362
|
"engines": {
|
|
1363
1363
|
"node": ">= 0.4"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.4-dev.1",
|
|
4
4
|
"description": "Matterbridge plugin manager for Matter",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
}
|
|
95
95
|
},
|
|
96
96
|
"dependencies": {
|
|
97
|
-
"@matter/main": "0.12.
|
|
97
|
+
"@matter/main": "0.12.3",
|
|
98
98
|
"archiver": "7.0.1",
|
|
99
99
|
"express": "4.21.2",
|
|
100
100
|
"glob": "11.0.1",
|