matterbridge 3.9.0 → 3.9.1-dev-20260614-89d7aeb
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 +9 -0
- package/README-DEV.md +7 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -55,6 +55,15 @@ 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.9.1] - Dev branch
|
|
59
|
+
|
|
60
|
+
### Development Changes
|
|
61
|
+
|
|
62
|
+
- [test]: Add Vitest tests (migration from Jest to Vitest will take a while).
|
|
63
|
+
- [typescript]: Moved package to TypeScript Preview (tsgo). The final build in the workflow is always with typescript.
|
|
64
|
+
|
|
65
|
+
<a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
|
|
66
|
+
|
|
58
67
|
## [3.9.0] - 2026-06-12
|
|
59
68
|
|
|
60
69
|
### New plugin
|
package/README-DEV.md
CHANGED
|
@@ -120,10 +120,16 @@ Dev containers have networking limitations depending on the host OS and Docker s
|
|
|
120
120
|
|
|
121
121
|
| File | Notes |
|
|
122
122
|
| --------------------------------------------------------- | ----------------------------------------------------- |
|
|
123
|
-
| `.
|
|
123
|
+
| `.CLAUDE.md` | Main project instructions — always loaded |
|
|
124
124
|
| `.claude/rules/matterbridge/matterbridge.instructions.md` | Matterbridge endpoint guide — loaded for all contexts |
|
|
125
125
|
| `.claude/rules/testing/unit-tests.instructions.md` | Testing standards — scoped to `**/*.test.ts` |
|
|
126
126
|
|
|
127
|
+
## Agents instructions
|
|
128
|
+
|
|
129
|
+
| File | Notes |
|
|
130
|
+
| ------------ | ------------------------- |
|
|
131
|
+
| `.AGENTS.md` | Main project instructions |
|
|
132
|
+
|
|
127
133
|
## Guidelines on imports/exports
|
|
128
134
|
|
|
129
135
|
Matterbridge exports from:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.1-dev-20260614-89d7aeb",
|
|
4
4
|
"description": "Matterbridge plugin manager for Matter",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -156,24 +156,24 @@
|
|
|
156
156
|
"@eslint/js": "10.0.1"
|
|
157
157
|
},
|
|
158
158
|
"dependencies": {
|
|
159
|
-
"@matterbridge/core": "3.9.
|
|
160
|
-
"@matterbridge/dgram": "3.9.
|
|
161
|
-
"@matterbridge/jest-utils": "3.9.
|
|
162
|
-
"@matterbridge/thread": "3.9.
|
|
163
|
-
"@matterbridge/types": "3.9.
|
|
164
|
-
"@matterbridge/utils": "3.9.
|
|
165
|
-
"@matterbridge/vitest-utils": "3.9.
|
|
159
|
+
"@matterbridge/core": "3.9.1-dev-20260614-89d7aeb",
|
|
160
|
+
"@matterbridge/dgram": "3.9.1-dev-20260614-89d7aeb",
|
|
161
|
+
"@matterbridge/jest-utils": "3.9.1-dev-20260614-89d7aeb",
|
|
162
|
+
"@matterbridge/thread": "3.9.1-dev-20260614-89d7aeb",
|
|
163
|
+
"@matterbridge/types": "3.9.1-dev-20260614-89d7aeb",
|
|
164
|
+
"@matterbridge/utils": "3.9.1-dev-20260614-89d7aeb",
|
|
165
|
+
"@matterbridge/vitest-utils": "3.9.1-dev-20260614-89d7aeb",
|
|
166
166
|
"node-ansi-logger": "3.3.0-dev-20260607-585945a",
|
|
167
167
|
"node-persist-manager": "2.1.0-dev-20260524-6a6019a"
|
|
168
168
|
},
|
|
169
169
|
"build": {
|
|
170
|
-
"version": "3.9.
|
|
170
|
+
"version": "3.9.1",
|
|
171
171
|
"sha": "d7e6c0be5cd9889f1b43671a596e3775b0b29de6",
|
|
172
172
|
"sha7": "d7e6c0b",
|
|
173
|
-
"event": "
|
|
173
|
+
"event": "schedule",
|
|
174
174
|
"workflow": "Publish to npm and trigger docker builds",
|
|
175
175
|
"type": "branch",
|
|
176
|
-
"name": "
|
|
177
|
-
"dev": "
|
|
176
|
+
"name": "dev",
|
|
177
|
+
"dev": "true"
|
|
178
178
|
}
|
|
179
179
|
}
|