matterbridge 3.1.8-dev-20250725-aa6ff9e → 3.1.8-dev-20250726-f93c04c
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 +1 -0
- package/dist/frontend.js +1 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,7 @@ If you like this project and find it useful, please consider giving it a star on
|
|
|
14
14
|
|
|
15
15
|
- [certification]: Improved certification management in pairing.json. Added pemToBuffer function for converting PEM strings to Uint8Array.
|
|
16
16
|
- [workflow]: Update permissions and change GitHub token for Docker build triggers.
|
|
17
|
+
- [frontend]: Bump version 2.7.1.
|
|
17
18
|
- [frontend]: Added Changelog button when a new version is installed.
|
|
18
19
|
- [frontend]: Added restart plugin in childbridge mode.
|
|
19
20
|
|
package/dist/frontend.js
CHANGED
|
@@ -1130,6 +1130,7 @@ export class Frontend extends EventEmitter {
|
|
|
1130
1130
|
}
|
|
1131
1131
|
}
|
|
1132
1132
|
await this.matterbridge.plugins.load(plugin, true, 'The plugin has been restarted', true);
|
|
1133
|
+
plugin.restartRequired = false;
|
|
1133
1134
|
if (plugin.serverNode) {
|
|
1134
1135
|
await this.matterbridge.startServerNode(plugin.serverNode);
|
|
1135
1136
|
}
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.1.8-dev-
|
|
3
|
+
"version": "3.1.8-dev-20250726-f93c04c",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge",
|
|
9
|
-
"version": "3.1.8-dev-
|
|
9
|
+
"version": "3.1.8-dev-20250726-f93c04c",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@matter/main": "0.15.1",
|
package/package.json
CHANGED