matterbridge 3.5.0-dev-20260115-878d71a → 3.5.0-dev-20260117-6067fc2
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 -2
- package/dist/jestutils/jestHelpers.js +1 -1
- package/npm-shrinkwrap.json +10836 -1478
- package/package.json +8 -12
package/CHANGELOG.md
CHANGED
|
@@ -68,12 +68,13 @@ Advantages:
|
|
|
68
68
|
- [jest]: Added cache inside the repo in .cache/jest.
|
|
69
69
|
- [frontend]: Enhanced logging for HTTP/HTTPS server binding in Frontend class.
|
|
70
70
|
- [matterbridge]: Excluded specific network interfaces when looking for the first external interface.
|
|
71
|
-
- [thermostat]: Conformance to new matter.js internal attributes externalMeasuredIndoorTemperature and externallyMeasuredOccupancy (not in Matter 1.4.2).
|
|
71
|
+
- [thermostat]: Conformance to new matter.js internal attributes externalMeasuredIndoorTemperature and externallyMeasuredOccupancy (not in Matter 1.4.2 specs).
|
|
72
72
|
- [matter.js]: Bump to matter.j v. 0.16.0.
|
|
73
73
|
- [matter.js]: Bump to matter.j v. 0.16.1.
|
|
74
74
|
- [matter.js]: Bump to matter.j v. 0.16.2.
|
|
75
75
|
- [matter.js]: Bump to matter.j v. 0.16.3.
|
|
76
76
|
- [matter.js]: Bump to matter.j v. 0.16.4.
|
|
77
|
+
- [matter.js]: Bump to matter.j v. 0.16.5.
|
|
77
78
|
|
|
78
79
|
### Changed
|
|
79
80
|
|
|
@@ -83,7 +84,8 @@ Advantages:
|
|
|
83
84
|
|
|
84
85
|
### Fixed
|
|
85
86
|
|
|
86
|
-
- [
|
|
87
|
+
- [evse]: Fixed the EnergyEvse.chargingEnabledUntil attribute that was wrongly set in the disable command (spec 9.3.8.4).
|
|
88
|
+
- [package]: Fixed the devDependencies that slipped in for a bug in 3.4.7.
|
|
87
89
|
|
|
88
90
|
<a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
|
|
89
91
|
|
|
@@ -6,7 +6,7 @@ import { LogLevel as MatterLogLevel, LogFormat as MatterLogFormat, Environment,
|
|
|
6
6
|
import { Endpoint, ServerNode, ServerNodeStore } from '@matter/node';
|
|
7
7
|
import { DeviceTypeId, VendorId } from '@matter/types/datatype';
|
|
8
8
|
import { AggregatorEndpoint } from '@matter/node/endpoints';
|
|
9
|
-
import { MdnsService } from '@matter/
|
|
9
|
+
import { MdnsService } from '@matter/protocol';
|
|
10
10
|
import { NodeStorageManager } from 'node-persist-manager';
|
|
11
11
|
import { Matterbridge } from '../matterbridge.js';
|
|
12
12
|
import { MATTER_STORAGE_NAME, NODE_STORAGE_DIR } from '../matterbridgeTypes.js';
|