matterbridge 3.0.1-dev-20250502-7ffc38b → 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/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/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