matterbridge 3.4.0-dev-20251125-6f11a4f → 3.4.0-dev-20251126-5087664
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 -2
- package/README.md +1 -1
- package/dist/jestutils/jestHelpers.js +2 -0
- package/dist/utils/tracker.js +1 -1
- package/marked.ps1 +10 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -28,7 +28,7 @@ Advantages:
|
|
|
28
28
|
- individual plugin isolation in childbridge mode;
|
|
29
29
|
- ability to update the plugin in childbridge mode without restarting matterbridge;
|
|
30
30
|
|
|
31
|
-
## [3.4.0] -
|
|
31
|
+
## [3.4.0] - 2025-11-26
|
|
32
32
|
|
|
33
33
|
### Development Breaking Changes
|
|
34
34
|
|
|
@@ -46,8 +46,9 @@ Removed the following long deprecated elements:
|
|
|
46
46
|
- [doorLock]: Added autoRelockTime attribute with default 0.
|
|
47
47
|
- [DevContainer]: Added instructions for testing a plugin with a paired controller when using DevContainer.
|
|
48
48
|
- [platform]: Made internal use methods and properties hard-private.
|
|
49
|
-
- [platform]: Added size(), getDeviceByName(), getDeviceByUniqueId(), getDeviceBySerialNumber(), getDeviceById(), getDeviceByOriginalId(), getDeviceByNumber() and hasDeviceUniqueId() methods.
|
|
49
|
+
- [platform]: Added size(), getDeviceByName(), getDeviceByUniqueId(), getDeviceBySerialNumber(), getDeviceById(), getDeviceByOriginalId(), getDeviceByNumber() and hasDeviceUniqueId() methods to retrieve a registered device.
|
|
50
50
|
- [platform]: Added isReady, isLoaded, isStarted and isConfigured properties.
|
|
51
|
+
- [matterbridge.io]: Updated website https://matterbridge.io.
|
|
51
52
|
|
|
52
53
|
### Changed
|
|
53
54
|
|
package/README.md
CHANGED
|
@@ -108,7 +108,7 @@ Test the installation with:
|
|
|
108
108
|
matterbridge
|
|
109
109
|
```
|
|
110
110
|
|
|
111
|
-
Now it is possible to open the frontend at the link provided in the log (e.g. http://
|
|
111
|
+
Now it is possible to open the frontend at the link provided in the log (e.g. http://MATTERBRIDGE-IPV4-ADDRESS:8283).
|
|
112
112
|
|
|
113
113
|
You can then change the bridge mode and other parameters from the frontend.
|
|
114
114
|
|
|
@@ -390,6 +390,8 @@ export async function assertAllEndpointNumbersPersisted(targetServer) {
|
|
|
390
390
|
return all.length;
|
|
391
391
|
}
|
|
392
392
|
export async function closeServerNodeStores(targetServer) {
|
|
393
|
+
if (!targetServer)
|
|
394
|
+
targetServer = server;
|
|
393
395
|
await targetServer?.env.get(ServerNodeStore)?.endpointStores.close();
|
|
394
396
|
}
|
|
395
397
|
export async function startServerNode(name, port, deviceType = bridge.code) {
|
package/dist/utils/tracker.js
CHANGED
|
@@ -40,7 +40,7 @@ export class Tracker extends EventEmitter {
|
|
|
40
40
|
this.name = name;
|
|
41
41
|
this.debug = debug;
|
|
42
42
|
this.verbose = verbose;
|
|
43
|
-
if (process.argv.includes('--debug') || process.argv.includes('-debug')) {
|
|
43
|
+
if (process.argv.includes('--debug') || process.argv.includes('-debug') || process.argv.includes('--verbose') || process.argv.includes('-verbose')) {
|
|
44
44
|
this.debug = true;
|
|
45
45
|
}
|
|
46
46
|
if (process.argv.includes('--verbose') || process.argv.includes('-verbose')) {
|
package/marked.ps1
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
(Get-Content .\docs\markedHeader.html) + (marked .\README-DEV.md) + (Get-Content .\docs\markedFooter.html) | Out-File .\docs\README-DEV.html -Encoding utf8
|
|
2
|
+
(Get-Content .\docs\markedHeader.html) + (marked .\README-DOCKER.md) + (Get-Content .\docs\markedFooter.html) | Out-File .\docs\README-DOCKER.html -Encoding utf8
|
|
3
|
+
(Get-Content .\docs\markedHeader.html) + (marked .\README-MACOS-PLIST.md) + (Get-Content .\docs\markedFooter.html) | Out-File .\docs\README-MACOS-PLIST.html -Encoding utf8
|
|
4
|
+
(Get-Content .\docs\markedHeader.html) + (marked .\README-NGINX.md) + (Get-Content .\docs\markedFooter.html) | Out-File .\docs\README-NGINX.html -Encoding utf8
|
|
5
|
+
(Get-Content .\docs\markedHeader.html) + (marked .\README-PODMAN.md) + (Get-Content .\docs\markedFooter.html) | Out-File .\docs\README-PODMAN.html -Encoding utf8
|
|
6
|
+
(Get-Content .\docs\markedHeader.html) + (marked .\README-SERVICE-LOCAL.md) + (Get-Content .\docs\markedFooter.html) | Out-File .\docs\README-SERVICE-LOCAL.html -Encoding utf8
|
|
7
|
+
(Get-Content .\docs\markedHeader.html) + (marked .\README-SERVICE-OPT.md) + (Get-Content .\docs\markedFooter.html) | Out-File .\docs\README-SERVICE-OPT.html -Encoding utf8
|
|
8
|
+
(Get-Content .\docs\markedHeader.html) + (marked .\README-SERVICE.md) + (Get-Content .\docs\markedFooter.html) | Out-File .\docs\README-SERVICE.html -Encoding utf8
|
|
9
|
+
(Get-Content .\docs\markedHeader.html) + (marked .\README.md) + (Get-Content .\docs\markedFooter.html) | Out-File .\docs\README.html -Encoding utf8
|
|
10
|
+
(Get-Content .\docs\markedHeader.html) + (marked .\CHANGELOG.md) + (Get-Content .\docs\markedFooter.html) | Out-File .\docs\CHANGELOG.html -Encoding utf8
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.4.0-dev-
|
|
3
|
+
"version": "3.4.0-dev-20251126-5087664",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge",
|
|
9
|
-
"version": "3.4.0-dev-
|
|
9
|
+
"version": "3.4.0-dev-20251126-5087664",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@matter/main": "0.15.6",
|
package/package.json
CHANGED