matterbridge 3.6.0-dev-20260302-e3a7eb0 → 3.6.0-dev-20260303-2f99eca

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +15 -1
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -58,13 +58,27 @@ These threads already run as workers:
58
58
  - [Refrigerator]: Refactor `Refrigerator` class to use TemperatureNumber for TemperatureControlledCabinet device type.
59
59
  - [Evse]: Refactor `Evse` class as composed device.
60
60
  - [WaterHeater]: Refactor `WaterHeater` class as composed device.
61
+ - [SolarPower]: Refactor `SolarPower` class as composed device.
62
+ - [BatteryStorage]: Refactor `BatteryStorage` class as composed device.
63
+ - [HeatPump]: Refactor `HeatPump` class as composed device.
64
+ - [matter1.5.0]: Add SoilMeasurement cluster and corresponding test.
65
+ - [matter1.5.0]: Add ClosureControl and ClosureDimension clusters with corresponding tests.
66
+ - [matter1.5.0]: Add SoilSensor class and corresponding tests.
67
+ - [matter1.5.0]: Add IrrigationSystem class and corresponding tests.
68
+ - [matter1.5.0]: Add Closure class and corresponding tests.
69
+ - [matter1.5.0]: Add ClosurePanel class and corresponding tests.
70
+ - [matter1.5.0]: Add SoilSensor, IrrigationSystem, Closure, and ClosurePanel device types with corresponding definitions.
71
+ - [semtag]: Add getSemtag() helper to facilitate adding tagList to the Desscriptor cluster.
72
+ - [chip-test]: ✅ `TC_DeviceBasicComposition.py` passes.
73
+ - [chip-test]: ✅ `TC_DeviceConformance.py` passes.
74
+ - [chip-test]: ✅ `TC_DefaultWarnings.py` passes.
61
75
 
62
76
  ### Added
63
77
 
64
78
  - [docker]: Add the image (tag **s6-rc-legacy** 83 MB). It includes only Matterbridge, using the latest release published on npm. This image is based on `node:22-bullseye-slim` (the last node version supporting armv7), supports `arm64`, `amd64` and `arm/v7` and integrates the `s6-rc overlay` system. Plugins are not included in the image: they will be installed on first run. It is only used for the legacy [Matterbridge Home Assistant Application (Legacy)](https://github.com/Luligu/matterbridge-home-assistant-addon-legacy).
65
79
  - [frontend]: Add the ability to filter by plugin in the Devices page. Thanks [Tamer Salah](https://github.com/tammeryousef1006).
66
80
  - [frontend]: Add in the config whiteList and blackList select a filter to remove from the list what is already added. Thanks [Tamer Salah](https://github.com/tammeryousef1006).
67
- - [frontend]: Uregister all devices increments the BasicInformation.configurationVersion. This, if supported on controller side, allows controllers to detect changes in the configuration.
81
+ - [frontend]: Unregister all devices increments the BasicInformation.configurationVersion. This, if supported on controller side, allows controllers to detect changes in the configuration.
68
82
 
69
83
  ### Changed
70
84
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matterbridge",
3
- "version": "3.6.0-dev-20260302-e3a7eb0",
3
+ "version": "3.6.0-dev-20260303-2f99eca",
4
4
  "description": "Matterbridge plugin manager for Matter",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",
@@ -125,21 +125,21 @@
125
125
  "README-SERVICE.md"
126
126
  ],
127
127
  "dependencies": {
128
- "@matterbridge/core": "3.6.0-dev-20260302-e3a7eb0",
129
- "@matterbridge/dgram": "3.6.0-dev-20260302-e3a7eb0",
130
- "@matterbridge/jest-utils": "3.6.0-dev-20260302-e3a7eb0",
131
- "@matterbridge/thread": "3.6.0-dev-20260302-e3a7eb0",
132
- "@matterbridge/types": "3.6.0-dev-20260302-e3a7eb0",
133
- "@matterbridge/utils": "3.6.0-dev-20260302-e3a7eb0",
134
- "@matterbridge/vitest-utils": "3.6.0-dev-20260302-e3a7eb0"
128
+ "@matterbridge/core": "3.6.0-dev-20260303-2f99eca",
129
+ "@matterbridge/dgram": "3.6.0-dev-20260303-2f99eca",
130
+ "@matterbridge/jest-utils": "3.6.0-dev-20260303-2f99eca",
131
+ "@matterbridge/thread": "3.6.0-dev-20260303-2f99eca",
132
+ "@matterbridge/types": "3.6.0-dev-20260303-2f99eca",
133
+ "@matterbridge/utils": "3.6.0-dev-20260303-2f99eca",
134
+ "@matterbridge/vitest-utils": "3.6.0-dev-20260303-2f99eca"
135
135
  },
136
136
  "overrides": {
137
137
  "eslint": "10.0.2",
138
138
  "@eslint/js": "10.0.1"
139
139
  },
140
140
  "build": {
141
- "sha": "e3a7eb008b5df2d741414ce8e6f2c07325c405ce",
142
- "sha7": "e3a7eb0",
141
+ "sha": "2f99eca246686c5e436f4464c9d153c868d306a4",
142
+ "sha7": "2f99eca",
143
143
  "event": "workflow_dispatch",
144
144
  "workflow": "Publish to npm and trigger docker builds",
145
145
  "type": "branch",