matterbridge 3.4.5-dev-20251222-5853b56 → 3.4.5-dev-20251224-e00e572
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 +2 -1
- package/README-DEV.md +23 -3
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -32,7 +32,8 @@ Advantages:
|
|
|
32
32
|
|
|
33
33
|
### Added
|
|
34
34
|
|
|
35
|
-
- [DevContainer]: Refactored Dev Container setup. The Matterbridge instance can be paired on native Linux hosts or WSL 2 with Docker engine CLI integration. On Docker Desktop on Windows or macOS is not possible cause Docker Desktop runs inside a VM and not directly on the host.
|
|
35
|
+
- [DevContainer]: Refactored Dev Container setup. The Matterbridge instance can now be paired on native Linux hosts or WSL 2 with Docker engine CLI integration. On Docker Desktop on Windows or macOS is not possible cause Docker Desktop runs inside a VM and not directly on the host so mDNS is not supported.
|
|
36
|
+
- [DevContainer]: Since is now possible to pair from Dev Container, named volumes have been added to persist storage and plugins across rebuilds.
|
|
36
37
|
|
|
37
38
|
### Changed
|
|
38
39
|
|
package/README-DEV.md
CHANGED
|
@@ -52,12 +52,32 @@ To start the Dev Container, simply open the project folder in [Visual Studio Cod
|
|
|
52
52
|
|
|
53
53
|
> **Note:** The first time you use the Dev Container, it may take a while to download all the required Docker images and set up the environment. Subsequent starts will be as fast as from the local folder.
|
|
54
54
|
|
|
55
|
-
|
|
55
|
+
## Dev containers networking limitations
|
|
56
|
+
|
|
57
|
+
Dev containers have networking limitations depending on the host OS and Docker setup.
|
|
58
|
+
|
|
59
|
+
• Docker Desktop on Windows or macOS:
|
|
60
|
+
|
|
61
|
+
- Runs inside a VM
|
|
62
|
+
- Host networking mode is NOT available
|
|
63
|
+
- Matterbridge and plugins can run but:
|
|
64
|
+
❌ Pairing with Matter controllers will NOT work cause of missing mDNS support
|
|
65
|
+
✅ Remote and local network access (cloud services, internet APIs) works normally
|
|
66
|
+
✅ Matterbridge frontend works normally
|
|
67
|
+
|
|
68
|
+
• Native Linux or WSL 2 with Docker Engine CLI integration:
|
|
69
|
+
|
|
70
|
+
- Host networking IS available
|
|
71
|
+
- Full local network access is supported with mDNS
|
|
72
|
+
- Matterbridge and plugins work correctly, including pairing
|
|
73
|
+
- Matterbridge frontend works normally
|
|
74
|
+
|
|
75
|
+
## How to pair the plugin
|
|
56
76
|
|
|
57
|
-
When you want to test your plugin with a paired controller, you have several options:
|
|
77
|
+
When you want to test your plugin with a paired controller and you cannot use native Linux or WSL 2 with Docker Engine, you have several other options:
|
|
58
78
|
|
|
59
79
|
- create a tgz (npm run npmPack) and upload it to a running instance of matterbridge.
|
|
60
|
-
- publish
|
|
80
|
+
- publish the plugin with tag dev and install it (matterbridge-yourplugin@dev in Install plugins) in a running instance of matterbridge.
|
|
61
81
|
- use a local instance of matterbridge running outside the dev container and install (../matterbridge-yourplugin in Install plugins) or add (../matterbridge-yourplugin in Install plugins) your plugin to it (easiest way). Adjust the path if matterbridge dir and your plugin dir are not in the same parent directory.
|
|
62
82
|
|
|
63
83
|
## Guidelines on imports/exports
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.4.5-dev-
|
|
3
|
+
"version": "3.4.5-dev-20251224-e00e572",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge",
|
|
9
|
-
"version": "3.4.5-dev-
|
|
9
|
+
"version": "3.4.5-dev-20251224-e00e572",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@matter/main": "0.15.6",
|
package/package.json
CHANGED