matterbridge 3.8.0-dev-20260605-48352af → 3.8.0

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
@@ -62,7 +62,11 @@ These classes will run as threads in the next releases:
62
62
  - [matter]: Update to Matter 1.5.1. See [Matter 1.5.1 changes from 1.4.2](https://matterbridge.io/Matter-1.5.1.html).
63
63
  - [matter]: Update to matter.js 0.17.1. See [Matter.js 0.17 changes from 0.16](https://matterbridge.io/Matter.js-0.17.html).
64
64
  - [matter]: Enable `tcp` transport with `udp` preference. If you override the default Matter port 5540, consider eventual port number collision for both udp and tcp protocols.
65
- - [endpoint]: Since the cluster clients have been added to each device type, instead of `addRequiredClusterServers()` call `addRequiredClusters()` to add both required server clusters and required client clusters.
65
+
66
+ ### Development Breaking changes
67
+
68
+ - [matterbridge]: Since this release upgrades matter to 1.5.1, it would be better to require matterbridge 3.8.0 in all plugins next release cause some changes in the plugin code will not be backward compatible.
69
+ - [endpoint]: Since the cluster clients have been added to each device type, instead of `addRequiredClusterServers()` call `addRequiredClusters()` (3.8.0 only) to add both required server clusters and required client clusters.
66
70
 
67
71
  ### Development
68
72
 
@@ -100,7 +104,6 @@ These classes will run as threads in the next releases:
100
104
  - [vitest]: Bump `vitest` config to v.2.0.5.
101
105
  - [eslint]: Bump `eslint` config to v.2.0.5.
102
106
  - [eslint]: Bump `devcontainer` config to v.1.0.1.
103
-
104
107
  - [claude]: Move CLAUDE.md in the repo root.
105
108
  - [claude]: Add .claude/settings.json with permissions configuration.
106
109
 
package/README-DEV.md CHANGED
@@ -403,6 +403,8 @@ The mode=`matter` property of MatterbridgeEndpointOptions, allows to create a (n
403
403
 
404
404
  Some Matter device types act as **controllers** rather than servers. They consume clusters that are implemented on remote endpoints (e.g. a Closure Controller that drives a Closure device). These are called **client clusters**.
405
405
 
406
+ Other devices like OnOffLight have an **optional cluster client** OccupancySensor that, when bound to another endpoint (local or remote), allows to turn the light on and off following the OccupancySensor status.
407
+
406
408
  Matterbridge exposes client cluster support through `MatterbridgeBindingServer`. When required on an endpoint it:
407
409
 
408
410
  1. Registers the given cluster IDs in the Binding cluster's `clientList` state.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matterbridge",
3
- "version": "3.8.0-dev-20260605-48352af",
3
+ "version": "3.8.0",
4
4
  "description": "Matterbridge plugin manager for Matter",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",
@@ -156,24 +156,24 @@
156
156
  "@eslint/js": "10.0.1"
157
157
  },
158
158
  "dependencies": {
159
- "@matterbridge/core": "3.8.0-dev-20260605-48352af",
160
- "@matterbridge/dgram": "3.8.0-dev-20260605-48352af",
161
- "@matterbridge/jest-utils": "3.8.0-dev-20260605-48352af",
162
- "@matterbridge/thread": "3.8.0-dev-20260605-48352af",
163
- "@matterbridge/types": "3.8.0-dev-20260605-48352af",
164
- "@matterbridge/utils": "3.8.0-dev-20260605-48352af",
165
- "@matterbridge/vitest-utils": "3.8.0-dev-20260605-48352af",
159
+ "@matterbridge/core": "3.8.0",
160
+ "@matterbridge/dgram": "3.8.0",
161
+ "@matterbridge/jest-utils": "3.8.0",
162
+ "@matterbridge/thread": "3.8.0",
163
+ "@matterbridge/types": "3.8.0",
164
+ "@matterbridge/utils": "3.8.0",
165
+ "@matterbridge/vitest-utils": "3.8.0",
166
166
  "node-ansi-logger": "3.3.0-dev-20260524-cac9dd5",
167
167
  "node-persist-manager": "2.1.0-dev-20260524-6a6019a"
168
168
  },
169
169
  "build": {
170
170
  "version": "3.8.0",
171
- "sha": "062966eacd8a49da0acddf4925a89ced34ca518a",
172
- "sha7": "062966e",
173
- "event": "schedule",
171
+ "sha": "2327c88be31a54c77b012047db599197542b20b4",
172
+ "sha7": "2327c88",
173
+ "event": "release",
174
174
  "workflow": "Publish to npm and trigger docker builds",
175
175
  "type": "branch",
176
- "name": "dev",
177
- "dev": "true"
176
+ "name": "main",
177
+ "dev": "false"
178
178
  }
179
179
  }