matterbridge 3.2.6-dev-20250906-34345e5 → 3.2.7-dev-20250907-c623e42

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
@@ -8,6 +8,26 @@ If you like this project and find it useful, please consider giving it a star on
8
8
  <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
9
9
  </a>
10
10
 
11
+ ## [3.2.7] - 2025-09-??
12
+
13
+ ### Breaking Changes
14
+
15
+ - [platform]: Typed PlatformConfig with the default properties: name, type, version, debug and unregisterOnShutdown.
16
+ - [platform]: Removed DefaultPlatformConfig interface definition.
17
+
18
+ ### Added
19
+
20
+ ### Changed
21
+
22
+ - [package]: Updated dependencies.
23
+ - [matterbridge.io]: Updated site.
24
+
25
+ ### Fixed
26
+
27
+ <a href="https://www.buymeacoffee.com/luligugithub">
28
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
29
+ </a>
30
+
11
31
  ## [3.2.6] - 2025-09-06
12
32
 
13
33
  ### Added
@@ -24,7 +44,7 @@ If you like this project and find it useful, please consider giving it a star on
24
44
  - [childbridge]: Create the server node for Dynamic plugins even if they have 0 devices. This allow to pair empty plugins in huge setup.
25
45
  - [select]: Enhanced documentation for Platform setSelectDevice, setSelectDeviceEntity, and setSelectEntity methods with schema examples (see the Jsdoc of the methods).
26
46
  - [MatterbridgeEndpoint]: Improved documentation in jsdoc.
27
- - [AirConditioner]: Added AirConditioner() class and Jest test. It is not supported by the Home app. Improved createDefaultThermostatUserInterfaceConfigurationClusterServer().
47
+ - [AirConditioner]: Added AirConditioner() class and Jest test. It is not supported correctly by Google. Improved createDefaultThermostatUserInterfaceConfigurationClusterServer().
28
48
  - [DeviceTypes]: Add Chapter 10. Media Device Types.
29
49
  - [Speaker]: Added Speaker() class and Jest test. Supported only by SmartThings.
30
50
  - [mb_mdns]: Added help screen and the ability to filter mDNS packets. Useful to see all paired and commissionable Matter devices on the network.
@@ -34,6 +54,7 @@ If you like this project and find it useful, please consider giving it a star on
34
54
 
35
55
  - [package]: Updated dependencies.
36
56
  - [package]: Bumped Jest to v. 30.1.3. (this version finally solves the broken ESM module mock).
57
+ - [jest]: Refactor all tests units.
37
58
 
38
59
  ### Fixed
39
60
 
@@ -1,6 +1,7 @@
1
1
  export const zigbee2mqtt_config = {
2
2
  name: 'matterbridge-zigbee2mqtt',
3
3
  type: 'DynamicPlatform',
4
+ version: '1.0.0',
4
5
  host: 'localhost',
5
6
  username: '',
6
7
  password: '',
@@ -19,6 +20,7 @@ export const zigbee2mqtt_config = {
19
20
  export const somfytahoma_config = {
20
21
  name: 'matterbridge-somfy-tahoma',
21
22
  type: 'DynamicPlatform',
23
+ version: '1.0.0',
22
24
  username: '',
23
25
  password: '',
24
26
  service: 'somfy_europe',
@@ -31,6 +33,7 @@ export const somfytahoma_config = {
31
33
  export const shelly_config = {
32
34
  name: 'matterbridge-shelly',
33
35
  type: 'DynamicPlatform',
36
+ version: '1.0.0',
34
37
  username: '',
35
38
  password: '',
36
39
  switchList: [],
@@ -9,7 +9,7 @@ import { isValidArray, isValidObject, isValidString } from './utils/export.js';
9
9
  export class MatterbridgePlatform {
10
10
  matterbridge;
11
11
  log;
12
- config = {};
12
+ config;
13
13
  name = '';
14
14
  type = '';
15
15
  version = '1.0.0';
@@ -648,7 +648,7 @@ export class PluginManager extends EventEmitter {
648
648
  else if (plugin.name === 'matterbridge-shelly')
649
649
  config = shelly_config;
650
650
  else
651
- config = { name: plugin.name, type: plugin.type, debug: false, unregisterOnShutdown: false };
651
+ config = { name: plugin.name, type: plugin.type, version: '1.0.0', debug: false, unregisterOnShutdown: false };
652
652
  }
653
653
  try {
654
654
  await promises.writeFile(configFile, JSON.stringify(config, null, 2), 'utf8');
@@ -662,7 +662,7 @@ export class PluginManager extends EventEmitter {
662
662
  }
663
663
  else {
664
664
  logError(this.log, `Error accessing config file ${configFile} for plugin ${plg}${plugin.name}${er}`, err);
665
- return { name: plugin.name, type: plugin.type, debug: false, unregisterOnShutdown: false };
665
+ return { name: plugin.name, type: plugin.type, version: '1.0.0', debug: false, unregisterOnShutdown: false };
666
666
  }
667
667
  }
668
668
  }
@@ -126,7 +126,7 @@ export async function getNpmPackageVersion(packageName, tag = 'latest', timeout
126
126
  export async function getGitHubUpdate(branch, file, timeout = 10000) {
127
127
  const https = await import('node:https');
128
128
  return new Promise((resolve, reject) => {
129
- const url = `https://raw.githubusercontent.com/Luligu/matterbridge/${branch}/public/${file}`;
129
+ const url = `https://matterbridge.io/${branch}_${file}`;
130
130
  const controller = new AbortController();
131
131
  const timeoutId = setTimeout(() => {
132
132
  controller.abort();
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "matterbridge",
3
- "version": "3.2.6-dev-20250906-34345e5",
3
+ "version": "3.2.7-dev-20250907-c623e42",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "matterbridge",
9
- "version": "3.2.6-dev-20250906-34345e5",
9
+ "version": "3.2.7-dev-20250907-c623e42",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
12
  "@matter/main": "0.15.3",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matterbridge",
3
- "version": "3.2.6-dev-20250906-34345e5",
3
+ "version": "3.2.7-dev-20250907-c623e42",
4
4
  "description": "Matterbridge plugin manager for Matter",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",