matterbridge 3.7.5 → 3.7.6-dev-20260426-a7ce6ee
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 +18 -0
- package/apps/frontend/npm-shrinkwrap.json +3 -3
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -53,6 +53,24 @@ These classes will run as threads in the next releases:
|
|
|
53
53
|
- all plugins in bridge mode;
|
|
54
54
|
- each plugin in childbridge mode;
|
|
55
55
|
|
|
56
|
+
## [3.7.6] - Dev branch
|
|
57
|
+
|
|
58
|
+
### Added
|
|
59
|
+
|
|
60
|
+
- [threads]: Add `snackBar()` helper to `WorkerWrapper` to send snackbar messages from worker threads to the frontend.
|
|
61
|
+
- [systemcheck]: Show frontend snackbar errors for unsupported Node.js versions and network configuration issues detected by the SystemCheck worker.
|
|
62
|
+
- [systemcheck]: Clarify excluded network interface guidance to mention the Mdns interface setting in the frontend.
|
|
63
|
+
- [dockerversion]: Add snack bar message if a new Docker image exist.
|
|
64
|
+
- [matter]: Add [Matter.js 0.17 changes from 0.16](Matter.js%200.17.md).
|
|
65
|
+
|
|
66
|
+
### Changed
|
|
67
|
+
|
|
68
|
+
- [package]: Update dependencies.
|
|
69
|
+
- [package]: Bump `typescript-eslint` to v.8.59.0.
|
|
70
|
+
- [jest]: Increase test timeout to 30 seconds in CI workflows.
|
|
71
|
+
|
|
72
|
+
<a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
|
|
73
|
+
|
|
56
74
|
## [3.7.5] - 2026-04-24
|
|
57
75
|
|
|
58
76
|
### Development changes
|
|
@@ -720,9 +720,9 @@
|
|
|
720
720
|
}
|
|
721
721
|
},
|
|
722
722
|
"node_modules/ajv": {
|
|
723
|
-
"version": "8.
|
|
724
|
-
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.
|
|
725
|
-
"integrity": "sha512-
|
|
723
|
+
"version": "8.20.0",
|
|
724
|
+
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz",
|
|
725
|
+
"integrity": "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==",
|
|
726
726
|
"license": "MIT",
|
|
727
727
|
"dependencies": {
|
|
728
728
|
"fast-deep-equal": "^3.1.3",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.6-dev-20260426-a7ce6ee",
|
|
4
4
|
"description": "Matterbridge plugin manager for Matter",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -134,26 +134,26 @@
|
|
|
134
134
|
"README-SERVICE.md"
|
|
135
135
|
],
|
|
136
136
|
"dependencies": {
|
|
137
|
-
"@matterbridge/core": "3.7.
|
|
138
|
-
"@matterbridge/dgram": "3.7.
|
|
139
|
-
"@matterbridge/jest-utils": "3.7.
|
|
140
|
-
"@matterbridge/thread": "3.7.
|
|
141
|
-
"@matterbridge/types": "3.7.
|
|
142
|
-
"@matterbridge/utils": "3.7.
|
|
143
|
-
"@matterbridge/vitest-utils": "3.7.
|
|
137
|
+
"@matterbridge/core": "3.7.6-dev-20260426-a7ce6ee",
|
|
138
|
+
"@matterbridge/dgram": "3.7.6-dev-20260426-a7ce6ee",
|
|
139
|
+
"@matterbridge/jest-utils": "3.7.6-dev-20260426-a7ce6ee",
|
|
140
|
+
"@matterbridge/thread": "3.7.6-dev-20260426-a7ce6ee",
|
|
141
|
+
"@matterbridge/types": "3.7.6-dev-20260426-a7ce6ee",
|
|
142
|
+
"@matterbridge/utils": "3.7.6-dev-20260426-a7ce6ee",
|
|
143
|
+
"@matterbridge/vitest-utils": "3.7.6-dev-20260426-a7ce6ee"
|
|
144
144
|
},
|
|
145
145
|
"overrides": {
|
|
146
146
|
"eslint": "10.2.1",
|
|
147
147
|
"@eslint/js": "10.0.1"
|
|
148
148
|
},
|
|
149
149
|
"build": {
|
|
150
|
-
"version": "3.7.
|
|
150
|
+
"version": "3.7.6",
|
|
151
151
|
"sha": "d7f022fc56d0d713f3bce22700c6ccfd61f11769",
|
|
152
152
|
"sha7": "d7f022f",
|
|
153
|
-
"event": "
|
|
153
|
+
"event": "schedule",
|
|
154
154
|
"workflow": "Publish to npm and trigger docker builds",
|
|
155
155
|
"type": "branch",
|
|
156
|
-
"name": "
|
|
157
|
-
"dev": "
|
|
156
|
+
"name": "dev",
|
|
157
|
+
"dev": "true"
|
|
158
158
|
}
|
|
159
159
|
}
|