homebridge-enphase-envoy 10.3.7 → 10.3.8

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
@@ -9,6 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
 
10
10
  - after update to v10.0.0 and above the accessory and bridge need to be removed from the homebridge / Home.app and added again
11
11
 
12
+ ## [10.3.8] - (17.12.2025)
13
+
14
+ ## Changes
15
+
16
+ - fix [#222](https://github.com/grzegorz914/homebridge-enphase-envoy/issues/222)
17
+ - bump dependencies
18
+
12
19
  ## [10.3.7] - (09.12.2025)
13
20
 
14
21
  ## Changes
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "displayName": "Enphase Envoy",
4
4
  "name": "homebridge-enphase-envoy",
5
- "version": "10.3.7",
5
+ "version": "10.3.8",
6
6
  "description": "Homebridge p7ugin for Photovoltaic Energy System manufactured by Enphase.",
7
7
  "license": "MIT",
8
8
  "author": "grzegorz914",
@@ -38,7 +38,7 @@
38
38
  "mqtt": "^5.14.1",
39
39
  "axios": "^1.13.2",
40
40
  "express": "^5.2.1",
41
- "fast-xml-parser": "^5.3.2",
41
+ "fast-xml-parser": "^5.3.3",
42
42
  "fakegato-history": "^0.6.7"
43
43
  },
44
44
  "keywords": [
@@ -4023,7 +4023,6 @@ class EnvoyDevice extends EventEmitter {
4023
4023
  // Update system services
4024
4024
  for (const { type, value, valueKey } of characteristics1) {
4025
4025
  if (!this.functions.isValidValue(value)) continue;
4026
- this.emit('debug', `Power And Energy, ${measurementType}, power ${valueKey}: ${value}`);
4027
4026
  control[valueKey] = value;
4028
4027
  this.systemService?.updateCharacteristic(type, value);
4029
4028
  };