matterbridge 3.9.0 → 3.9.1-dev-20260614-18d1a2e

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 CHANGED
@@ -55,6 +55,27 @@ 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.
63
+ - [test]: Remove Jest tests and Jest packages. Dev dependencies package count drops from ~660 to ~450.
64
+ - [typescript]: Move package to TypeScript Preview (tsgo). The final build in the publish workflow is always with typescript.
65
+
66
+ ### Changed
67
+
68
+ - [matterbridge]: Update dependencies.
69
+ - [matterbridge]: Bump `eslint` to v.10.5.0.
70
+ - [matterbridge]: Bump `@typescript/native-preview` to v.7.0.0-dev.20260613.1.
71
+
72
+ ### Fixed
73
+
74
+ - [utils/zip]: Remove no more present zip export. Thanks Pugsin (https://github.com/Luligu/matterbridge/pull/568).
75
+ - [package]: Update legacy export. Thanks Pugsin (https://github.com/Luligu/matterbridge/pull/567).
76
+
77
+ <a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
78
+
58
79
  ## [3.9.0] - 2026-06-12
59
80
 
60
81
  ### 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
- | `.claude/CLAUDE.md` | Main project instructions — always loaded |
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.0",
3
+ "version": "3.9.1-dev-20260614-18d1a2e",
4
4
  "description": "Matterbridge plugin manager for Matter",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",
@@ -42,8 +42,8 @@
42
42
  "ewelink"
43
43
  ],
44
44
  "type": "module",
45
- "main": "dist/index.js",
46
- "types": "dist/index.d.ts",
45
+ "main": "dist/export.js",
46
+ "types": "dist/export.d.ts",
47
47
  "bin": {
48
48
  "matterbridge": "bin/matterbridge.js",
49
49
  "mb-mdns": "bin/mb_mdns.js",
@@ -152,28 +152,28 @@
152
152
  ],
153
153
  "overrides": {
154
154
  "typescript": "6.0.3",
155
- "eslint": "10.4.1",
155
+ "eslint": "10.5.0",
156
156
  "@eslint/js": "10.0.1"
157
157
  },
158
158
  "dependencies": {
159
- "@matterbridge/core": "3.9.0",
160
- "@matterbridge/dgram": "3.9.0",
161
- "@matterbridge/jest-utils": "3.9.0",
162
- "@matterbridge/thread": "3.9.0",
163
- "@matterbridge/types": "3.9.0",
164
- "@matterbridge/utils": "3.9.0",
165
- "@matterbridge/vitest-utils": "3.9.0",
159
+ "@matterbridge/core": "3.9.1-dev-20260614-18d1a2e",
160
+ "@matterbridge/dgram": "3.9.1-dev-20260614-18d1a2e",
161
+ "@matterbridge/jest-utils": "3.9.1-dev-20260614-18d1a2e",
162
+ "@matterbridge/thread": "3.9.1-dev-20260614-18d1a2e",
163
+ "@matterbridge/types": "3.9.1-dev-20260614-18d1a2e",
164
+ "@matterbridge/utils": "3.9.1-dev-20260614-18d1a2e",
165
+ "@matterbridge/vitest-utils": "3.9.1-dev-20260614-18d1a2e",
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.0",
171
- "sha": "d7e6c0be5cd9889f1b43671a596e3775b0b29de6",
172
- "sha7": "d7e6c0b",
173
- "event": "release",
170
+ "version": "3.9.1",
171
+ "sha": "18d1a2e0c4bebfefb20ebf5ab2ae5cc6ba1fc3f9",
172
+ "sha7": "18d1a2e",
173
+ "event": "workflow_dispatch",
174
174
  "workflow": "Publish to npm and trigger docker builds",
175
175
  "type": "branch",
176
- "name": "main",
177
- "dev": "false"
176
+ "name": "dev",
177
+ "dev": "true"
178
178
  }
179
179
  }