matterbridge 3.7.8 → 3.7.9-dev-20260511-08f27eb
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 +19 -0
- package/README-DEV.md +2 -2
- package/README-DOCKER.md +5 -5
- package/README.md +2 -2
- package/apps/frontend/npm-shrinkwrap.json +3 -3
- package/apps/frontend/package.json +2 -2
- package/package.json +16 -13
package/CHANGELOG.md
CHANGED
|
@@ -55,6 +55,25 @@ These classes will run as threads in the next releases:
|
|
|
55
55
|
- all plugins in bridge mode;
|
|
56
56
|
- each plugin in childbridge mode;
|
|
57
57
|
|
|
58
|
+
## [3.7.9] - Dev branch
|
|
59
|
+
|
|
60
|
+
### Breaking Changes
|
|
61
|
+
|
|
62
|
+
- [docker]: The **latest** docker image now includes only Matterbridge, using the latest release published on npm. Plugins are not included in the image: they will be reinstalled on first run.
|
|
63
|
+
|
|
64
|
+
### Added
|
|
65
|
+
|
|
66
|
+
- [node]: Add Node.js 26.x to the allowed versions in the package.json `engines` field.
|
|
67
|
+
- [workflows]: Add Node.js 26.x to the build matrix and remove Node.js 20.x.
|
|
68
|
+
|
|
69
|
+
### Changed
|
|
70
|
+
|
|
71
|
+
- [docker]: Update the **chip-test** Dockerfile to `ubuntu:24.04` because `ubuntu:latest` now resolves to Ubuntu 26.04 LTS (Resolute), which is not yet supported by connectedhomeip.
|
|
72
|
+
- [docker]: The **24-ubuntu-slim** and **ubuntu** Matterbridge Docker images now resolve to "Ubuntu 26.04 LTS (Resolute)".
|
|
73
|
+
- [frontend]: Bump `frontend` version to v.3.4.15.
|
|
74
|
+
|
|
75
|
+
<a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
|
|
76
|
+
|
|
58
77
|
## [3.7.8] - 2026-05-09
|
|
59
78
|
|
|
60
79
|
### Development Breaking Changes
|
package/README-DEV.md
CHANGED
|
@@ -114,7 +114,7 @@ Dev containers have networking limitations depending on the host OS and Docker s
|
|
|
114
114
|
| ---------------------------------------------------------------- | ---------------------------------------------------------------- |
|
|
115
115
|
| `.github/copilot-instructions.md` | Main project instructions — always loaded |
|
|
116
116
|
| `.github/instructions/matterbridge/matterbridge.instructions.md` | Matterbridge endpoint guide — dedicated Copilot instruction file |
|
|
117
|
-
| `.github/instructions/testing/unit-tests.instructions.md` | Testing standards — scoped to
|
|
117
|
+
| `.github/instructions/testing/unit-tests.instructions.md` | Testing standards — scoped to `**/*.test.ts` |
|
|
118
118
|
|
|
119
119
|
## Claude instructions
|
|
120
120
|
|
|
@@ -122,7 +122,7 @@ Dev containers have networking limitations depending on the host OS and Docker s
|
|
|
122
122
|
| --------------------------------------------------------- | ----------------------------------------------------- |
|
|
123
123
|
| `.claude/CLAUDE.md` | Main project instructions — always loaded |
|
|
124
124
|
| `.claude/rules/matterbridge/matterbridge.instructions.md` | Matterbridge endpoint guide — loaded for all contexts |
|
|
125
|
-
| `.claude/rules/testing/unit-tests.instructions.md` | Testing standards — scoped to
|
|
125
|
+
| `.claude/rules/testing/unit-tests.instructions.md` | Testing standards — scoped to `**/*.test.ts` |
|
|
126
126
|
|
|
127
127
|
## Guidelines on imports/exports
|
|
128
128
|
|
package/README-DOCKER.md
CHANGED
|
@@ -27,17 +27,17 @@
|
|
|
27
27
|
|
|
28
28
|
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).
|
|
29
29
|
|
|
30
|
-
The image (tag **latest** 87 MB) includes Matterbridge
|
|
30
|
+
The image (tag **latest** 87 MB) includes only Matterbridge, using the latest release published on npm. It is based on `node:24-trixie-slim`. Plugins are not included in the image: they will be reinstalled on first run.
|
|
31
31
|
|
|
32
32
|
The image (tag **dev** 99 MB) 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.
|
|
33
33
|
|
|
34
|
-
The image (tag **ubuntu** 87 MB) 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
|
|
34
|
+
The image (tag **ubuntu** 87 MB) 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 reinstalled on first run. This image, on the first run, preinstalls `bluetooth`, `build-essential`, and `python` packages (useful for plugins that require native builds).
|
|
35
35
|
|
|
36
|
-
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
|
|
36
|
+
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 reinstalled on first run.
|
|
37
37
|
|
|
38
|
-
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
|
|
38
|
+
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 reinstalled on first run. It is only used for the [Matterbridge Home Assistant Application](https://github.com/Luligu/matterbridge-home-assistant-addon).
|
|
39
39
|
|
|
40
|
-
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
|
|
40
|
+
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 reinstalled on first run. It is only used for the legacy [Matterbridge Home Assistant Application (Legacy)](https://github.com/Luligu/matterbridge-home-assistant-addon-legacy).
|
|
41
41
|
|
|
42
42
|
### Matterbridge chip-tool docker image
|
|
43
43
|
|
package/README.md
CHANGED
|
@@ -85,9 +85,9 @@ I suggest using Docker for its simplicity.
|
|
|
85
85
|
|
|
86
86
|
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.
|
|
87
87
|
|
|
88
|
-
The supported versions of Node.js are >=20.19.0, >=22.13.0, and
|
|
88
|
+
The supported versions of Node.js are >=20.19.0, >=22.13.0, 24 and 26. Please **install Node.js 24 LTS**. Don't use Node.js Current; always use the Node.js LTS releases.
|
|
89
89
|
|
|
90
|
-
Node.js 21, 23, 25, like all odd-numbered versions, are not supported.
|
|
90
|
+
Node.js 21, 23, 25, 27 like all odd-numbered versions, are not supported.
|
|
91
91
|
|
|
92
92
|
To verify which Node.js version is currently LTS (Active), check [Node.js Releases](https://nodejs.org/en/about/previous-releases).
|
|
93
93
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matterbridge/frontend",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.15",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@matterbridge/frontend",
|
|
9
|
-
"version": "3.4.
|
|
9
|
+
"version": "3.4.15",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@emotion/react": "11.14.0",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"react-router": "7.15.0"
|
|
26
26
|
},
|
|
27
27
|
"engines": {
|
|
28
|
-
"node": ">=20.19.0 <21.0.0 || >=22.13.0 <23.0.0 || >=24.0.0 <25.0.0"
|
|
28
|
+
"node": ">=20.19.0 <21.0.0 || >=22.13.0 <23.0.0 || >=24.0.0 <25.0.0 || >=26.0.0 <27.0.0"
|
|
29
29
|
},
|
|
30
30
|
"funding": {
|
|
31
31
|
"type": "buymeacoffee",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matterbridge/frontend",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.15",
|
|
4
4
|
"description": "Matterbridge frontend application",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
|
47
|
-
"node": ">=20.19.0 <21.0.0 || >=22.13.0 <23.0.0 || >=24.0.0 <25.0.0"
|
|
47
|
+
"node": ">=20.19.0 <21.0.0 || >=22.13.0 <23.0.0 || >=24.0.0 <25.0.0 || >=26.0.0 <27.0.0"
|
|
48
48
|
},
|
|
49
49
|
"files": [
|
|
50
50
|
"build",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.9-dev-20260511-08f27eb",
|
|
4
4
|
"description": "Matterbridge plugin manager for Matter",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -35,6 +35,9 @@
|
|
|
35
35
|
"google-home",
|
|
36
36
|
"alexa",
|
|
37
37
|
"homeassistant",
|
|
38
|
+
"hass",
|
|
39
|
+
"hassio",
|
|
40
|
+
"gladysassistant",
|
|
38
41
|
"smartthings",
|
|
39
42
|
"ewelink"
|
|
40
43
|
],
|
|
@@ -51,7 +54,7 @@
|
|
|
51
54
|
"mb_health": "bin/mb_health.js"
|
|
52
55
|
},
|
|
53
56
|
"engines": {
|
|
54
|
-
"node": ">=20.19.0 <21.0.0 || >=22.13.0 <23.0.0 || >=24.0.0 <25.0.0"
|
|
57
|
+
"node": ">=20.19.0 <21.0.0 || >=22.13.0 <23.0.0 || >=24.0.0 <25.0.0 || >=26.0.0 <27.0.0"
|
|
55
58
|
},
|
|
56
59
|
"exports": {
|
|
57
60
|
".": {
|
|
@@ -138,24 +141,24 @@
|
|
|
138
141
|
"@eslint/js": "10.0.1"
|
|
139
142
|
},
|
|
140
143
|
"dependencies": {
|
|
141
|
-
"@matterbridge/core": "3.7.
|
|
142
|
-
"@matterbridge/dgram": "3.7.
|
|
143
|
-
"@matterbridge/jest-utils": "3.7.
|
|
144
|
-
"@matterbridge/thread": "3.7.
|
|
145
|
-
"@matterbridge/types": "3.7.
|
|
146
|
-
"@matterbridge/utils": "3.7.
|
|
147
|
-
"@matterbridge/vitest-utils": "3.7.
|
|
144
|
+
"@matterbridge/core": "3.7.9-dev-20260511-08f27eb",
|
|
145
|
+
"@matterbridge/dgram": "3.7.9-dev-20260511-08f27eb",
|
|
146
|
+
"@matterbridge/jest-utils": "3.7.9-dev-20260511-08f27eb",
|
|
147
|
+
"@matterbridge/thread": "3.7.9-dev-20260511-08f27eb",
|
|
148
|
+
"@matterbridge/types": "3.7.9-dev-20260511-08f27eb",
|
|
149
|
+
"@matterbridge/utils": "3.7.9-dev-20260511-08f27eb",
|
|
150
|
+
"@matterbridge/vitest-utils": "3.7.9-dev-20260511-08f27eb",
|
|
148
151
|
"node-ansi-logger": "3.2.2-dev-20260505-d01e13b",
|
|
149
152
|
"node-persist-manager": "2.1.0-dev-20260505-762a5db"
|
|
150
153
|
},
|
|
151
154
|
"build": {
|
|
152
|
-
"version": "3.7.
|
|
155
|
+
"version": "3.7.9",
|
|
153
156
|
"sha": "9511142c83eb399ac31a5d20bfc5f192b65065cb",
|
|
154
157
|
"sha7": "9511142",
|
|
155
|
-
"event": "
|
|
158
|
+
"event": "schedule",
|
|
156
159
|
"workflow": "Publish to npm and trigger docker builds",
|
|
157
160
|
"type": "branch",
|
|
158
|
-
"name": "
|
|
159
|
-
"dev": "
|
|
161
|
+
"name": "dev",
|
|
162
|
+
"dev": "true"
|
|
160
163
|
}
|
|
161
164
|
}
|