@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 +11 -12
- package/package.json +2 -2
- package/src/helper/handler.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## v8.6.0
|
|
4
|
-
- BREAKING CHANGE:
|
|
5
|
-
-
|
|
6
|
-
-
|
|
7
|
-
-
|
|
8
|
-
-
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
-
|
|
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
|
|
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
|
+
}
|
package/src/helper/handler.js
CHANGED