matterbridge 3.5.2-dev-20260130-b4e7ef3 → 3.5.3-dev-20260201-7fb9ced

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
@@ -33,7 +33,7 @@ The project will evolve to a multi-threaded architecture (the CLI will become th
33
33
 
34
34
  - ✅ check updates;
35
35
  - npm install;
36
- - ✅ get the global node_modules directory;
36
+ - ✅ check the global node_modules directory;
37
37
 
38
38
  Advantages:
39
39
 
@@ -42,7 +42,34 @@ Advantages:
42
42
  - individual plugin isolation in childbridge mode;
43
43
  - ability to update the plugin in childbridge mode without restarting matterbridge;
44
44
 
45
- ## [3.5.2] - Dev branch
45
+ ## [3.5.3] - Dev branch
46
+
47
+ ### Breaking Changes
48
+
49
+ - [docker]: Updated latest and dev docker images to use node:24-trixie-slim as base.
50
+
51
+ ### Added
52
+
53
+ - [docker]: Added workflow, scripts and dockerfile to build the s6-rc-base base image used by the Matterbridge Home Assistant Application.
54
+
55
+ ### Changed
56
+
57
+ - [package]: Updated dependencies.
58
+ - [workflows]: Updated all workflows to use Node.js 24.
59
+ - [readme]: Updated readme files to clarify which Node.js version should be installed.
60
+ - [docker]: Updated readme file to clarify which base image is used.
61
+ - [matter.js]: Bump to matter.j v. 0.16.8.
62
+ - [frontend]: Bumped `frontend` version to v. 3.4.4.
63
+ - [frontend]: Updated `frontend` dependencies.
64
+ - [config]: Added title render to the config editor and allow ui properties in 'oneOf', 'anyOf', 'allOf'. Thanks RinDevJunior (https://github.com/Luligu/matterbridge/pull/495).
65
+
66
+ ### Fixed
67
+
68
+ - [publish]: Updated publish.yml to trigger the correct docker-buildx-latest.yml.
69
+
70
+ <a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
71
+
72
+ ## [3.5.2] - 2026-01-31
46
73
 
47
74
  ### Added
48
75
 
package/README-DOCKER.md CHANGED
@@ -20,9 +20,9 @@
20
20
 
21
21
  The Matterbridge Docker images (multi-arch manifest list for **linux/amd64** and **linux/arm64**) are published on [**Docker Hub**](https://hub.docker.com/r/luligu/matterbridge). If you use them, please consider starring the project on [**Docker Hub**](https://hub.docker.com/r/luligu/matterbridge).
22
22
 
23
- The image (tag **latest**) includes Matterbridge and all official plugins, using the latest release published on npm. It is based on `node:22-bookworm-slim`. Since all official plugins are included, you can select and add a plugin without installing anything.
23
+ The image (tag **latest**) includes Matterbridge and all official plugins, using the latest release published on npm. It is based on `node:24-trixie-slim`. Since all official plugins are included, you can select and add a plugin without installing anything.
24
24
 
25
- The image (tag **dev**) includes Matterbridge and all official plugins from the latest push on GitHub. It is based on `node:22-bookworm-slim`. Since all official plugins are included, you can select and add a plugin without installing anything. Note: if you update to the latest **dev** from the frontend, you will override the GitHub version with the latest **dev** published on npm.
25
+ The image (tag **dev**) includes Matterbridge and all official plugins from the latest push on GitHub. It is based on `node:24-trixie-slim`. Since all official plugins are included, you can select and add a plugin without installing anything. Note: if you update to the latest **dev** from the frontend, you will override the GitHub version with the latest **dev** published on npm. The frontend shows if you are currently running the GitHub release or the latest or dev npm release.
26
26
 
27
27
  The image (tag **ubuntu**) includes only Matterbridge, using the latest release published on npm. This image (**for test and development only**) is based on `ubuntu:latest` with Node.js 24 from NodeSource. Plugins are not included in the image; they will be installed on first run. This image preinstalls `bluetooth`, `build-essential`, and `python` packages (useful for plugins that require native builds).
28
28
 
package/README.md CHANGED
@@ -71,16 +71,21 @@ https://blog.adafruit.com/2025/11/03/matterbridge-a-matter-plugin-manager/
71
71
 
72
72
  To run Matterbridge, you need either a [Node.js](https://nodejs.org/en) environment or [Docker](https://docs.docker.com/get-started/get-docker/) installed on your system.
73
73
 
74
- If you don't have Node.js already install, please use this method to install it on a debian device: https://github.com/nodesource/distributions.
75
- The supported versions of node are 20, 22 and 24. Please install Node.js 22 LTS. Don't use Node.js Current but always the Node.js LTS.
76
- Node.js 23, like all odd-numbered versions, is not supported.
77
- Nvm is not a good choice and should not be used for production.
74
+ If you don't have Node.js already installed, please use this method to install it on a Debian system: https://github.com/nodesource/distributions.
78
75
 
79
- If you don't have Docker already install, please use this method to install it on a debian device: https://docs.docker.com/engine/install.
76
+ The supported versions of Node.js are 20, 22, and 24. Please **install Node.js 24 LTS**. Don't use Node.js Current; always use the Node.js LTS releases.
80
77
 
81
- If you don't have Docker already install, please use this method to install it on a Windows or macOS: https://docs.docker.com/get-started/introduction/get-docker-desktop/.
78
+ Node.js 25, like all odd-numbered versions, is not supported.
82
79
 
83
- After follow the guidelines for the [Docker configurations](README-DOCKER.md).
80
+ To verify which Node.js version is currently LTS (Active), check [Node.js Releases](https://nodejs.org/en/about/previous-releases).
81
+
82
+ **Nvm is not a good choice and should not be used for production**.
83
+
84
+ If you don't have Docker already installed, please use this method to install it on a Debian system: https://docs.docker.com/engine/install.
85
+
86
+ If you don't have Docker already installed, please use this method to install it on Windows or macOS: https://docs.docker.com/get-started/introduction/get-docker-desktop/.
87
+
88
+ After that, follow the guidelines for the [Docker configurations](README-DOCKER.md).
84
89
 
85
90
  I suggest using Docker for its simplicity.
86
91
 
@@ -88,9 +93,9 @@ Since Matter is designed as "a universal IPv6-based communication protocol for s
88
93
 
89
94
  **Important:** You only need IPv6 on your local network - it doesn't matter if your internet provider doesn't provide IPv6 on the internet side (WAN).
90
95
 
91
- Avoid using VLAN, VM and firewall blocking the communications between the controllers and Matterbridge.
96
+ Avoid VLANs, VMs, and firewalls that block communication between the controllers and Matterbridge.
92
97
 
93
- To pair matterbridge, you need a matter enabled controller (Apple Home, Smart Things, Google Home, Alexa, Home Assistant etc.).
98
+ To pair Matterbridge, you need a Matter-enabled controller (Apple Home, SmartThings, Google Home, Alexa, Home Assistant, etc.).
94
99
 
95
100
  ## Installation
96
101