matterbridge 3.9.2-dev-20260625-1591faa → 3.9.2-dev-20260625-582ef8d
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 +3 -0
- package/README-DOCKER.md +2 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -71,6 +71,9 @@ These classes will run as threads in the next releases:
|
|
|
71
71
|
- [configure]: Improve workflow sending only the updated data to the frontend.
|
|
72
72
|
- [pack]: Add scripts\pack-monorepo.mjs to improve performance with monorepo pack.
|
|
73
73
|
- [thread]: Add check for thread path existence.
|
|
74
|
+
- [docker]: Refactor Dockerfiles for all images to improve speed.
|
|
75
|
+
- [bun]: Add isBun() and getGlobalBunModules(). Support for bun is stil under development and is purely experimental.
|
|
76
|
+
- [bun]: Add the `luligu/matterbridge:bun` docker image. Support for bun is stil under development and is purely experimental.
|
|
74
77
|
|
|
75
78
|
### Changed
|
|
76
79
|
|
package/README-DOCKER.md
CHANGED
|
@@ -37,6 +37,8 @@ The image (tag **ubuntu** 87 MB) includes only Matterbridge, using the latest re
|
|
|
37
37
|
|
|
38
38
|
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.
|
|
39
39
|
|
|
40
|
+
The image (tag **bun** 80 MB) includes only Matterbridge, using the latest release published on npm. This image (**for test and development only**) is based on `oven/bun:slim`. Plugins are not included in the image: they will be reinstalled on first run.
|
|
41
|
+
|
|
40
42
|
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).
|
|
41
43
|
|
|
42
44
|
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).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.9.2-dev-20260625-
|
|
3
|
+
"version": "3.9.2-dev-20260625-582ef8d",
|
|
4
4
|
"description": "Matterbridge plugin manager for Matter",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -208,21 +208,21 @@
|
|
|
208
208
|
]
|
|
209
209
|
},
|
|
210
210
|
"dependencies": {
|
|
211
|
-
"@matterbridge/core": "3.9.2-dev-20260625-
|
|
212
|
-
"@matterbridge/dgram": "3.9.2-dev-20260625-
|
|
213
|
-
"@matterbridge/jest-utils": "3.9.2-dev-20260625-
|
|
214
|
-
"@matterbridge/thread": "3.9.2-dev-20260625-
|
|
215
|
-
"@matterbridge/types": "3.9.2-dev-20260625-
|
|
216
|
-
"@matterbridge/utils": "3.9.2-dev-20260625-
|
|
217
|
-
"@matterbridge/vitest-utils": "3.9.2-dev-20260625-
|
|
211
|
+
"@matterbridge/core": "3.9.2-dev-20260625-582ef8d",
|
|
212
|
+
"@matterbridge/dgram": "3.9.2-dev-20260625-582ef8d",
|
|
213
|
+
"@matterbridge/jest-utils": "3.9.2-dev-20260625-582ef8d",
|
|
214
|
+
"@matterbridge/thread": "3.9.2-dev-20260625-582ef8d",
|
|
215
|
+
"@matterbridge/types": "3.9.2-dev-20260625-582ef8d",
|
|
216
|
+
"@matterbridge/utils": "3.9.2-dev-20260625-582ef8d",
|
|
217
|
+
"@matterbridge/vitest-utils": "3.9.2-dev-20260625-582ef8d",
|
|
218
218
|
"node-ansi-logger": "3.3.0",
|
|
219
219
|
"node-persist-manager": "2.1.0"
|
|
220
220
|
},
|
|
221
221
|
"build": {
|
|
222
222
|
"version": "3.9.2",
|
|
223
|
-
"sha": "
|
|
224
|
-
"sha7": "
|
|
225
|
-
"event": "
|
|
223
|
+
"sha": "582ef8de66cdd9e39f0b3480ca7b3d0b557beac4",
|
|
224
|
+
"sha7": "582ef8d",
|
|
225
|
+
"event": "workflow_dispatch",
|
|
226
226
|
"workflow": "Publish to npm and trigger docker builds",
|
|
227
227
|
"type": "branch",
|
|
228
228
|
"name": "dev",
|