matterbridge 3.1.3-dev-20250714-c9b85b3 → 3.1.3-dev-20250714-03e05f2

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,15 +8,7 @@ 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.1.3] - 2025-07-13
12
-
13
- ### Development Breaking Changes
14
-
15
- - [exports]: The single devices (i.e. Rvc, Evse etc...) are only exported from `matterbridge/devices`. Please update your imports to use the new export path. Refer to the [documentation](README-DEV.md) for details on imports.
16
-
17
- - [MatterbridgeEndpoint]: Added the mode property: `server` will make the device indipendent from its plugin. It has its own server node: QRCode, Fabrics and Sessions are visible in the Devices section of the Home page. This is a workaround for the Rvc Apple issue. With mode=server the Rvc (like any other device) can be paired directly to the controller like a native not bridged Matter device. Refer to the [documentation](README-DEV.md) for details on using mode.
18
-
19
- - [RoboticVacuumCleaner]: The signature of the constructor has changed to add the mode property. Mode `server` will make the device indipendent from its plugin. It has its own server node: QRCode, Fabrics and Sessions are visible in the Devices section of the Home page. This is a workaround for the Rvc Apple issue. With mode=server the Rvc (like any other device) can be paired directly to the controller like a native not bridged Matter device. Refer to the [documentation](README-DEV.md) for details on using mode.
11
+ ## [3.1.3] - 2025-07-14
20
12
 
21
13
  ### Added
22
14
 
@@ -133,8 +125,6 @@ If you like this project and find it useful, please consider giving it a star on
133
125
  - [energy]: Added parameter for cumulativeEnergyExported to the helper. For solar power device.
134
126
  - [platform]: Removed long deprecated methods: validateEntityBlackList and validateDeviceWhiteBlackList. Use validateDevice and validateEntity.
135
127
 
136
- ### Fixed
137
-
138
128
  <a href="https://www.buymeacoffee.com/luligugithub">
139
129
  <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
140
130
  </a>
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "matterbridge",
3
- "version": "3.1.3-dev-20250714-c9b85b3",
3
+ "version": "3.1.3-dev-20250714-03e05f2",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "matterbridge",
9
- "version": "3.1.3-dev-20250714-c9b85b3",
9
+ "version": "3.1.3-dev-20250714-03e05f2",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
12
  "@matter/main": "0.15.1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matterbridge",
3
- "version": "3.1.3-dev-20250714-c9b85b3",
3
+ "version": "3.1.3-dev-20250714-03e05f2",
4
4
  "description": "Matterbridge plugin manager for Matter",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",
@@ -1,8 +1,10 @@
1
+ import path from 'node:path';
2
+
1
3
  import { vi, describe, it, expect, beforeEach, afterEach, MockInstance } from 'vitest';
2
- import { Matterbridge } from '../src/matterbridge.ts';
3
4
  import { AnsiLogger, LogLevel, TimestampFormat } from 'node-ansi-logger';
4
- import path from 'node:path';
5
- import spawn from '../src/utils/spawn.ts';
5
+
6
+ import * as spawn from '../src/utils/spawn.ts';
7
+ import { Matterbridge } from '../src/matterbridge.ts';
6
8
 
7
9
  const NAME = 'ViMatterbridgeGlobal';
8
10
  const HOMEDIR = path.join('jest', NAME);