matterbridge 3.7.7 → 3.7.8-dev-20260505-67d863f
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 +17 -0
- package/apps/frontend/npm-shrinkwrap.json +5 -5
- package/apps/frontend/package.json +2 -2
- package/package.json +19 -15
- package/bin/mb-run.js +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -55,6 +55,23 @@ 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.8] - Dev branch
|
|
59
|
+
|
|
60
|
+
### Dev Breaking Changes
|
|
61
|
+
|
|
62
|
+
- [bin]: Remove mb-run bin. It will be replaced by mb-run package.
|
|
63
|
+
|
|
64
|
+
### Changed
|
|
65
|
+
|
|
66
|
+
- [package]: Update dependencies.
|
|
67
|
+
- [package]: Bump `eslint` to v.10.3.0.
|
|
68
|
+
- [package]: Bump `marked` to v.18.0.3.
|
|
69
|
+
- [package]: Bump `typescript-eslint` to v.8.59.2.
|
|
70
|
+
- [frontend]: Bump `frontend` version to v.3.4.14.
|
|
71
|
+
- [frontend]: Update dependencies.
|
|
72
|
+
|
|
73
|
+
<a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
|
|
74
|
+
|
|
58
75
|
## [3.7.7] - 2026-05-01
|
|
59
76
|
|
|
60
77
|
### Changed
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matterbridge/frontend",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.14",
|
|
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.14",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@emotion/react": "11.14.0",
|
|
@@ -890,9 +890,9 @@
|
|
|
890
890
|
"license": "MIT"
|
|
891
891
|
},
|
|
892
892
|
"node_modules/fast-uri": {
|
|
893
|
-
"version": "3.1.
|
|
894
|
-
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.
|
|
895
|
-
"integrity": "sha512-
|
|
893
|
+
"version": "3.1.1",
|
|
894
|
+
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.1.tgz",
|
|
895
|
+
"integrity": "sha512-h2r7rcm6Ee/J8o0LD5djLuFVcfbZxhvho4vvsbeV0aMvXjUgqv4YpxpkEx0d68l6+IleVfLAdVEfhR7QNMkGHQ==",
|
|
896
896
|
"funding": [
|
|
897
897
|
{
|
|
898
898
|
"type": "github",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matterbridge/frontend",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.14",
|
|
4
4
|
"description": "Matterbridge frontend application",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
],
|
|
54
54
|
"overrides": {
|
|
55
55
|
"@eslint/js": "10.0.1",
|
|
56
|
-
"eslint": "10.
|
|
56
|
+
"eslint": "10.3.0",
|
|
57
57
|
"typescript": "6.0.3"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.8-dev-20260505-67d863f",
|
|
4
4
|
"description": "Matterbridge plugin manager for Matter",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
"types": "dist/index.d.ts",
|
|
44
44
|
"bin": {
|
|
45
45
|
"matterbridge": "bin/matterbridge.js",
|
|
46
|
-
"mb-run": "bin/mb-run.js",
|
|
47
46
|
"mb-mdns": "bin/mb_mdns.js",
|
|
48
47
|
"mb_mdns": "bin/mb_mdns.js",
|
|
49
48
|
"mb-coap": "bin/mb_coap.js",
|
|
@@ -133,23 +132,28 @@
|
|
|
133
132
|
"README-SERVICE-OPT.md",
|
|
134
133
|
"README-SERVICE.md"
|
|
135
134
|
],
|
|
135
|
+
"overrides": {
|
|
136
|
+
"typescript": "6.0.3",
|
|
137
|
+
"eslint": "10.3.0",
|
|
138
|
+
"@eslint/js": "10.0.1"
|
|
139
|
+
},
|
|
136
140
|
"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.
|
|
141
|
+
"@matterbridge/core": "3.7.8-dev-20260505-67d863f",
|
|
142
|
+
"@matterbridge/dgram": "3.7.8-dev-20260505-67d863f",
|
|
143
|
+
"@matterbridge/jest-utils": "3.7.8-dev-20260505-67d863f",
|
|
144
|
+
"@matterbridge/thread": "3.7.8-dev-20260505-67d863f",
|
|
145
|
+
"@matterbridge/types": "3.7.8-dev-20260505-67d863f",
|
|
146
|
+
"@matterbridge/utils": "3.7.8-dev-20260505-67d863f",
|
|
147
|
+
"@matterbridge/vitest-utils": "3.7.8-dev-20260505-67d863f"
|
|
144
148
|
},
|
|
145
149
|
"build": {
|
|
146
|
-
"version": "3.7.
|
|
147
|
-
"sha": "
|
|
148
|
-
"sha7": "
|
|
149
|
-
"event": "
|
|
150
|
+
"version": "3.7.8",
|
|
151
|
+
"sha": "67d863f3bb30b7170f37cc16cfc9f4fd73577799",
|
|
152
|
+
"sha7": "67d863f",
|
|
153
|
+
"event": "workflow_dispatch",
|
|
150
154
|
"workflow": "Publish to npm and trigger docker builds",
|
|
151
155
|
"type": "branch",
|
|
152
|
-
"name": "
|
|
153
|
-
"dev": "
|
|
156
|
+
"name": "dev",
|
|
157
|
+
"dev": "true"
|
|
154
158
|
}
|
|
155
159
|
}
|
package/bin/mb-run.js
DELETED