matterbridge 3.0.1-dev-20250502-c002841 → 3.0.1-dev-20250503-71b796a
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 +4 -0
- package/dist/frontend.js +2 -1
- package/dist/matterbridge.js +6 -6
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -29,6 +29,10 @@ It is also available the official Matterbridge Home Assistant plugin https://git
|
|
|
29
29
|
- [docker]: Updated the [Docker configurations](README-DOCKER.md).
|
|
30
30
|
- [frontend]: Changing configuration for a plugin now only lock configuration on that plugin.
|
|
31
31
|
|
|
32
|
+
### Fixed
|
|
33
|
+
|
|
34
|
+
- [BasicInformation]: Fixed vulnerability to BasicInformation and BridgedDeviceBasicInformation cluster initialization attributes.
|
|
35
|
+
|
|
32
36
|
## [3.0.0] - 2025-04-29
|
|
33
37
|
|
|
34
38
|
## Breaking changes
|
package/dist/frontend.js
CHANGED
|
@@ -1013,8 +1013,9 @@ export class Frontend {
|
|
|
1013
1013
|
this.wssSendSnackbarMessage('Backup ready to be downloaded', 10);
|
|
1014
1014
|
}
|
|
1015
1015
|
else if (data.method === '/api/unregister') {
|
|
1016
|
-
this.wssSendSnackbarMessage('
|
|
1016
|
+
this.wssSendSnackbarMessage('Unregistering all bridged devices...', 0);
|
|
1017
1017
|
await this.matterbridge.unregisterAndShutdownProcess();
|
|
1018
|
+
this.wssSendCloseSnackbarMessage('Unregistering all bridged devices...');
|
|
1018
1019
|
}
|
|
1019
1020
|
else if (data.method === '/api/reset') {
|
|
1020
1021
|
this.wssSendSnackbarMessage('Resetting matterbridge commissioning...', 10);
|
package/dist/matterbridge.js
CHANGED
|
@@ -5,14 +5,14 @@ import EventEmitter from 'node:events';
|
|
|
5
5
|
import { inspect } from 'node:util';
|
|
6
6
|
import { AnsiLogger, UNDERLINE, UNDERLINEOFF, YELLOW, db, debugStringify, BRIGHT, RESET, er, nf, rs, wr, RED, GREEN, zb, CYAN } from './logger/export.js';
|
|
7
7
|
import { NodeStorageManager } from './storage/export.js';
|
|
8
|
-
import { getParameter, getIntParameter, hasParameter, copyDirectory, withTimeout, waiter, isValidString, parseVersionString } from './utils/export.js';
|
|
8
|
+
import { getParameter, getIntParameter, hasParameter, copyDirectory, withTimeout, waiter, isValidString, parseVersionString, isValidNumber } from './utils/export.js';
|
|
9
9
|
import { logInterfaces, getGlobalNodeModules } from './utils/network.js';
|
|
10
10
|
import { PluginManager } from './pluginManager.js';
|
|
11
11
|
import { DeviceManager } from './deviceManager.js';
|
|
12
12
|
import { MatterbridgeEndpoint } from './matterbridgeEndpoint.js';
|
|
13
13
|
import { bridge } from './matterbridgeDeviceTypes.js';
|
|
14
14
|
import { Frontend } from './frontend.js';
|
|
15
|
-
import { DeviceTypeId, Endpoint as EndpointNode, Logger, LogLevel as MatterLogLevel, LogFormat as MatterLogFormat, VendorId, StorageService, Environment, ServerNode } from '@matter/main';
|
|
15
|
+
import { DeviceTypeId, Endpoint as EndpointNode, Logger, LogLevel as MatterLogLevel, LogFormat as MatterLogFormat, VendorId, StorageService, Environment, ServerNode, UINT32_MAX, UINT16_MAX, } from '@matter/main';
|
|
16
16
|
import { DeviceCommissioner, FabricAction, MdnsService, PaseClient } from '@matter/main/protocol';
|
|
17
17
|
import { AggregatorEndpoint } from '@matter/main/endpoints';
|
|
18
18
|
import { BasicInformationServer } from '@matter/main/behaviors/basic-information';
|
|
@@ -1406,10 +1406,10 @@ export class Matterbridge extends EventEmitter {
|
|
|
1406
1406
|
await storageContext.set('productLabel', productName.slice(0, 32));
|
|
1407
1407
|
await storageContext.set('serialNumber', await storageContext.get('serialNumber', serialNumber ? serialNumber.slice(0, 32) : 'SN' + random));
|
|
1408
1408
|
await storageContext.set('uniqueId', await storageContext.get('uniqueId', 'UI' + random));
|
|
1409
|
-
await storageContext.set('softwareVersion', parseVersionString(this.matterbridgeVersion)
|
|
1410
|
-
await storageContext.set('softwareVersionString', isValidString(this.matterbridgeVersion, 5) ? this.matterbridgeVersion : '1.0.0');
|
|
1411
|
-
await storageContext.set('hardwareVersion', parseVersionString(this.systemInformation.osRelease)
|
|
1412
|
-
await storageContext.set('hardwareVersionString', isValidString(this.systemInformation.osRelease, 5) ? this.systemInformation.osRelease : '1.0.0');
|
|
1409
|
+
await storageContext.set('softwareVersion', isValidNumber(parseVersionString(this.matterbridgeVersion), 0, UINT32_MAX) ? parseVersionString(this.matterbridgeVersion) : 1);
|
|
1410
|
+
await storageContext.set('softwareVersionString', isValidString(this.matterbridgeVersion, 5, 64) ? this.matterbridgeVersion : '1.0.0');
|
|
1411
|
+
await storageContext.set('hardwareVersion', isValidNumber(parseVersionString(this.systemInformation.osRelease), 0, UINT16_MAX) ? parseVersionString(this.systemInformation.osRelease) : 1);
|
|
1412
|
+
await storageContext.set('hardwareVersionString', isValidString(this.systemInformation.osRelease, 5, 64) ? this.systemInformation.osRelease : '1.0.0');
|
|
1413
1413
|
this.log.debug(`Created server node storage context "${pluginName}.persist" for ${pluginName}:`);
|
|
1414
1414
|
this.log.debug(`- storeId: ${await storageContext.get('storeId')}`);
|
|
1415
1415
|
this.log.debug(`- deviceName: ${await storageContext.get('deviceName')}`);
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.0.1-dev-
|
|
3
|
+
"version": "3.0.1-dev-20250503-71b796a",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge",
|
|
9
|
-
"version": "3.0.1-dev-
|
|
9
|
+
"version": "3.0.1-dev-20250503-71b796a",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@matter/main": "0.13.0",
|
package/package.json
CHANGED