matterbridge-test 2.0.0-dev-20251026-dbfaf33 → 2.0.1-dev-20251111-db9e4a3

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
@@ -23,6 +23,19 @@ If you like this project and find it useful, please consider giving it a star on
23
23
  <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
24
24
  </a>
25
25
 
26
+ ## [2.0.1] - 2025-11-11
27
+
28
+ ### Changed
29
+
30
+ - [package]: Updated dependencies.
31
+ - [package]: Bumped package to automator v. 2.0.12.
32
+ - [jest]: Updated jestHelpers to v. 1.0.12.
33
+ - [workflows]: Use shallow clones and --no-fund --no-audit for faster builds.
34
+
35
+ <a href="https://www.buymeacoffee.com/luligugithub">
36
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
37
+ </a>
38
+
26
39
  ## [2.0.0] - 2025-10-24
27
40
 
28
41
  ### Changed
package/dist/module.js CHANGED
@@ -55,7 +55,7 @@ export class TestPlatform extends MatterbridgeDynamicPlatform {
55
55
  ...(this.config.enableElectrical ? [electricalSensor] : []),
56
56
  ...(this.config.enablePowerSource ? [powerSource] : []),
57
57
  ...(this.config.enableModeSelect ? [modeSelect] : []),
58
- ], { uniqueStorageKey: 'Switch' + i }, this.config.debug);
58
+ ], { id: 'Switch' + i }, this.config.debug);
59
59
  switchDevice.log.logName = 'Switch' + i;
60
60
  switchDevice.createDefaultBridgedDeviceBasicInformationClusterServer('Switch ' + i, 'serial_switch_' + i, 0xfff1, 'Matterbridge', 'Matterbridge test plugin', parseInt(this.version.replace(/\D/g, '')), this.version, parseInt(this.matterbridge.matterbridgeVersion.replace(/\D/g, '')), this.matterbridge.matterbridgeVersion);
61
61
  switchDevice.addCommandHandler('identify', async (data) => {
@@ -92,7 +92,7 @@ export class TestPlatform extends MatterbridgeDynamicPlatform {
92
92
  ...(this.config.enableElectrical ? [electricalSensor] : []),
93
93
  ...(this.config.enablePowerSource ? [powerSource] : []),
94
94
  ...(this.config.enableModeSelect ? [modeSelect] : []),
95
- ], { uniqueStorageKey: 'Outlet' + i }, this.config.debug);
95
+ ], { id: 'Outlet' + i }, this.config.debug);
96
96
  outletDevice.log.logName = 'Outlet' + i;
97
97
  outletDevice.createDefaultBridgedDeviceBasicInformationClusterServer('Outlet ' + i, 'serial_outlet_' + i, 0xfff1, 'Matterbridge', 'Matterbridge test plugin', parseInt(this.version.replace(/\D/g, '')), this.version, parseInt(this.matterbridge.matterbridgeVersion.replace(/\D/g, '')), this.matterbridge.matterbridgeVersion);
98
98
  outletDevice.addCommandHandler('identify', async (data) => {
@@ -129,7 +129,7 @@ export class TestPlatform extends MatterbridgeDynamicPlatform {
129
129
  ...(this.config.enableElectrical ? [electricalSensor] : []),
130
130
  ...(this.config.enablePowerSource ? [powerSource] : []),
131
131
  ...(this.config.enableModeSelect ? [modeSelect] : []),
132
- ], { uniqueStorageKey: 'Light' + i }, this.config.debug);
132
+ ], { id: 'Light' + i }, this.config.debug);
133
133
  lightDevice.log.logName = 'Light' + i;
134
134
  lightDevice.createDefaultBridgedDeviceBasicInformationClusterServer('Light ' + i, 'serial_light_' + i, 0xfff1, 'Matterbridge', 'Matterbridge test plugin', parseInt(this.version.replace(/\D/g, '')), this.version, parseInt(this.matterbridge.matterbridgeVersion.replace(/\D/g, '')), this.matterbridge.matterbridgeVersion);
135
135
  lightDevice.addCommandHandler('identify', async (data) => {
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "matterbridge-test",
3
- "version": "2.0.0-dev-20251026-dbfaf33",
3
+ "version": "2.0.1-dev-20251111-db9e4a3",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "matterbridge-test",
9
- "version": "2.0.0-dev-20251026-dbfaf33",
9
+ "version": "2.0.1-dev-20251111-db9e4a3",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
12
  "node-ansi-logger": "3.1.1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matterbridge-test",
3
- "version": "2.0.0-dev-20251026-dbfaf33",
3
+ "version": "2.0.1-dev-20251111-db9e4a3",
4
4
  "description": "Matterbridge test plugin",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",