@homebridge-plugins/homebridge-tado 8.8.0 → 8.8.2

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
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## v8.8.2 - 2026-03-21
4
+ - Update dependencies due to vulnerability
5
+
6
+ ## v8.8.1 - 2026-02-14
7
+ - Update dependencies
8
+ - Update qs due to vulnerability
9
+ - Update eslint and drop obsolete dev dependencies
10
+
3
11
  ## v8.8.0 - 2026-01-31
4
12
  - Add `addJitter` option to introduce a ±10% random variation in the polling interval
5
13
  - Add `nightPolling` option to optionally use a longer interval overnight, lowering polling activity between 00:00–06:00
@@ -1439,6 +1439,7 @@ async function fetchDevices(auth, refresh, resync) {
1439
1439
  try {
1440
1440
 
1441
1441
  //check version before load ui
1442
+ //eslint-disable-next-line no-undef
1442
1443
  if (window.homebridge.serverEnv.env && window.compareVersions(window.homebridge.serverEnv.env.packageVersion, '4.34.0') < 0) {
1443
1444
  await showOldSchema(true);
1444
1445
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@homebridge-plugins/homebridge-tado",
3
- "version": "8.8.0",
3
+ "version": "8.8.2",
4
4
  "description": "Homebridge plugin for controlling tado° devices.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -33,23 +33,17 @@
33
33
  "homebridge": "^1.6.0||^2.0.0-beta.0"
34
34
  },
35
35
  "dependencies": {
36
- "@homebridge/plugin-ui-utils": "^2.1.2",
36
+ "@homebridge/plugin-ui-utils": "^2.2.1",
37
37
  "fakegato-history": "^0.6.7",
38
38
  "form-data": "^4.0.5",
39
- "fs-extra": "^11.3.3",
39
+ "fs-extra": "^11.3.4",
40
40
  "got": "^14.6.6",
41
41
  "moment": "^2.30.1"
42
42
  },
43
43
  "devDependencies": {
44
- "@babel/core": "7.29.0",
45
- "@babel/eslint-parser": "7.28.6",
46
- "@babel/eslint-plugin": "7.27.1",
47
- "@eslint/js": "^9.39.2",
48
- "eslint": "^9.39.2",
49
- "eslint-config-prettier": "^10.1.8",
50
- "eslint-plugin-import": "^2.32.0",
51
- "eslint-plugin-prettier": "^5.5.5",
52
- "globals": "^17.2.0",
44
+ "eslint": "^10.1.0",
45
+ "@eslint/js": "^10.0.1",
46
+ "globals": "^17.4.0",
53
47
  "prettier": "^3.8.1"
54
48
  }
55
49
  }
@@ -27,6 +27,7 @@ export default class SolarLightsensorAccessory {
27
27
 
28
28
  if (!service) {
29
29
  Logger.info('Adding LightSensor service', this.accessory.displayName);
30
+ // eslint-disable-next-line no-useless-assignment
30
31
  service = this.accessory.addService(
31
32
  this.api.hap.Service.LightSensor,
32
33
  this.accessory.displayName,
@@ -34,4 +35,4 @@ export default class SolarLightsensorAccessory {
34
35
  );
35
36
  }
36
37
  }
37
- }
38
+ }