@homebridge-plugins/homebridge-tado 8.6.0-beta.4 → 8.6.0

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,17 +1,16 @@
1
1
  # Changelog
2
2
 
3
- ## v8.6.0 - 2025-10-31
4
- - BREAKING CHANGE: If you use tadoApiUrl or skipAuth, they must now be defined under each corresponding home in your configuration (#176)
5
- - Refactor configuration: Moved tadoApiUrl and skipAuth into individual home configs to support multiple API URLs (#176)
6
- - Persist Tado zone states after zone state updates
7
- - Improved zone update logic: when setting a state, all zones are now updated immediately if the next scheduled update is more than 10 seconds away
8
- - Advanced queue handling for update and persistence tasks
9
- - Prevent updates during active setStates
10
- - Tado API counter now tracks and persists for each authenticated user
11
- - Fix: Polling and tasks for multiple homes (#178)
12
- - Fix: Corrected zone update handling that could previously cause unintended heating changes (#178)
13
- - Added additional debug log messages for zone updates
14
- - Note: This update will reset your tado api counter for the current day to zero.
3
+ ## v8.6.0 2025-11-01
4
+ - BREAKING CHANGE: `tadoApiUrl` and `skipAuth` must now be defined under each home configuration for proper multi-home support (#176)
5
+ - New parameter `preferSiriTemperature` for improved Siri handling allows temperature changes via Siri without forcing Auto mode (#178). See [#178 (comment)](https://github.com/homebridge-plugins/homebridge-tado/issues/178#issuecomment-3476646430) for a detailed explanation
6
+ - Restored stable update behavior from v8.3.1 and earlier while keeping Siri compatibility (#178)
7
+ - Reworked thermostat update logic: batches state and temperature updates within 400 ms for more reliable state updates (#178)
8
+ - Improved zone update and persistence handling for faster, more consistent status updates
9
+ - Optimized task queue to prevent overlapping operations and API calls
10
+ - Fixed multi-home polling and individual API handling (#176)
11
+ - Added enhanced debug logs for zone updates and API interactions
12
+ - Note: This update resets the Tado API counter for the current day
13
+ - Apologies for the unexpected behavior introduced in 8.4.x–8.5.x — this release restores consistent and reliable behavior, with an optional fix for Siri users. Full statement: [#178 (comment)](https://github.com/homebridge-plugins/homebridge-tado/issues/178#issuecomment-3476646430)
15
14
 
16
15
  ## v8.5.0 - 2025-10-27
17
16
  - Change minimum polling interval to 30s due to improvements made in v8.2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@homebridge-plugins/homebridge-tado",
3
- "version": "8.6.0-beta.4",
3
+ "version": "8.6.0",
4
4
  "description": "Homebridge plugin for controlling tado° devices.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -51,4 +51,4 @@
51
51
  "globals": "^16.5.0",
52
52
  "prettier": "^3.6.2"
53
53
  }
54
- }
54
+ }
@@ -564,7 +564,6 @@ export default (api, accessories, config, tado, telegram) => {
564
564
  break;
565
565
  }
566
566
  } catch (err) {
567
- console.log("error at setStates", err);
568
567
  errorHandler(err);
569
568
  } finally {
570
569
  delete helpers[config.homeId].activeSettingStateRuns[runId];