matterbridge 3.5.0-dev-20260116-a3c85aa → 3.5.0-dev-20260117-88ddbe4
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
|
@@ -69,6 +69,7 @@ Advantages:
|
|
|
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
71
|
- [thermostat]: Conformance to new matter.js internal attributes externalMeasuredIndoorTemperature and externallyMeasuredOccupancy (not in Matter 1.4.2 specs).
|
|
72
|
+
- [scenes]: Added SceneManagement when required.
|
|
72
73
|
- [matter.js]: Bump to matter.j v. 0.16.0.
|
|
73
74
|
- [matter.js]: Bump to matter.j v. 0.16.1.
|
|
74
75
|
- [matter.js]: Bump to matter.j v. 0.16.2.
|
|
@@ -81,6 +82,7 @@ Advantages:
|
|
|
81
82
|
- [package]: Updated dependencies.
|
|
82
83
|
- [eslint]: Moved cache in .cache/.eslintcache.
|
|
83
84
|
- [prettier]: Moved cache in .cache/.prettiercache.
|
|
85
|
+
- [DevContainer]: Refactor DevContainer to use bridge mode.
|
|
84
86
|
|
|
85
87
|
### Fixed
|
|
86
88
|
|
|
@@ -94,7 +94,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
94
94
|
createDefaultDeviceEnergyManagementModeClusterServer(currentMode?: number, supportedModes?: DeviceEnergyManagementMode.ModeOption[]): this;
|
|
95
95
|
createDefaultIdentifyClusterServer(identifyTime?: number, identifyType?: Identify.IdentifyType): this;
|
|
96
96
|
createDefaultGroupsClusterServer(): this;
|
|
97
|
-
|
|
97
|
+
createDefaultScenesManagementClusterServer(): this;
|
|
98
98
|
createDefaultOnOffClusterServer(onOff?: boolean, globalSceneControl?: boolean, onTime?: number, offWaitTime?: number, startUpOnOff?: OnOff.StartUpOnOff | null): this;
|
|
99
99
|
createOnOffClusterServer(onOff?: boolean): this;
|
|
100
100
|
createDeadFrontOnOffClusterServer(onOff?: boolean): this;
|
|
@@ -521,7 +521,7 @@ export class MatterbridgeEndpoint extends Endpoint {
|
|
|
521
521
|
this.behaviors.require(GroupsServer);
|
|
522
522
|
return this;
|
|
523
523
|
}
|
|
524
|
-
|
|
524
|
+
createDefaultScenesManagementClusterServer() {
|
|
525
525
|
this.behaviors.require(ScenesManagementServer);
|
|
526
526
|
return this;
|
|
527
527
|
}
|
|
@@ -12,6 +12,7 @@ import { BasicInformation } from '@matter/types/clusters/basic-information';
|
|
|
12
12
|
import { BridgedDeviceBasicInformation } from '@matter/types/clusters/bridged-device-basic-information';
|
|
13
13
|
import { Identify } from '@matter/types/clusters/identify';
|
|
14
14
|
import { Groups } from '@matter/types/clusters/groups';
|
|
15
|
+
import { ScenesManagement } from '@matter/types/clusters/scenes-management';
|
|
15
16
|
import { OnOff } from '@matter/types/clusters/on-off';
|
|
16
17
|
import { LevelControl } from '@matter/types/clusters/level-control';
|
|
17
18
|
import { ColorControl } from '@matter/types/clusters/color-control';
|
|
@@ -55,6 +56,7 @@ import { FixedLabelServer } from '@matter/node/behaviors/fixed-label';
|
|
|
55
56
|
import { BasicInformationServer } from '@matter/node/behaviors/basic-information';
|
|
56
57
|
import { BridgedDeviceBasicInformationServer } from '@matter/node/behaviors/bridged-device-basic-information';
|
|
57
58
|
import { GroupsServer } from '@matter/node/behaviors/groups';
|
|
59
|
+
import { ScenesManagementServer } from '@matter/node/behaviors/scenes-management';
|
|
58
60
|
import { PumpConfigurationAndControlServer } from '@matter/node/behaviors/pump-configuration-and-control';
|
|
59
61
|
import { SwitchServer } from '@matter/node/behaviors/switch';
|
|
60
62
|
import { BooleanStateServer } from '@matter/node/behaviors/boolean-state';
|
|
@@ -149,6 +151,8 @@ export function getBehaviourTypeFromClusterServerId(clusterId) {
|
|
|
149
151
|
return MatterbridgeIdentifyServer;
|
|
150
152
|
if (clusterId === Groups.Cluster.id)
|
|
151
153
|
return GroupsServer;
|
|
154
|
+
if (clusterId === ScenesManagement.Cluster.id)
|
|
155
|
+
return ScenesManagementServer;
|
|
152
156
|
if (clusterId === OnOff.Cluster.id)
|
|
153
157
|
return MatterbridgeOnOffServer.with('Lighting');
|
|
154
158
|
if (clusterId === LevelControl.Cluster.id)
|
|
@@ -313,6 +317,8 @@ export function addClusterServers(endpoint, serverList) {
|
|
|
313
317
|
endpoint.createDefaultIdentifyClusterServer();
|
|
314
318
|
if (serverList.includes(Groups.Cluster.id))
|
|
315
319
|
endpoint.createDefaultGroupsClusterServer();
|
|
320
|
+
if (serverList.includes(ScenesManagement.Cluster.id))
|
|
321
|
+
endpoint.createDefaultScenesManagementClusterServer();
|
|
316
322
|
if (serverList.includes(OnOff.Cluster.id))
|
|
317
323
|
endpoint.createDefaultOnOffClusterServer();
|
|
318
324
|
if (serverList.includes(LevelControl.Cluster.id))
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.5.0-dev-
|
|
3
|
+
"version": "3.5.0-dev-20260117-88ddbe4",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge",
|
|
9
|
-
"version": "3.5.0-dev-
|
|
9
|
+
"version": "3.5.0-dev-20260117-88ddbe4",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@matter/main": "0.16.5",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.5.0-dev-
|
|
3
|
+
"version": "3.5.0-dev-20260117-88ddbe4",
|
|
4
4
|
"description": "Matterbridge plugin manager for Matter",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -118,8 +118,8 @@
|
|
|
118
118
|
"ws": "8.19.0"
|
|
119
119
|
},
|
|
120
120
|
"build": {
|
|
121
|
-
"sha": "
|
|
122
|
-
"sha7": "
|
|
121
|
+
"sha": "88ddbe48a2f5351c1a1ae2ba977137da6fd3c160",
|
|
122
|
+
"sha7": "88ddbe4",
|
|
123
123
|
"event": "workflow_dispatch",
|
|
124
124
|
"workflow": "Daily Dev Publish to npm",
|
|
125
125
|
"type": "branch",
|