matterbridge-eve-motion 2.0.6 → 2.0.7

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
@@ -26,6 +26,25 @@ If you like this project and find it useful, please consider giving it a star on
26
26
 
27
27
  <a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="120"></a>
28
28
 
29
+ ## [2.0.7] - 2026-02-27
30
+
31
+ ### Added
32
+
33
+ - [devContainer]: Add the new [dev container setup](https://matterbridge.io/reflector/MatterbridgeDevContainer.html).
34
+ - [devContainer]: Add the new [reflector dev container setup](https://matterbridge.io/reflector/Reflector.html).
35
+ - [styleguide]: Add [STYLEGUIDE.md](STYLEGUIDE.md).
36
+ - [contributing]: Add [CONTRIBUTING.md](CONTRIBUTING.md).
37
+
38
+ ### Changed
39
+
40
+ - [package]: Update dependencies.
41
+ - [package]: Bump package to `automator` v.3.1.0.
42
+ - [package]: Bump `eslint` to v.10.0.2.
43
+ - [package]: Bump `typescript-eslint` to v.8.56.1.
44
+ - [package]: Replace `eslint-plugin-import` with `eslint-plugin-simple-import-sort`.
45
+
46
+ <a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
47
+
29
48
  ## [2.0.6] - 2026-02-18
30
49
 
31
50
  ### Changed
package/dist/module.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { MatterHistory } from 'matter-history';
2
- import { MatterbridgeAccessoryPlatform, powerSource, MatterbridgeEndpoint, occupancySensor, lightSensor } from 'matterbridge';
2
+ import { lightSensor, MatterbridgeAccessoryPlatform, MatterbridgeEndpoint, occupancySensor, powerSource } from 'matterbridge';
3
3
  import { IlluminanceMeasurement, OccupancySensing, PowerSource } from 'matterbridge/matter/clusters';
4
4
  export default function initializePlugin(matterbridge, log, config) {
5
5
  return new EveMotionPlatform(matterbridge, log, config);
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "matterbridge-eve-motion",
3
- "version": "2.0.6",
3
+ "version": "2.0.7",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "matterbridge-eve-motion",
9
- "version": "2.0.6",
9
+ "version": "2.0.7",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
12
  "matter-history": "1.2.1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matterbridge-eve-motion",
3
- "version": "2.0.6",
3
+ "version": "2.0.7",
4
4
  "description": "Matterbridge eve motion with history",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",
@@ -67,7 +67,7 @@
67
67
  "node-persist-manager": "2.0.1"
68
68
  },
69
69
  "overrides": {
70
- "eslint": "10.0.0",
70
+ "eslint": "10.0.2",
71
71
  "@eslint/js": "10.0.1"
72
72
  }
73
73
  }