matterbridge 3.2.9-dev-20250926-bb89bea → 3.2.10-dev-20250928-30c21de

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
@@ -8,7 +8,25 @@ If you like this project and find it useful, please consider giving it a star on
8
8
  <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
9
9
  </a>
10
10
 
11
- ## [3.2.9] - Not released
11
+ ## [3.2.10] - Not released
12
+
13
+ ### Breaking Changes
14
+
15
+ ### Added
16
+
17
+ - [frontend]: Bumped `frontend` version to 3.1.1. Some improvements and small bug fixes.
18
+
19
+ ### Changed
20
+
21
+ - [package]: Updated dependencies.
22
+
23
+ ### Fixed
24
+
25
+ <a href="https://www.buymeacoffee.com/luligugithub">
26
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
27
+ </a>
28
+
29
+ ## [3.2.9] - 2025-09-27
12
30
 
13
31
  ### Breaking Changes
14
32
 
@@ -21,7 +39,7 @@ If you like this project and find it useful, please consider giving it a star on
21
39
  - [frontend]: Use MbfTable for Plugins, Devices, Registered devices and Clusters tables.
22
40
  - [frontend]: Optimized WebSocker message handlers. Now, the handler targets the component.
23
41
  - [frontend]: Removed dangerouslySetInnerHTML from log rendering.
24
- - [frontend]: Added push update to Icon view and table view cluster panel.
42
+ - [frontend]: Added push update to Icon view and table view cluster panel. Now, they updates data in real time.
25
43
  - [frontend]: Added install progress dialog when installing or uploading packages.
26
44
  - [endpoint]: Added occupancy feature to all Thermostat cluster helpers. When provided (either false or true) it will create a Thermostat with occupancy feature.
27
45
  - [endpoint]: Added outdoorTemperature to all Thermostat cluster helpers. Default is undefined (it will be ignored).
package/dist/frontend.js CHANGED
@@ -862,6 +862,8 @@ export class Frontend extends EventEmitter {
862
862
  return devices;
863
863
  }
864
864
  getClusters(pluginName, endpointNumber) {
865
+ if (this.matterbridge.hasCleanupStarted)
866
+ return;
865
867
  const endpoint = this.matterbridge.devices.array().find((d) => d.plugin === pluginName && d.maybeNumber === endpointNumber);
866
868
  if (!endpoint || !endpoint.plugin || !endpoint.maybeNumber || !endpoint.maybeId || !endpoint.deviceName || !endpoint.serialNumber) {
867
869
  this.log.error(`getClusters: no device found for plugin ${pluginName} and endpoint number ${endpointNumber}`);
@@ -1336,7 +1336,7 @@ export class Matterbridge extends EventEmitter {
1336
1336
  }
1337
1337
  this.startServerNode(plugin.serverNode);
1338
1338
  plugin.reachabilityTimeout = setTimeout(() => {
1339
- this.log.info(`Setting reachability to true for ${plg}${plugin.name}${nf} type ${plugin.type} server node ${plugin.serverNode !== undefined} aggregator node ${plugin.aggregatorNode !== undefined} device ${plugin.device !== undefined}`);
1339
+ this.log.info(`Setting reachability to true for ${plg}${plugin.name}${nf}`);
1340
1340
  if (plugin.type === 'DynamicPlatform' && plugin.aggregatorNode)
1341
1341
  this.setAggregatorReachability(plugin.aggregatorNode, true);
1342
1342
  }, 60 * 1000).unref();