matterbridge 3.6.0 → 3.6.1-dev-20260309-6341dee

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
@@ -27,7 +27,7 @@ If you like this project and find it useful, please consider giving it a star on
27
27
 
28
28
  ## Project evolution
29
29
 
30
- The project is evolving to a multi-threaded architecture (the CLI will become the thread manager) with these initial threads:
30
+ The project is evolving to a multi-threaded architecture with these initial threads:
31
31
 
32
32
  - matterbridge;
33
33
  - frontend;
@@ -43,13 +43,39 @@ Advantages:
43
43
  - individual plugin isolation in childbridge mode;
44
44
  - ability to update the plugin in childbridge mode without restarting matterbridge;
45
45
 
46
+ ✅ The CLI is the threads manager.
47
+
46
48
  These threads already run as workers:
47
49
 
48
50
  - ✅ check updates;
49
51
  - ✅ system check;
50
- - npm install;
52
+ - npm install;
51
53
  - ✅ check the global node_modules directory;
52
54
 
55
+ ## [3.6.1] - Dev branch
56
+
57
+ ### Added
58
+
59
+ - [package]: Enable tree-shaking for @matterbridge/utils.
60
+ - [package]: Enable tree-shaking for @matterbridge/thread.
61
+ - [threads]: Add ThreadsManager to the cli.
62
+ - [threads]: Add WorkerWrapper.
63
+
64
+ ### Changed
65
+
66
+ - [package]: Update dependencies.
67
+ - [package]: Bump `eslint` to v.10.0.3.
68
+
69
+ <a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
70
+
71
+ ## [3.6.1] - Dev branch
72
+
73
+ ### Changed
74
+
75
+ - [package]: Update dependencies.
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
+
53
79
  ## [3.6.0] - 2026-03-06
54
80
 
55
81
  ### Dev Breaking Changes
@@ -61,6 +87,9 @@ These threads already run as workers:
61
87
  - [SolarPower]: Refactor `SolarPower` class as composed device.
62
88
  - [BatteryStorage]: Refactor `BatteryStorage` class as composed device.
63
89
  - [HeatPump]: Refactor `HeatPump` class as composed device.
90
+
91
+ ### Dev News
92
+
64
93
  - [matter1.5.0]: Add SoilMeasurement cluster and corresponding test.
65
94
  - [matter1.5.0]: Add ClosureControl and ClosureDimension clusters with corresponding tests.
66
95
  - [matter1.5.0]: Add SoilSensor class and corresponding tests.
package/dist/mb_mdns.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import os from 'node:os';
2
2
  import { Mdns, MDNS_MULTICAST_IPV4_ADDRESS, MDNS_MULTICAST_IPV6_ADDRESS, MDNS_MULTICAST_PORT } from '@matterbridge/dgram';
3
- import { getIntParameter, getParameter, getStringArrayParameter, hasParameter } from '@matterbridge/utils';
3
+ import { getIntParameter, getParameter, getStringArrayParameter, hasParameter } from '@matterbridge/utils/cli';
4
4
  {
5
5
  if (hasParameter('h') || hasParameter('help')) {
6
6
  console.log(`Copyright (c) Matterbridge. All rights reserved. Version 1.0.0.\n`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matterbridge",
3
- "version": "3.6.0",
3
+ "version": "3.6.1-dev-20260309-6341dee",
4
4
  "description": "Matterbridge plugin manager for Matter",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",
@@ -125,25 +125,25 @@
125
125
  "README-SERVICE.md"
126
126
  ],
127
127
  "dependencies": {
128
- "@matterbridge/core": "3.6.0",
129
- "@matterbridge/dgram": "3.6.0",
130
- "@matterbridge/jest-utils": "3.6.0",
131
- "@matterbridge/thread": "3.6.0",
132
- "@matterbridge/types": "3.6.0",
133
- "@matterbridge/utils": "3.6.0",
134
- "@matterbridge/vitest-utils": "3.6.0"
128
+ "@matterbridge/core": "3.6.1-dev-20260309-6341dee",
129
+ "@matterbridge/dgram": "3.6.1-dev-20260309-6341dee",
130
+ "@matterbridge/jest-utils": "3.6.1-dev-20260309-6341dee",
131
+ "@matterbridge/thread": "3.6.1-dev-20260309-6341dee",
132
+ "@matterbridge/types": "3.6.1-dev-20260309-6341dee",
133
+ "@matterbridge/utils": "3.6.1-dev-20260309-6341dee",
134
+ "@matterbridge/vitest-utils": "3.6.1-dev-20260309-6341dee"
135
135
  },
136
136
  "overrides": {
137
- "eslint": "10.0.2",
137
+ "eslint": "10.0.3",
138
138
  "@eslint/js": "10.0.1"
139
139
  },
140
140
  "build": {
141
141
  "sha": "6171bcea317ea26b7674c1ea41fef17b0bf9eb18",
142
142
  "sha7": "6171bce",
143
- "event": "release",
143
+ "event": "schedule",
144
144
  "workflow": "Publish to npm and trigger docker builds",
145
- "type": "tag",
146
- "name": "3.6.0",
147
- "dev": "false"
145
+ "type": "branch",
146
+ "name": "main",
147
+ "dev": "true"
148
148
  }
149
149
  }