matterbridge 3.5.4 → 3.5.5-dev-20260214-8907e97
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 +12 -0
- package/README-DOCKER.md +3 -3
- package/package.json +14 -18
package/CHANGELOG.md
CHANGED
|
@@ -50,6 +50,18 @@ These threads already run as a workers:
|
|
|
50
50
|
- npm install;
|
|
51
51
|
- ✅ check the global node_modules directory;
|
|
52
52
|
|
|
53
|
+
## [3.5.5] - Dev branch
|
|
54
|
+
|
|
55
|
+
### Added
|
|
56
|
+
|
|
57
|
+
- [images]: Add OCI standard labels (https://opencontainers.org/) to docker pipelines.
|
|
58
|
+
|
|
59
|
+
### Changed
|
|
60
|
+
|
|
61
|
+
- [package]: Update dependencies.
|
|
62
|
+
|
|
63
|
+
<a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
|
|
64
|
+
|
|
53
65
|
## [3.5.4] - 2026-02-13
|
|
54
66
|
|
|
55
67
|
### Dev Breaking Changes
|
package/README-DOCKER.md
CHANGED
|
@@ -29,15 +29,15 @@ The image (tag **latest** 92 MB) includes Matterbridge and all official plugins,
|
|
|
29
29
|
|
|
30
30
|
The image (tag **dev** 93 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.
|
|
31
31
|
|
|
32
|
-
The image (tag **ubuntu** 90 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
|
|
32
|
+
The image (tag **ubuntu** 90 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 installed on first run. This image, on the first run, preinstalls `bluetooth`, `build-essential`, and `python` packages (useful for plugins that require native builds).
|
|
33
33
|
|
|
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
|
|
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
36
|
### Matterbridge docker base images
|
|
37
37
|
|
|
38
38
|
The image (tag **24-ubuntu-slim** 86 MB) includes only `ubuntu:latest` -> Ubuntu 24.04.3 LTS (noble) with Node.js 24 from NodeSource. It is used to build the **ubuntu** image but can also be used to open a shell in ubuntu latest with node 24.
|
|
39
39
|
|
|
40
|
-
The image (tag **s6-rc** 84 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
|
|
40
|
+
The image (tag **s6-rc** 84 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 used for the [Matterbridge Home Assistant Application](https://github.com/Luligu/matterbridge-home-assistant-addon).
|
|
41
41
|
|
|
42
42
|
### Docker health check
|
|
43
43
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.5-dev-20260214-8907e97",
|
|
4
4
|
"description": "Matterbridge plugin manager for Matter",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -124,27 +124,23 @@
|
|
|
124
124
|
"README-SERVICE-OPT.md",
|
|
125
125
|
"README-SERVICE.md"
|
|
126
126
|
],
|
|
127
|
-
"overrides": {
|
|
128
|
-
"eslint": "9.39.2",
|
|
129
|
-
"@eslint/js": "9.39.2"
|
|
130
|
-
},
|
|
131
127
|
"dependencies": {
|
|
132
|
-
"@matterbridge/core": "3.5.
|
|
133
|
-
"@matterbridge/dgram": "3.5.
|
|
134
|
-
"@matterbridge/jest-utils": "3.5.
|
|
135
|
-
"@matterbridge/thread": "3.5.
|
|
136
|
-
"@matterbridge/types": "3.5.
|
|
137
|
-
"@matterbridge/utils": "3.5.
|
|
138
|
-
"@matterbridge/vitest-utils": "3.5.
|
|
128
|
+
"@matterbridge/core": "3.5.5-dev-20260214-8907e97",
|
|
129
|
+
"@matterbridge/dgram": "3.5.5-dev-20260214-8907e97",
|
|
130
|
+
"@matterbridge/jest-utils": "3.5.5-dev-20260214-8907e97",
|
|
131
|
+
"@matterbridge/thread": "3.5.5-dev-20260214-8907e97",
|
|
132
|
+
"@matterbridge/types": "3.5.5-dev-20260214-8907e97",
|
|
133
|
+
"@matterbridge/utils": "3.5.5-dev-20260214-8907e97",
|
|
134
|
+
"@matterbridge/vitest-utils": "3.5.5-dev-20260214-8907e97"
|
|
139
135
|
},
|
|
140
136
|
"build": {
|
|
141
|
-
"sha": "
|
|
142
|
-
"sha7": "
|
|
143
|
-
"event": "
|
|
137
|
+
"sha": "8907e9724b160d2eadcaa68a695c30d4deef45c2",
|
|
138
|
+
"sha7": "8907e97",
|
|
139
|
+
"event": "workflow_dispatch",
|
|
144
140
|
"workflow": "Publish to npm and trigger docker builds",
|
|
145
|
-
"type": "
|
|
146
|
-
"name": "
|
|
141
|
+
"type": "branch",
|
|
142
|
+
"name": "dev",
|
|
147
143
|
"docker": "false",
|
|
148
|
-
"dev": "
|
|
144
|
+
"dev": "true"
|
|
149
145
|
}
|
|
150
146
|
}
|