matterbridge 3.5.6 → 3.6.0-dev-20260302-e3a7eb0
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 +33 -0
- package/README-DOCKER.md +3 -1
- package/apps/frontend/build/assets/index.js +4 -4
- package/apps/frontend/build/assets/vendor_mui.js +25 -25
- package/apps/frontend/build/assets/vendor_node_modules.js +21 -21
- package/apps/frontend/npm-shrinkwrap.json +11 -11
- package/apps/frontend/package.json +4 -4
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -50,6 +50,39 @@ These threads already run as workers:
|
|
|
50
50
|
- npm install;
|
|
51
51
|
- ✅ check the global node_modules directory;
|
|
52
52
|
|
|
53
|
+
## [3.6.0] - Dev branch
|
|
54
|
+
|
|
55
|
+
### Dev Breaking Changes
|
|
56
|
+
|
|
57
|
+
- [Oven]: Refactor `Oven` class to use TemperatureNumber for TemperatureControlledCabinet device type.
|
|
58
|
+
- [Refrigerator]: Refactor `Refrigerator` class to use TemperatureNumber for TemperatureControlledCabinet device type.
|
|
59
|
+
- [Evse]: Refactor `Evse` class as composed device.
|
|
60
|
+
- [WaterHeater]: Refactor `WaterHeater` class as composed device.
|
|
61
|
+
|
|
62
|
+
### Added
|
|
63
|
+
|
|
64
|
+
- [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
|
+
- [frontend]: Add the ability to filter by plugin in the Devices page. Thanks [Tamer Salah](https://github.com/tammeryousef1006).
|
|
66
|
+
- [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.
|
|
68
|
+
|
|
69
|
+
### Changed
|
|
70
|
+
|
|
71
|
+
- [package]: Update dependencies.
|
|
72
|
+
- [package]: Add `@eslint/json`.
|
|
73
|
+
- [package]: Add `@eslint/markdown`.
|
|
74
|
+
- [docker]: The base image `24-ubuntu-slim` is now built with the latest node 24 release.
|
|
75
|
+
- [frontend]: Bumped `frontend` version to v. 3.4.7.
|
|
76
|
+
- [frontend]: Update dependencies.
|
|
77
|
+
|
|
78
|
+
### Fixed
|
|
79
|
+
|
|
80
|
+
- [thermostat]: Remove atomic commands required only with Preset and Schedule features.
|
|
81
|
+
- [TemperatureControlledCabinet]: Remove not mandatory Identify cluster from TemperatureControlledCabinet device type.
|
|
82
|
+
- [frontend]: Fix config lock from select Devices panel.
|
|
83
|
+
|
|
84
|
+
<a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
|
|
85
|
+
|
|
53
86
|
## [3.5.6] - 2026-02-27
|
|
54
87
|
|
|
55
88
|
### Dev Breaking Changes
|
package/README-DOCKER.md
CHANGED
|
@@ -33,7 +33,9 @@ The image (tag **ubuntu** 87 MB) includes only Matterbridge, using the latest re
|
|
|
33
33
|
|
|
34
34
|
The image (tag **alpine** 58 MB) includes only Matterbridge, using the latest release published on npm. This image (**for test and development only**) is based on `node:24-alpine`. Plugins are not included in the image: they will be installed on first run.
|
|
35
35
|
|
|
36
|
-
The image (tag **s6-rc** 83 MB) includes only Matterbridge, using the latest release published on npm. This image is based on `node:24-trixie-slim` 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 [Matterbridge Home Assistant Application](https://github.com/Luligu/matterbridge-home-assistant-addon).
|
|
36
|
+
The image (tag **s6-rc** 83 MB) includes only Matterbridge, using the latest release published on npm. This image is based on `node:24-trixie-slim`, supports `arm64`, `amd64` 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 [Matterbridge Home Assistant Application](https://github.com/Luligu/matterbridge-home-assistant-addon).
|
|
37
|
+
|
|
38
|
+
The image (tag **s6-rc-legacy** 83 MB) includes only Matterbridge, using the latest release published on npm. This image is based on `node:22-bullseye-slim`, 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).
|
|
37
39
|
|
|
38
40
|
### Matterbridge chip-tool docker image
|
|
39
41
|
|