matterbridge 3.1.2-dev-20250710-07d08a6 → 3.1.3-dev-20250712-616f7ed

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,6 +8,30 @@ 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.1.3] - 2025-07-11
12
+
13
+ ### Development Breaking Changes
14
+
15
+ - [exports]: The single devices (i.e. Rvc, Evse etc...) are only exported from `matterbridge/devices`. Please update your imports to use the new export path. Refer to the [documentation](README-DEV.md) for details on imports.
16
+
17
+ - [MatterbridgeEndpoint]: Added the mode property: `server` will make the device indipendent from its plugin. It has its own server node: QRCode, Fabrics and Sessions are visible in the Devices section of the Home page. This is a workaround for the Rvc Apple issue. With mode=server the Rvc (like any other device) can be paired directly to the controller like a native not bridged Matter device. Refer to the [documentation](README-DEV.md) for details on using mode.
18
+
19
+ - [RoboticVacuumCleaner]: The signature of the constructor has changed to add the mode property. Mode `server` will make the device indipendent from its plugin. It has its own server node: QRCode, Fabrics and Sessions are visible in the Devices section of the Home page. This is a workaround for the Rvc Apple issue. With mode=server the Rvc (like any other device) can be paired directly to the controller like a native not bridged Matter device. Refer to the [documentation](README-DEV.md) for details on using mode.
20
+
21
+ ### Added
22
+
23
+ - [endpoint]: Improved jsdoc description on endpoint helpers.
24
+ - [endpoint]: Added createDefaultMomentarySwitchClusterServer() cluster helper.
25
+
26
+ ### Changed
27
+
28
+ - [package]: Updated dependencies.
29
+ - [vendorId]: Added Shortcut Labs Flic (0x1488).
30
+
31
+ <a href="https://www.buymeacoffee.com/luligugithub">
32
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
33
+ </a>
34
+
11
35
  ## [3.1.2] - 2025-07-06
12
36
 
13
37
  ### Development Breaking Changes
@@ -970,6 +970,15 @@ export class MatterbridgeEndpoint extends Endpoint {
970
970
  });
971
971
  return this;
972
972
  }
973
+ createDefaultMomentarySwitchClusterServer() {
974
+ this.behaviors.require(MatterbridgeSwitchServer.with(Switch.Feature.MomentarySwitch).enable({
975
+ events: { initialPress: true },
976
+ }), {
977
+ numberOfPositions: 2,
978
+ currentPosition: 0,
979
+ });
980
+ return this;
981
+ }
973
982
  createDefaultLatchingSwitchClusterServer() {
974
983
  this.behaviors.require(SwitchServer.with(Switch.Feature.LatchingSwitch).enable({
975
984
  events: { switchLatched: true },
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "matterbridge",
3
- "version": "3.1.2-dev-20250710-07d08a6",
3
+ "version": "3.1.3-dev-20250712-616f7ed",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "matterbridge",
9
- "version": "3.1.2-dev-20250710-07d08a6",
9
+ "version": "3.1.3-dev-20250712-616f7ed",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
12
  "@matter/main": "0.15.1",
@@ -357,9 +357,9 @@
357
357
  "license": "MIT"
358
358
  },
359
359
  "node_modules/bare-events": {
360
- "version": "2.5.4",
361
- "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.5.4.tgz",
362
- "integrity": "sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA==",
360
+ "version": "2.6.0",
361
+ "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.6.0.tgz",
362
+ "integrity": "sha512-EKZ5BTXYExaNqi3I3f9RtEsaI/xBSGjE0XZCZilPzFAV/goswFHuPd9jEZlPIZ/iNZJwDSao9qRiScySz7MbQg==",
363
363
  "license": "Apache-2.0",
364
364
  "optional": true
365
365
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matterbridge",
3
- "version": "3.1.2-dev-20250710-07d08a6",
3
+ "version": "3.1.3-dev-20250712-616f7ed",
4
4
  "description": "Matterbridge plugin manager for Matter",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",