@switchbot/homebridge-switchbot 5.0.0-beta.99 → 5.0.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/.changeset/config.json +14 -0
- package/.github/copilot-instructions.md +39 -0
- package/.github/workflows/ci.yml +4 -1
- package/.github/workflows/manual-e2e.yml +6 -3
- package/.github/workflows/release.yml +64 -15
- package/.github/workflows/stale.yml +2 -4
- package/.husky/pre-push +15 -0
- package/CHANGELOG.md +126 -134
- package/MIGRATION.md +16 -6
- package/README.md +84 -3
- package/TODO.md +263 -0
- package/config.schema.json +229 -36
- package/dist/SwitchBotHAPPlatform.d.ts +133 -0
- package/dist/SwitchBotHAPPlatform.d.ts.map +1 -0
- package/dist/SwitchBotHAPPlatform.js +555 -0
- package/dist/SwitchBotHAPPlatform.js.map +1 -0
- package/dist/SwitchBotMatterPlatform.d.ts +141 -0
- package/dist/SwitchBotMatterPlatform.d.ts.map +1 -0
- package/dist/SwitchBotMatterPlatform.js +536 -0
- package/dist/SwitchBotMatterPlatform.js.map +1 -0
- package/dist/device-types.d.ts +31 -0
- package/dist/device-types.d.ts.map +1 -0
- package/dist/device-types.js +246 -0
- package/dist/device-types.js.map +1 -0
- package/dist/deviceCommandMapper.d.ts +10 -0
- package/dist/deviceCommandMapper.d.ts.map +1 -0
- package/dist/deviceCommandMapper.js +319 -0
- package/dist/deviceCommandMapper.js.map +1 -0
- package/dist/deviceFactory.d.ts +3 -2
- package/dist/deviceFactory.d.ts.map +1 -1
- package/dist/deviceFactory.js +107 -29
- package/dist/deviceFactory.js.map +1 -1
- package/dist/devices/genericDevice.d.ts +59 -37
- package/dist/devices/genericDevice.d.ts.map +1 -1
- package/dist/devices/genericDevice.js +376 -78
- package/dist/devices/genericDevice.js.map +1 -1
- package/dist/errors.d.ts +38 -0
- package/dist/errors.d.ts.map +1 -0
- package/dist/errors.js +32 -0
- package/dist/errors.js.map +1 -0
- package/dist/homebridge-ui/device-types.js +246 -0
- package/dist/homebridge-ui/device-types.js.map +1 -0
- package/dist/homebridge-ui/deviceCommandMapper.js +319 -0
- package/dist/homebridge-ui/deviceCommandMapper.js.map +1 -0
- package/dist/homebridge-ui/endpoints/config.d.ts +3 -0
- package/dist/homebridge-ui/endpoints/config.d.ts.map +1 -0
- package/dist/homebridge-ui/endpoints/config.js +90 -0
- package/dist/homebridge-ui/endpoints/config.js.map +1 -0
- package/dist/homebridge-ui/endpoints/devices.d.ts +6 -0
- package/dist/homebridge-ui/endpoints/devices.d.ts.map +1 -0
- package/dist/homebridge-ui/endpoints/devices.js +144 -0
- package/dist/homebridge-ui/endpoints/devices.js.map +1 -0
- package/dist/homebridge-ui/endpoints/discovery.d.ts +7 -0
- package/dist/homebridge-ui/endpoints/discovery.d.ts.map +1 -0
- package/dist/homebridge-ui/endpoints/discovery.js +219 -0
- package/dist/homebridge-ui/endpoints/discovery.js.map +1 -0
- package/dist/homebridge-ui/errors.js +32 -0
- package/dist/homebridge-ui/errors.js.map +1 -0
- package/dist/homebridge-ui/homebridge-ui/endpoints/config.js +90 -0
- package/dist/homebridge-ui/homebridge-ui/endpoints/config.js.map +1 -0
- package/dist/homebridge-ui/homebridge-ui/endpoints/devices.js +144 -0
- package/dist/homebridge-ui/homebridge-ui/endpoints/devices.js.map +1 -0
- package/dist/homebridge-ui/homebridge-ui/endpoints/discovery.js +219 -0
- package/dist/homebridge-ui/homebridge-ui/endpoints/discovery.js.map +1 -0
- package/dist/homebridge-ui/homebridge-ui/server.js +11 -0
- package/dist/homebridge-ui/homebridge-ui/server.js.map +1 -0
- package/dist/homebridge-ui/homebridge-ui/utils/config-parser.js +108 -0
- package/dist/homebridge-ui/homebridge-ui/utils/config-parser.js.map +1 -0
- package/dist/homebridge-ui/homebridge-ui/utils/device-migration.js +111 -0
- package/dist/homebridge-ui/homebridge-ui/utils/device-migration.js.map +1 -0
- package/dist/homebridge-ui/homebridge-ui/utils/logger.js +17 -0
- package/dist/homebridge-ui/homebridge-ui/utils/logger.js.map +1 -0
- package/dist/homebridge-ui/public/css/styles.css +483 -0
- package/dist/homebridge-ui/public/index.html +197 -621
- package/dist/homebridge-ui/public/js/advanced-settings.d.ts +3 -0
- package/dist/homebridge-ui/public/js/advanced-settings.d.ts.map +1 -0
- package/dist/homebridge-ui/public/js/advanced-settings.js +95 -0
- package/dist/homebridge-ui/public/js/advanced-settings.js.map +1 -0
- package/dist/homebridge-ui/public/js/advanced-settings.ts +94 -0
- package/dist/homebridge-ui/public/js/api.d.ts +66 -0
- package/dist/homebridge-ui/public/js/api.d.ts.map +1 -0
- package/dist/homebridge-ui/public/js/api.js +295 -0
- package/dist/homebridge-ui/public/js/api.js.map +1 -0
- package/dist/homebridge-ui/public/js/api.ts +355 -0
- package/dist/homebridge-ui/public/js/app.d.ts +2 -0
- package/dist/homebridge-ui/public/js/app.d.ts.map +1 -0
- package/dist/homebridge-ui/public/js/app.js +3722 -0
- package/dist/homebridge-ui/public/js/app.js.map +7 -0
- package/dist/homebridge-ui/public/js/app.ts +22 -0
- package/dist/homebridge-ui/public/js/constants.d.ts +2 -0
- package/dist/homebridge-ui/public/js/constants.d.ts.map +1 -0
- package/dist/homebridge-ui/public/js/constants.js +2 -0
- package/dist/homebridge-ui/public/js/constants.js.map +1 -0
- package/dist/homebridge-ui/public/js/constants.ts +1 -0
- package/dist/homebridge-ui/public/js/credentials.d.ts +3 -0
- package/dist/homebridge-ui/public/js/credentials.d.ts.map +1 -0
- package/dist/homebridge-ui/public/js/credentials.js +99 -0
- package/dist/homebridge-ui/public/js/credentials.js.map +1 -0
- package/dist/homebridge-ui/public/js/credentials.ts +105 -0
- package/dist/homebridge-ui/public/js/devices-delete.d.ts +3 -0
- package/dist/homebridge-ui/public/js/devices-delete.d.ts.map +1 -0
- package/dist/homebridge-ui/public/js/devices-delete.js +199 -0
- package/dist/homebridge-ui/public/js/devices-delete.js.map +1 -0
- package/dist/homebridge-ui/public/js/devices-delete.ts +227 -0
- package/dist/homebridge-ui/public/js/devices.d.ts +9 -0
- package/dist/homebridge-ui/public/js/devices.d.ts.map +1 -0
- package/dist/homebridge-ui/public/js/devices.js +98 -0
- package/dist/homebridge-ui/public/js/devices.js.map +1 -0
- package/dist/homebridge-ui/public/js/devices.ts +106 -0
- package/dist/homebridge-ui/public/js/discovery.d.ts +9 -0
- package/dist/homebridge-ui/public/js/discovery.d.ts.map +1 -0
- package/dist/homebridge-ui/public/js/discovery.js +1201 -0
- package/dist/homebridge-ui/public/js/discovery.js.map +1 -0
- package/dist/homebridge-ui/public/js/discovery.ts +1335 -0
- package/dist/homebridge-ui/public/js/logger.d.ts +7 -0
- package/dist/homebridge-ui/public/js/logger.d.ts.map +1 -0
- package/dist/homebridge-ui/public/js/logger.js +17 -0
- package/dist/homebridge-ui/public/js/logger.js.map +1 -0
- package/dist/homebridge-ui/public/js/logger.ts +17 -0
- package/dist/homebridge-ui/public/js/modal.d.ts +5 -0
- package/dist/homebridge-ui/public/js/modal.d.ts.map +1 -0
- package/dist/homebridge-ui/public/js/modal.js +35 -0
- package/dist/homebridge-ui/public/js/modal.js.map +1 -0
- package/dist/homebridge-ui/public/js/modal.ts +35 -0
- package/dist/homebridge-ui/public/js/modals.d.ts +15 -0
- package/dist/homebridge-ui/public/js/modals.d.ts.map +1 -0
- package/dist/homebridge-ui/public/js/modals.js +675 -0
- package/dist/homebridge-ui/public/js/modals.js.map +1 -0
- package/dist/homebridge-ui/public/js/modals.ts +765 -0
- package/dist/homebridge-ui/public/js/render.d.ts +71 -0
- package/dist/homebridge-ui/public/js/render.d.ts.map +1 -0
- package/dist/homebridge-ui/public/js/render.js +960 -0
- package/dist/homebridge-ui/public/js/render.js.map +1 -0
- package/dist/homebridge-ui/public/js/render.ts +1084 -0
- package/dist/homebridge-ui/public/js/toast.d.ts +6 -0
- package/dist/homebridge-ui/public/js/toast.d.ts.map +1 -0
- package/dist/homebridge-ui/public/js/toast.js +38 -0
- package/dist/homebridge-ui/public/js/toast.js.map +1 -0
- package/dist/homebridge-ui/public/js/toast.ts +44 -0
- package/dist/homebridge-ui/public/js/types.d.ts +23 -0
- package/dist/homebridge-ui/public/js/types.d.ts.map +1 -0
- package/dist/homebridge-ui/public/js/types.js +2 -0
- package/dist/homebridge-ui/public/js/types.js.map +1 -0
- package/dist/homebridge-ui/public/js/types.ts +26 -0
- package/dist/homebridge-ui/server.d.ts +1 -3
- package/dist/homebridge-ui/server.d.ts.map +1 -1
- package/dist/homebridge-ui/server.js +8 -471
- package/dist/homebridge-ui/server.js.map +1 -1
- package/dist/homebridge-ui/settings.js +8 -0
- package/dist/homebridge-ui/settings.js.map +1 -0
- package/dist/homebridge-ui/switchbotClient.js +247 -0
- package/dist/homebridge-ui/switchbotClient.js.map +1 -0
- package/dist/homebridge-ui/utils/config-parser.d.ts +39 -0
- package/dist/homebridge-ui/utils/config-parser.d.ts.map +1 -0
- package/dist/homebridge-ui/utils/config-parser.js +108 -0
- package/dist/homebridge-ui/utils/config-parser.js.map +1 -0
- package/dist/homebridge-ui/utils/device-migration.d.ts +35 -0
- package/dist/homebridge-ui/utils/device-migration.d.ts.map +1 -0
- package/dist/homebridge-ui/utils/device-migration.js +111 -0
- package/dist/homebridge-ui/utils/device-migration.js.map +1 -0
- package/dist/homebridge-ui/utils/logger.d.ts +7 -0
- package/dist/homebridge-ui/utils/logger.d.ts.map +1 -0
- package/dist/homebridge-ui/utils/logger.js +17 -0
- package/dist/homebridge-ui/utils/logger.js.map +1 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +12 -2
- package/dist/index.js.map +1 -1
- package/dist/settings.d.ts +1 -0
- package/dist/settings.d.ts.map +1 -1
- package/dist/settings.js +1 -0
- package/dist/settings.js.map +1 -1
- package/dist/switchbotClient.d.ts +12 -10
- package/dist/switchbotClient.d.ts.map +1 -1
- package/dist/switchbotClient.js +156 -103
- package/dist/switchbotClient.js.map +1 -1
- package/dist/utils.d.ts +76 -1
- package/dist/utils.d.ts.map +1 -1
- package/dist/utils.js +1121 -4
- package/dist/utils.js.map +1 -1
- package/docs/assets/highlight.css +16 -2
- package/docs/assets/main.js +1 -1
- package/docs/index.html +82 -5
- package/docs/variables/default.html +3 -1
- package/eslint.config.js +9 -5
- package/nodemon.json +2 -2
- package/package.json +34 -21
- package/scripts/build-ui.js +37 -0
- package/scripts/free-dev-ports.mjs +105 -0
- package/scripts/generate-matter-maps.js +34 -17
- package/scripts/sync-device-types.mjs +31 -0
- package/src/SwitchBotHAPPlatform.ts +558 -0
- package/src/SwitchBotMatterPlatform.ts +538 -0
- package/src/device-types.js +246 -0
- package/src/device-types.js.map +1 -0
- package/src/device-types.ts +261 -0
- package/src/deviceCommandMapper.js +319 -0
- package/src/deviceCommandMapper.js.map +1 -0
- package/src/deviceCommandMapper.ts +333 -0
- package/src/deviceFactory.ts +125 -45
- package/src/devices/genericDevice.ts +411 -69
- package/src/errors.js +32 -0
- package/src/errors.js.map +1 -0
- package/src/errors.ts +35 -0
- package/src/homebridge-ui/endpoints/config.ts +110 -0
- package/src/homebridge-ui/endpoints/devices.ts +153 -0
- package/src/homebridge-ui/endpoints/discovery.ts +240 -0
- package/src/homebridge-ui/public/css/styles.css +483 -0
- package/src/homebridge-ui/public/index.html +197 -621
- package/src/homebridge-ui/public/js/advanced-settings.ts +94 -0
- package/src/homebridge-ui/public/js/api.ts +355 -0
- package/src/homebridge-ui/public/js/app.ts +22 -0
- package/src/homebridge-ui/public/js/constants.ts +1 -0
- package/src/homebridge-ui/public/js/credentials.ts +105 -0
- package/src/homebridge-ui/public/js/devices-delete.ts +227 -0
- package/src/homebridge-ui/public/js/devices.ts +106 -0
- package/src/homebridge-ui/public/js/discovery.ts +1335 -0
- package/src/homebridge-ui/public/js/logger.ts +17 -0
- package/src/homebridge-ui/public/js/modal.ts +35 -0
- package/src/homebridge-ui/public/js/modals.ts +765 -0
- package/src/homebridge-ui/public/js/render.ts +1084 -0
- package/src/homebridge-ui/public/js/toast.ts +44 -0
- package/src/homebridge-ui/public/js/types.ts +26 -0
- package/src/homebridge-ui/server.ts +9 -554
- package/src/homebridge-ui/utils/config-parser.ts +125 -0
- package/src/homebridge-ui/utils/device-migration.ts +144 -0
- package/src/homebridge-ui/utils/logger.ts +17 -0
- package/src/index.ts +12 -2
- package/src/settings.js +8 -0
- package/src/settings.js.map +1 -0
- package/src/settings.ts +2 -0
- package/src/switchbotClient.js +247 -0
- package/src/switchbotClient.js.map +1 -0
- package/src/switchbotClient.ts +177 -114
- package/src/utils.ts +1133 -5
- package/test/client/switchbot-client-debounce.spec.ts +35 -0
- package/test/client/switchbot-client-openapi.spec.ts +19 -0
- package/test/client/switchbotClient.spec.ts +64 -0
- package/test/device/device-mapping.spec.ts +23 -0
- package/test/device/deviceBase.spec.ts +26 -0
- package/test/device/deviceFactory-edge.spec.ts +15 -0
- package/test/device/deviceFactory.spec.ts +33 -0
- package/test/device/fan-swing.spec.ts +34 -0
- package/test/device/genericDevice-blepoll.spec.ts +47 -0
- package/test/device/irdevice.spec.ts +9 -0
- package/test/device/lock-users.spec.ts +35 -0
- package/test/device/matter-descriptors.spec.ts +22 -0
- package/test/device/matter-device-state.spec.ts +37 -0
- package/test/e2e/run-e2e.spec.ts +18 -19
- package/test/errors/errors.spec.ts +10 -0
- package/test/helpers/matter-harness.ts +20 -9
- package/test/homebridge-ui/server.spec.ts +9 -0
- package/test/platform/accessory-restore.spec.ts +37 -0
- package/test/platform/matter-childbridge.spec.ts +34 -0
- package/test/platform/matter-integration.spec.ts +33 -0
- package/test/platform/platform-edge.spec.ts +73 -0
- package/test/platform/platform.integration.spec.ts +34 -0
- package/test/utils/utils-extra.spec.ts +10 -0
- package/test/utils/utils.spec.ts +53 -0
- package/todo/TODO.md +80 -0
- package/tsconfig.ui.json +11 -0
- package/.github/npm-version-script-esm.js +0 -97
- package/.github/workflows/beta-release.yml +0 -52
- package/dist/platform.d.ts +0 -35
- package/dist/platform.d.ts.map +0 -1
- package/dist/platform.js +0 -945
- package/dist/platform.js.map +0 -1
- package/src/platform.ts +0 -963
- package/test/accessory-restore.spec.ts +0 -73
- package/test/device-mapping.spec.ts +0 -37
- package/test/deviceFactory.spec.ts +0 -18
- package/test/fan-swing.spec.ts +0 -29
- package/test/lock-users.spec.ts +0 -44
- package/test/matter-childbridge.spec.ts +0 -55
- package/test/matter-descriptors.spec.ts +0 -97
- package/test/matter-device-state.spec.ts +0 -101
- package/test/matter-integration.spec.ts +0 -70
- package/test/platform.integration.spec.ts +0 -55
- package/test/switchbot-client-debounce.spec.ts +0 -131
- package/test/switchbot-client-openapi.spec.ts +0 -56
- package/test/switchbotClient.spec.ts +0 -10
- package/test/utils.spec.ts +0 -20
package/CHANGELOG.md
CHANGED
|
@@ -1,43 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## Unreleased — beta-4.3.3
|
|
4
|
-
|
|
5
|
-
### Added
|
|
6
|
-
- Matter support (child-bridge) with Matter-first registration and HAP fallback.
|
|
7
|
-
- Hybrid `node-switchbot@4` client adapter (BLE + OpenAPI) with OpenAPI fallback.
|
|
8
|
-
- Manual and automated E2E scripts for lights, fans, curtains, and locks (`scripts/e2e/*`).
|
|
9
|
-
- Conditional Vitest E2E harness (`RUN_E2E=true`) and a manual GitHub Actions workflow to run E2E.
|
|
10
|
-
|
|
11
|
-
### Changed
|
|
12
|
-
- Centralized Matter cluster/attribute numeric ID maps in `src/utils.ts`.
|
|
13
|
-
- Device descriptors refactored to use canonical Matter IDs.
|
|
14
|
-
- OpenAPI fallback hardened with timeouts, retries, backoff, and per-device retry limits.
|
|
15
|
-
|
|
16
|
-
### Tests
|
|
17
|
-
- Added integration tests and a Matter test harness under `test/`.
|
|
18
|
-
|
|
19
|
-
### Notes
|
|
20
|
-
- This is a beta release; follow migration notes in MIGRATION.md before upgrading.
|
|
21
|
-
# Changelog
|
|
22
|
-
|
|
23
3
|
All notable changes to this project will be documented in this file. This project uses [Semantic Versioning](https://semver.org/)
|
|
24
4
|
|
|
25
|
-
## [
|
|
5
|
+
## [5.0.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v4.3.1...v5.0.0) (2026-04-10)
|
|
26
6
|
|
|
27
7
|
### What's Changed
|
|
8
|
+
- Upgrade `node-switchbot` dependency from v4 beta to stable `^4.0.0`.
|
|
9
|
+
- Align SwitchBot client init options with stable v4 (`scanTimeout` and `enableConnectionIntelligence`).
|
|
10
|
+
- Improve runtime use of node-switchbot v4 device manager by reusing managed devices and reducing redundant discovery calls.
|
|
11
|
+
- Harden client teardown by cancelling and rejecting pending debounced writes during shutdown.
|
|
12
|
+
- Refresh release docs from beta wording to stable v4 release wording.
|
|
13
|
+
|
|
28
14
|
- Matter platform: register only devices discovered via the SwitchBot OpenAPI by default. Per-device config overrides (by deviceId) are correctly merged into discovered devices.
|
|
29
15
|
- Add `options.allowConfigOnlyDevices` (boolean) to opt-in to registering devices that exist only in config (not discovered).
|
|
30
16
|
- Add unit tests for per-device merging and config-only behavior.
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
17
|
+
- Matter (Matter platform): default to discovery-first registration and automatically remove previously-registered "stale" accessories that are no longer discovered or configured.
|
|
18
|
+
- Add `options.keepStaleAccessories` (Advanced Settings) to opt-in to preserving previously-registered accessories when set to true. Default: false (stale accessories are removed automatically).
|
|
19
|
+
- Implement per-device OpenAPI polling with tracked timers and proper lifecycle cleanup (timers and BLE handlers cleared on unregister/shutdown).
|
|
20
|
+
- Centralize OpenAPI/BLE -> Matter mapping and expand BLE/OpenAPI parsing to include PM2.5/PM10/VOC/CO2, temperature/humidity, improved color parsing, and additional sensor/robot-vacuum fields.
|
|
21
|
+
- Prefer accessory-specific update helpers where available; fall back to generic Matter updates otherwise.
|
|
22
|
+
- Add unit tests covering BLE parsing, stale-accessory behavior, mapping helpers, and lifecycle cleanup.
|
|
23
|
+
- Add `options.dailyApiResetLocalMidnight` (boolean) to control whether the daily API budget resets at local midnight (true) or UTC midnight (false, default).
|
|
24
|
+
- Fix configuration schema placement for the "Reset Daily Counter at Local Midnight" option: remove erroneous insertion inside IR remote type list and expose it correctly under platform `options`.
|
|
25
|
+
- Fix UI discovery OpenAPI credential gating to require both token and secret before cloud discovery calls.
|
|
26
|
+
- Enable node-switchbot v4 resilience options (`enableConnectionIntelligence` and `enableCircuitBreaker`) for UI discovery clients.
|
|
39
27
|
|
|
40
|
-
|
|
28
|
+
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v4.3.1...v5.0.0
|
|
29
|
+
|
|
30
|
+
## [4.3.1](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v4.3.0...v4.3.1) (2025-03-04)
|
|
41
31
|
|
|
42
32
|
# *No New Releases During Lent*
|
|
43
33
|
|
|
@@ -47,7 +37,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
47
37
|
|
|
48
38
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v4.3.0...v4.3.1
|
|
49
39
|
|
|
50
|
-
## [4.3.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
40
|
+
## [4.3.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v4.2.0...v4.3.0) (2025-01-24)
|
|
51
41
|
|
|
52
42
|
### What's Changed
|
|
53
43
|
- Add Support for Relay Switch 1 & Relay Switch 1PM with OpenAPI
|
|
@@ -57,7 +47,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
57
47
|
|
|
58
48
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v4.2.0...v4.3.0
|
|
59
49
|
|
|
60
|
-
## [4.2.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
50
|
+
## [4.2.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v4.1.7...v4.2.0) (2025-01-23)
|
|
61
51
|
|
|
62
52
|
### What's Changed
|
|
63
53
|
- Add option to disable platform BLE for specific devices.
|
|
@@ -65,21 +55,21 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
65
55
|
|
|
66
56
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v4.1.7...v4.2.0
|
|
67
57
|
|
|
68
|
-
## [4.1.7](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
58
|
+
## [4.1.7](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v4.1.6...v4.1.7) (2024-12-22)
|
|
69
59
|
|
|
70
60
|
### What's Changed
|
|
71
61
|
- Housekeeping and updated dependencies.
|
|
72
62
|
|
|
73
63
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v4.1.6...v4.1.7
|
|
74
64
|
|
|
75
|
-
## [4.1.6](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
65
|
+
## [4.1.6](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v4.1.5...v4.1.6) (2024-12-21)
|
|
76
66
|
|
|
77
67
|
### What's Changed
|
|
78
68
|
- Housekeeping and updated dependencies.
|
|
79
69
|
|
|
80
70
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v4.1.5...v4.1.6
|
|
81
71
|
|
|
82
|
-
## [4.1.5](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
72
|
+
## [4.1.5](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v4.1.4...v4.1.5) (2024-11-27)
|
|
83
73
|
|
|
84
74
|
### What's Changed
|
|
85
75
|
- Update default refresh rate
|
|
@@ -87,7 +77,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
87
77
|
|
|
88
78
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v4.1.4...v4.1.5
|
|
89
79
|
|
|
90
|
-
## [4.1.4](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
80
|
+
## [4.1.4](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v4.1.3...v4.1.4) (2024-11-18)
|
|
91
81
|
|
|
92
82
|
### What's Changed
|
|
93
83
|
- Remove unneeded unknown casting [#1113](https://github.com/OpenWonderLabs/homebridge-switchbot/pull/1113), Thanks [@dnicolson](https://github.com/dnicolson)
|
|
@@ -98,21 +88,21 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
98
88
|
|
|
99
89
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v4.1.3...v4.1.4
|
|
100
90
|
|
|
101
|
-
## [4.1.3](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
91
|
+
## [4.1.3](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v4.1.2...v4.1.3) (2024-11-05)
|
|
102
92
|
|
|
103
93
|
### What's Changed
|
|
104
94
|
- Fix characteristic warnings [#1104](https://github.com/OpenWonderLabs/homebridge-switchbot/pull/1104), Thanks [@dnicolson](https://github.com/dnicolson)
|
|
105
95
|
|
|
106
96
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v4.1.2...v4.1.3
|
|
107
97
|
|
|
108
|
-
## [4.1.2](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
98
|
+
## [4.1.2](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v4.1.1...v4.1.2) (2024-11-04)
|
|
109
99
|
|
|
110
100
|
### What's Changed
|
|
111
101
|
- Fix refreshRate Issue
|
|
112
102
|
|
|
113
103
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v4.1.1...v4.1.2
|
|
114
104
|
|
|
115
|
-
## [4.1.1](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
105
|
+
## [4.1.1](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v4.1.0...v4.1.1) (2024-11-02)
|
|
116
106
|
|
|
117
107
|
### What's Changed
|
|
118
108
|
- Remove unneeded light level check [#1096](https://github.com/OpenWonderLabs/homebridge-switchbot/pull/1096), Thanks [@dnicolson](https://github.com/dnicolson)
|
|
@@ -126,7 +116,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
126
116
|
|
|
127
117
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v4.1.0...v4.1.1
|
|
128
118
|
|
|
129
|
-
## [4.1.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
119
|
+
## [4.1.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v4.0.0...v4.1.0) (2024-10-21)
|
|
130
120
|
|
|
131
121
|
### What's Changed
|
|
132
122
|
- Add `MeterPro` deviceType Support
|
|
@@ -135,7 +125,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
135
125
|
|
|
136
126
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v4.0.0...v4.1.0
|
|
137
127
|
|
|
138
|
-
## [4.0.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
128
|
+
## [4.0.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.8.3...v4.0.0) (2024-10-11)
|
|
139
129
|
|
|
140
130
|
### What's Changed
|
|
141
131
|
#### ⚠️ Breaking Changes
|
|
@@ -156,7 +146,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
156
146
|
|
|
157
147
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.8.3...v4.0.0
|
|
158
148
|
|
|
159
|
-
## [3.8.3](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
149
|
+
## [3.8.3](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.8.2...v3.8.3) (2024-10-09)
|
|
160
150
|
|
|
161
151
|
### What's Changed
|
|
162
152
|
- Fix incorrect handling of openState in Contact Sensor [#1061](https://github.com/OpenWonderLabs/homebridge-switchbot/pull/1061), Thanks [@nzws](https://github.com/nzws)
|
|
@@ -165,7 +155,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
165
155
|
|
|
166
156
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.8.2...v3.8.3
|
|
167
157
|
|
|
168
|
-
## [3.8.2](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
158
|
+
## [3.8.2](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.8.1...v3.8.2) (2024-09-19)
|
|
169
159
|
|
|
170
160
|
### What's Changed
|
|
171
161
|
- Improved macAddress format and finding of invalid formating.
|
|
@@ -174,7 +164,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
174
164
|
|
|
175
165
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.8.1...v3.8.2
|
|
176
166
|
|
|
177
|
-
## [3.8.1](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
167
|
+
## [3.8.1](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.8.0...v3.8.1) (2024-09-13)
|
|
178
168
|
|
|
179
169
|
### What's Changed
|
|
180
170
|
- Improved logging mechanism to avoid repetitive logs.
|
|
@@ -182,7 +172,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
182
172
|
|
|
183
173
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.8.0...v3.8.1
|
|
184
174
|
|
|
185
|
-
## [3.8.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
175
|
+
## [3.8.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.7.0...v3.8.0) (2024-09-11)
|
|
186
176
|
|
|
187
177
|
### What's Changed
|
|
188
178
|
- Added specific macOS Bluetooth permission instructions to Readme [#1026](https://github.com/OpenWonderLabs/homebridge-switchbot/pull/1026), Thanks [@rSffsE](https://github.com/rSffsE)
|
|
@@ -196,7 +186,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
196
186
|
|
|
197
187
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.7.0...v3.8.0
|
|
198
188
|
|
|
199
|
-
## [3.7.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
189
|
+
## [3.7.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.6.0...v3.7.0) (2024-07-21)
|
|
200
190
|
|
|
201
191
|
### What's Changed
|
|
202
192
|
- Add Platform BLE Scanning
|
|
@@ -208,7 +198,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
208
198
|
|
|
209
199
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.6.0...v3.7.0
|
|
210
200
|
|
|
211
|
-
## [3.6.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
201
|
+
## [3.6.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.5.1...v3.6.0) (2024-07-06)
|
|
212
202
|
|
|
213
203
|
### What's Changed
|
|
214
204
|
- Add Humdifier as `meterType` for IR AirConditioner
|
|
@@ -219,7 +209,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
219
209
|
|
|
220
210
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.5.1...v3.6.0
|
|
221
211
|
|
|
222
|
-
## [3.5.1](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
212
|
+
## [3.5.1](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.5.0...v3.5.1) (2024-06-27)
|
|
223
213
|
|
|
224
214
|
### What's Changed
|
|
225
215
|
- Fixed issue `RangeError: Maximum call stack size exceeded` introduced in `v3.5.0`
|
|
@@ -229,7 +219,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
229
219
|
|
|
230
220
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.5.0...v3.5.1
|
|
231
221
|
|
|
232
|
-
## [3.5.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
222
|
+
## [3.5.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.4.0...v3.5.0) (2024-05-26)
|
|
233
223
|
|
|
234
224
|
### What's Changed
|
|
235
225
|
- Add Support for `Water Detector`
|
|
@@ -242,7 +232,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
242
232
|
|
|
243
233
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.4.0...v3.5.0
|
|
244
234
|
|
|
245
|
-
## [3.4.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
235
|
+
## [3.4.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.3.0...v3.4.0) (2024-02-11)
|
|
246
236
|
|
|
247
237
|
### What's Changed
|
|
248
238
|
- Add support for `Smart Lock Pro`
|
|
@@ -251,7 +241,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
251
241
|
|
|
252
242
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.3.0...v3.4.0
|
|
253
243
|
|
|
254
|
-
## [3.3.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
244
|
+
## [3.3.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.2.0...v3.3.0) (2024-02-09)
|
|
255
245
|
|
|
256
246
|
### What's Changed
|
|
257
247
|
- Add config that allows you to set `cool` and `heat`: `min` & `max`
|
|
@@ -262,7 +252,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
262
252
|
|
|
263
253
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.2.0...v3.3.0
|
|
264
254
|
|
|
265
|
-
## [3.2.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
255
|
+
## [3.2.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.1.3...v3.2.0) (2024-02-06)
|
|
266
256
|
|
|
267
257
|
### What's Changed
|
|
268
258
|
- Upgrade to latest node-switchbot with is now a Typescript ES-Module.
|
|
@@ -270,7 +260,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
270
260
|
|
|
271
261
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.1.3...v3.2.0
|
|
272
262
|
|
|
273
|
-
## [3.1.3](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
263
|
+
## [3.1.3](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.1.2...v3.1.3) (2024-02-06)
|
|
274
264
|
|
|
275
265
|
### What's Changed
|
|
276
266
|
- Adjust noble and node-switchbot import and pass noble as object to the node-switchbot.
|
|
@@ -278,7 +268,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
278
268
|
|
|
279
269
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.1.2...v3.1.3
|
|
280
270
|
|
|
281
|
-
## [3.1.2](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
271
|
+
## [3.1.2](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.1.1...v3.1.2) (2024-02-05)
|
|
282
272
|
|
|
283
273
|
### What's Changed
|
|
284
274
|
- Fixed node-switchbot import issue.
|
|
@@ -286,7 +276,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
286
276
|
|
|
287
277
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.1.1...v3.1.2
|
|
288
278
|
|
|
289
|
-
## [3.1.1](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
279
|
+
## [3.1.1](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.1.0...v3.1.1) (2024-02-05)
|
|
290
280
|
|
|
291
281
|
### What's Changed
|
|
292
282
|
- Fixed BLE connection [#907](https://github.com/OpenWonderLabs/homebridge-switchbot/pull/907), Thanks [@dnicolson](https://github.com/dnicolson)
|
|
@@ -298,7 +288,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
298
288
|
|
|
299
289
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.1.0...v3.1.1
|
|
300
290
|
|
|
301
|
-
## [3.1.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
291
|
+
## [3.1.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.0.0...v3.1.0) (2024-02-02)
|
|
302
292
|
|
|
303
293
|
### What's Changed
|
|
304
294
|
- Offical support for [Curtain 3](https://www.switch-bot.com/pages/switchbot-curtain-3), `deviceType`: `Curtain3`.
|
|
@@ -307,7 +297,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
307
297
|
|
|
308
298
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.0.0...v3.1.0
|
|
309
299
|
|
|
310
|
-
## [3.0.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
300
|
+
## [3.0.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.14.0...v3.0.0) (2024-01-31)
|
|
311
301
|
|
|
312
302
|
### What's Changed
|
|
313
303
|
|
|
@@ -316,7 +306,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
316
306
|
|
|
317
307
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.14.0...v3.0.0
|
|
318
308
|
|
|
319
|
-
## [2.14.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
309
|
+
## [2.14.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.13.2...v2.14.0) (2024-01-06)
|
|
320
310
|
|
|
321
311
|
### What's Changed
|
|
322
312
|
|
|
@@ -325,7 +315,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
325
315
|
|
|
326
316
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.13.2...v2.14.0
|
|
327
317
|
|
|
328
|
-
## [2.13.2](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
318
|
+
## [2.13.2](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.13.1...v2.13.2) (2024-01-05)
|
|
329
319
|
|
|
330
320
|
### What's Changed
|
|
331
321
|
|
|
@@ -333,7 +323,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
333
323
|
|
|
334
324
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.13.1...v2.13.2
|
|
335
325
|
|
|
336
|
-
## [2.13.1](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
326
|
+
## [2.13.1](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.13.0...v2.13.1) (2023-12-15)
|
|
337
327
|
|
|
338
328
|
### What's Changed
|
|
339
329
|
|
|
@@ -341,7 +331,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
341
331
|
|
|
342
332
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.13.0...v2.13.1
|
|
343
333
|
|
|
344
|
-
## [2.13.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
334
|
+
## [2.13.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.12.1...v2.13.0) (2023-12-04)
|
|
345
335
|
|
|
346
336
|
### What's Changed
|
|
347
337
|
|
|
@@ -350,7 +340,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
350
340
|
|
|
351
341
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.12.1...v2.13.0
|
|
352
342
|
|
|
353
|
-
## [2.12.1](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
343
|
+
## [2.12.1](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.12.0...v2.12.1) (2023-11-26)
|
|
354
344
|
|
|
355
345
|
### What's Changed
|
|
356
346
|
|
|
@@ -358,7 +348,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
358
348
|
|
|
359
349
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.12.0...v2.12.1
|
|
360
350
|
|
|
361
|
-
## [2.12.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
351
|
+
## [2.12.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.11.0...v2.12.0) (2023-11-17)
|
|
362
352
|
|
|
363
353
|
### What's Changed
|
|
364
354
|
|
|
@@ -368,7 +358,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
368
358
|
|
|
369
359
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.11.0...v2.12.0
|
|
370
360
|
|
|
371
|
-
## [2.11.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
361
|
+
## [2.11.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.10.1...v2.11.0) (2023-11-07)
|
|
372
362
|
|
|
373
363
|
### What's Changed
|
|
374
364
|
|
|
@@ -377,7 +367,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
377
367
|
|
|
378
368
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.10.1...v2.11.0
|
|
379
369
|
|
|
380
|
-
## [2.10.1](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
370
|
+
## [2.10.1](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.10.0...v2.10.1) (2023-11-01)
|
|
381
371
|
|
|
382
372
|
### What's Changed
|
|
383
373
|
|
|
@@ -386,7 +376,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
386
376
|
|
|
387
377
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.10.0...v2.10.1
|
|
388
378
|
|
|
389
|
-
## [2.10.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
379
|
+
## [2.10.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.9.2...v2.10.0) (2023-10-31)
|
|
390
380
|
|
|
391
381
|
### What's Changed
|
|
392
382
|
|
|
@@ -395,7 +385,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
395
385
|
|
|
396
386
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.9.2...v2.10.0
|
|
397
387
|
|
|
398
|
-
## [2.9.2](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
388
|
+
## [2.9.2](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.9.1...v2.9.2) (2023-10-26)
|
|
399
389
|
|
|
400
390
|
### What's Changed
|
|
401
391
|
|
|
@@ -403,7 +393,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
403
393
|
|
|
404
394
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.9.1...v2.9.2
|
|
405
395
|
|
|
406
|
-
## [2.9.1](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
396
|
+
## [2.9.1](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.9.0...v2.9.1) (2023-10-14)
|
|
407
397
|
|
|
408
398
|
### What's Changed
|
|
409
399
|
|
|
@@ -412,7 +402,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
412
402
|
|
|
413
403
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.9.0...v2.9.1
|
|
414
404
|
|
|
415
|
-
## [2.9.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
405
|
+
## [2.9.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.8.2...v2.9.0) (2023-09-16)
|
|
416
406
|
|
|
417
407
|
### What's Changed
|
|
418
408
|
|
|
@@ -421,7 +411,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
421
411
|
|
|
422
412
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.8.2...v2.9.0
|
|
423
413
|
|
|
424
|
-
## [2.8.2](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
414
|
+
## [2.8.2](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.8.1...v2.8.2) (2023-08-27)
|
|
425
415
|
|
|
426
416
|
### What's Changed
|
|
427
417
|
|
|
@@ -431,7 +421,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
431
421
|
|
|
432
422
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.8.1...v2.8.2
|
|
433
423
|
|
|
434
|
-
## [2.8.1](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
424
|
+
## [2.8.1](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.8.0...v2.8.1) (2023-08-22)
|
|
435
425
|
|
|
436
426
|
### What's Changed
|
|
437
427
|
|
|
@@ -440,7 +430,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
440
430
|
|
|
441
431
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.8.0...v2.8.1
|
|
442
432
|
|
|
443
|
-
## [2.8.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
433
|
+
## [2.8.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.7.1...v2.8.0) (2023-08-19)
|
|
444
434
|
|
|
445
435
|
### What's Changed
|
|
446
436
|
|
|
@@ -452,7 +442,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
452
442
|
|
|
453
443
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.7.1...v2.8.0
|
|
454
444
|
|
|
455
|
-
## [2.7.1](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
445
|
+
## [2.7.1](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.7.0...v2.7.1) (2023-07-29)
|
|
456
446
|
|
|
457
447
|
### What's Changed
|
|
458
448
|
|
|
@@ -462,7 +452,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
462
452
|
|
|
463
453
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.7.0...v2.7.1
|
|
464
454
|
|
|
465
|
-
## [2.7.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
455
|
+
## [2.7.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.6.2...v2.7.0) (2023-07-25)
|
|
466
456
|
|
|
467
457
|
### What's Changed
|
|
468
458
|
|
|
@@ -473,7 +463,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
473
463
|
|
|
474
464
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.6.2...v2.7.0
|
|
475
465
|
|
|
476
|
-
## [2.6.2](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
466
|
+
## [2.6.2](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.6.1...v2.6.2) (2023-04-17)
|
|
477
467
|
|
|
478
468
|
### What's Changed
|
|
479
469
|
|
|
@@ -482,7 +472,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
482
472
|
|
|
483
473
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.6.1...v2.6.2
|
|
484
474
|
|
|
485
|
-
## [2.6.1](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
475
|
+
## [2.6.1](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.6.0...v2.6.1) (2023-04-15)
|
|
486
476
|
|
|
487
477
|
### What's Changed
|
|
488
478
|
|
|
@@ -490,7 +480,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
490
480
|
|
|
491
481
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.6.0...v2.6.1
|
|
492
482
|
|
|
493
|
-
## [2.6.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
483
|
+
## [2.6.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.5.3...v2.6.0) (2023-04-15)
|
|
494
484
|
|
|
495
485
|
### What's Changed
|
|
496
486
|
|
|
@@ -499,7 +489,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
499
489
|
|
|
500
490
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.5.3...v2.6.0
|
|
501
491
|
|
|
502
|
-
## [2.5.3](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
492
|
+
## [2.5.3](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.5.2...v2.5.3) (2023-04-08)
|
|
503
493
|
|
|
504
494
|
### What's Changed
|
|
505
495
|
|
|
@@ -513,7 +503,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
513
503
|
|
|
514
504
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.5.2...v2.5.3
|
|
515
505
|
|
|
516
|
-
## [2.5.2](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
506
|
+
## [2.5.2](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.5.1...v2.5.2) (2023-02-10)
|
|
517
507
|
|
|
518
508
|
### What's Changed
|
|
519
509
|
|
|
@@ -527,7 +517,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
527
517
|
|
|
528
518
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.5.1...v2.5.2
|
|
529
519
|
|
|
530
|
-
## [2.5.1](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
520
|
+
## [2.5.1](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.5.0...v2.5.1) (2023-01-28)
|
|
531
521
|
|
|
532
522
|
### What's Changed
|
|
533
523
|
|
|
@@ -535,7 +525,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
535
525
|
|
|
536
526
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.5.0...v2.5.1
|
|
537
527
|
|
|
538
|
-
## [2.5.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
528
|
+
## [2.5.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.4.0...v2.5.0) (2023-01-28)
|
|
539
529
|
|
|
540
530
|
### What's Changed
|
|
541
531
|
|
|
@@ -547,7 +537,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
547
537
|
|
|
548
538
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.4.0...v2.5.0
|
|
549
539
|
|
|
550
|
-
## [2.4.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
540
|
+
## [2.4.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.3.2...v2.4.0) (2022-12-27)
|
|
551
541
|
|
|
552
542
|
### What's Changed
|
|
553
543
|
|
|
@@ -560,7 +550,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
560
550
|
|
|
561
551
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.3.2...v2.4.0
|
|
562
552
|
|
|
563
|
-
## [2.3.2](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
553
|
+
## [2.3.2](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.3.1...v2.3.2) (2022-12-16)
|
|
564
554
|
|
|
565
555
|
### What's Changed
|
|
566
556
|
|
|
@@ -568,7 +558,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
568
558
|
|
|
569
559
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.3.1...v2.3.2
|
|
570
560
|
|
|
571
|
-
## [2.3.1](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
561
|
+
## [2.3.1](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.3.0...v2.3.1) (2022-12-11)
|
|
572
562
|
|
|
573
563
|
### What's Changed
|
|
574
564
|
|
|
@@ -577,7 +567,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
577
567
|
|
|
578
568
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.3.0...v2.3.1
|
|
579
569
|
|
|
580
|
-
## [2.3.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
570
|
+
## [2.3.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.2.2...v2.3.0) (2022-12-08)
|
|
581
571
|
|
|
582
572
|
### What's Changed
|
|
583
573
|
|
|
@@ -589,7 +579,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
589
579
|
|
|
590
580
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.2.2...v2.3.0
|
|
591
581
|
|
|
592
|
-
## [2.2.2](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
582
|
+
## [2.2.2](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.2.1...v2.2.2) (2022-10-22)
|
|
593
583
|
|
|
594
584
|
### What's Changed
|
|
595
585
|
|
|
@@ -602,7 +592,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
602
592
|
|
|
603
593
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.2.1...v2.2.2
|
|
604
594
|
|
|
605
|
-
## [2.2.1](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
595
|
+
## [2.2.1](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.2.0...v2.2.1) (2022-10-18)
|
|
606
596
|
|
|
607
597
|
### What's Changed
|
|
608
598
|
|
|
@@ -610,7 +600,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
610
600
|
|
|
611
601
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.2.0...v2.2.1
|
|
612
602
|
|
|
613
|
-
## [2.2.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
603
|
+
## [2.2.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.1.2...v2.2.0) (2022-10-18)
|
|
614
604
|
|
|
615
605
|
### What's Changed
|
|
616
606
|
|
|
@@ -621,7 +611,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
621
611
|
|
|
622
612
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.1.2...v2.2.0
|
|
623
613
|
|
|
624
|
-
## [2.1.2](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
614
|
+
## [2.1.2](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.1.1...v2.1.2) (2022-10-14)
|
|
625
615
|
|
|
626
616
|
### What's Changed
|
|
627
617
|
|
|
@@ -630,7 +620,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
630
620
|
|
|
631
621
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.1.1...v2.1.2
|
|
632
622
|
|
|
633
|
-
## [2.1.1](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
623
|
+
## [2.1.1](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.1.0...v2.1.1) (2022-10-14)
|
|
634
624
|
|
|
635
625
|
### What's Changed
|
|
636
626
|
|
|
@@ -642,7 +632,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
642
632
|
|
|
643
633
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.1.0...v2.1.1
|
|
644
634
|
|
|
645
|
-
## [2.1.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
635
|
+
## [2.1.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.0.0...v2.1.0) (2022-10-13)
|
|
646
636
|
|
|
647
637
|
### What's Changed
|
|
648
638
|
|
|
@@ -658,7 +648,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
658
648
|
|
|
659
649
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.0.0...v2.1.0
|
|
660
650
|
|
|
661
|
-
## [2.0.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
651
|
+
## [2.0.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.15.0...v2.0.0) (2022-10-12)
|
|
662
652
|
|
|
663
653
|
### What's Changed
|
|
664
654
|
|
|
@@ -677,7 +667,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
677
667
|
|
|
678
668
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.15.0...v2.0.0
|
|
679
669
|
|
|
680
|
-
## [1.15.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
670
|
+
## [1.15.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.14.2...v1.15.0) (2022-08-27)
|
|
681
671
|
|
|
682
672
|
### What's Changed
|
|
683
673
|
|
|
@@ -686,7 +676,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
686
676
|
|
|
687
677
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.14.2...v1.15.0
|
|
688
678
|
|
|
689
|
-
## [1.14.2](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
679
|
+
## [1.14.2](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.14.1...v1.14.2) (2022-08-20)
|
|
690
680
|
|
|
691
681
|
### What's Changed
|
|
692
682
|
|
|
@@ -694,7 +684,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
694
684
|
|
|
695
685
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.14.1...v1.14.2
|
|
696
686
|
|
|
697
|
-
## [1.14.1](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
687
|
+
## [1.14.1](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.14.0...v1.14.1) (2022-06-28)
|
|
698
688
|
|
|
699
689
|
### What's Changed
|
|
700
690
|
|
|
@@ -703,7 +693,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
703
693
|
|
|
704
694
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.14.0...v1.14.1
|
|
705
695
|
|
|
706
|
-
## [1.14.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
696
|
+
## [1.14.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.13.0...v1.14.0) (2022-06-25)
|
|
707
697
|
|
|
708
698
|
### What's Changed
|
|
709
699
|
|
|
@@ -712,7 +702,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
712
702
|
|
|
713
703
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.13.0...v1.14.0
|
|
714
704
|
|
|
715
|
-
## [1.13.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
705
|
+
## [1.13.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.12.8...v1.13.0) (2022-05-04)
|
|
716
706
|
|
|
717
707
|
### What's Changed
|
|
718
708
|
|
|
@@ -726,7 +716,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
726
716
|
|
|
727
717
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.12.8...v1.13.0
|
|
728
718
|
|
|
729
|
-
## [1.12.8](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
719
|
+
## [1.12.8](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.12.7...v1.12.8) (2022-03-19)
|
|
730
720
|
|
|
731
721
|
### What's Changed
|
|
732
722
|
|
|
@@ -734,7 +724,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
734
724
|
|
|
735
725
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.12.7...v1.12.8
|
|
736
726
|
|
|
737
|
-
## [1.12.7](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
727
|
+
## [1.12.7](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.12.6...v1.12.7) (2022-03-07)
|
|
738
728
|
|
|
739
729
|
### What's Changed
|
|
740
730
|
|
|
@@ -746,7 +736,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
746
736
|
|
|
747
737
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.12.6...v1.12.7
|
|
748
738
|
|
|
749
|
-
## [1.12.6](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
739
|
+
## [1.12.6](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.12.5...v1.12.6) (2022-03-04)
|
|
750
740
|
|
|
751
741
|
### What's Changed
|
|
752
742
|
|
|
@@ -755,7 +745,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
755
745
|
|
|
756
746
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.12.5...v1.12.6
|
|
757
747
|
|
|
758
|
-
## [1.12.5](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
748
|
+
## [1.12.5](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.12.4...v1.12.5) (2022-02-15)
|
|
759
749
|
|
|
760
750
|
### What's Changed
|
|
761
751
|
|
|
@@ -763,7 +753,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
763
753
|
|
|
764
754
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.12.4...v1.12.5
|
|
765
755
|
|
|
766
|
-
## [1.12.4](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
756
|
+
## [1.12.4](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.12.3...v1.12.4) (2022-02-12)
|
|
767
757
|
|
|
768
758
|
### What's Changed
|
|
769
759
|
|
|
@@ -772,7 +762,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
772
762
|
|
|
773
763
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.12.3...v1.12.4
|
|
774
764
|
|
|
775
|
-
## [1.12.3](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
765
|
+
## [1.12.3](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.12.2...v1.12.3) (2022-02-05)
|
|
776
766
|
|
|
777
767
|
### What's Changed
|
|
778
768
|
|
|
@@ -780,7 +770,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
780
770
|
|
|
781
771
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.12.2...v1.12.3
|
|
782
772
|
|
|
783
|
-
## [1.12.2](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
773
|
+
## [1.12.2](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.12.1...v1.12.2) (2022-02-02)
|
|
784
774
|
|
|
785
775
|
### What's Changed
|
|
786
776
|
|
|
@@ -788,7 +778,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
788
778
|
|
|
789
779
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.12.1...v1.12.2
|
|
790
780
|
|
|
791
|
-
## [1.12.1](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
781
|
+
## [1.12.1](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.12.0...v1.12.1) (2022-02-01)
|
|
792
782
|
|
|
793
783
|
### What's Changed
|
|
794
784
|
|
|
@@ -796,7 +786,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
796
786
|
|
|
797
787
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.12.0...v1.12.1
|
|
798
788
|
|
|
799
|
-
## [1.12.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
789
|
+
## [1.12.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.11.2...v1.12.0) (2022-01-29)
|
|
800
790
|
|
|
801
791
|
### What's Changed
|
|
802
792
|
|
|
@@ -804,7 +794,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
804
794
|
|
|
805
795
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.11.2...v1.12.0
|
|
806
796
|
|
|
807
|
-
## [1.11.2](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
797
|
+
## [1.11.2](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.11.1...v1.11.2) (2022-01-29)
|
|
808
798
|
|
|
809
799
|
### What's Changed
|
|
810
800
|
|
|
@@ -812,7 +802,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
812
802
|
|
|
813
803
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.11.1...v1.11.2
|
|
814
804
|
|
|
815
|
-
## [1.11.1](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
805
|
+
## [1.11.1](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.11.0...v1.11.1) (2022-01-29)
|
|
816
806
|
|
|
817
807
|
### What's Changed
|
|
818
808
|
|
|
@@ -823,7 +813,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
823
813
|
|
|
824
814
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.11.0...v1.11.1
|
|
825
815
|
|
|
826
|
-
## [1.11.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
816
|
+
## [1.11.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.10.1...v1.11.0) (2022-01-29)
|
|
827
817
|
|
|
828
818
|
### What's Changed
|
|
829
819
|
|
|
@@ -838,7 +828,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
838
828
|
|
|
839
829
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.10.1...v1.11.0
|
|
840
830
|
|
|
841
|
-
## [1.10.1](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
831
|
+
## [1.10.1](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.10.0...v1.10.1) (2022-01-26)
|
|
842
832
|
|
|
843
833
|
### What's Changed
|
|
844
834
|
|
|
@@ -847,7 +837,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
847
837
|
|
|
848
838
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.10.0...v1.10.1
|
|
849
839
|
|
|
850
|
-
## [1.10.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
840
|
+
## [1.10.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.9.0...v1.10.0) (2022-01-21)
|
|
851
841
|
|
|
852
842
|
### What's Changed
|
|
853
843
|
|
|
@@ -856,7 +846,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
856
846
|
|
|
857
847
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.9.0...v1.10.0
|
|
858
848
|
|
|
859
|
-
## [1.9.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
849
|
+
## [1.9.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.8.2...v1.9.0) (2022-01-20)
|
|
860
850
|
|
|
861
851
|
### What's Changed
|
|
862
852
|
|
|
@@ -865,7 +855,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
865
855
|
|
|
866
856
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.8.2...v1.9.0
|
|
867
857
|
|
|
868
|
-
## [1.8.2](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
858
|
+
## [1.8.2](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.8.1...v1.8.2) (2022-01-15)
|
|
869
859
|
|
|
870
860
|
### What's Changed
|
|
871
861
|
|
|
@@ -873,7 +863,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
873
863
|
|
|
874
864
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.8.1...v1.8.2
|
|
875
865
|
|
|
876
|
-
## [1.8.1](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
866
|
+
## [1.8.1](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.8.0...v1.8.1) (2022-01-15)
|
|
877
867
|
|
|
878
868
|
### What's Changed
|
|
879
869
|
|
|
@@ -881,7 +871,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
881
871
|
|
|
882
872
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.8.0...v1.8.1
|
|
883
873
|
|
|
884
|
-
## [1.8.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
874
|
+
## [1.8.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.7.0...v1.8.0) (2022-01-14)
|
|
885
875
|
|
|
886
876
|
### What's Changed
|
|
887
877
|
|
|
@@ -901,7 +891,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
901
891
|
|
|
902
892
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.7.0...v1.8.0
|
|
903
893
|
|
|
904
|
-
## [1.7.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
894
|
+
## [1.7.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.6.3...v1.7.0) (2022-01-05)
|
|
905
895
|
|
|
906
896
|
### What's Changed
|
|
907
897
|
|
|
@@ -915,7 +905,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
915
905
|
|
|
916
906
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.6.3...v1.7.0
|
|
917
907
|
|
|
918
|
-
## [1.6.3](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
908
|
+
## [1.6.3](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.6.2...v1.6.3) (2022-01-03)
|
|
919
909
|
|
|
920
910
|
### What's Changed
|
|
921
911
|
|
|
@@ -923,7 +913,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
923
913
|
|
|
924
914
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.6.2...v1.6.3
|
|
925
915
|
|
|
926
|
-
## [1.6.2](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
916
|
+
## [1.6.2](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.6.1...v1.6.2) (2022-01-03)
|
|
927
917
|
|
|
928
918
|
### What's Changed
|
|
929
919
|
|
|
@@ -934,7 +924,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
934
924
|
|
|
935
925
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.6.1...v1.6.2
|
|
936
926
|
|
|
937
|
-
## [1.6.1](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
927
|
+
## [1.6.1](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.6.0...v1.6.1) (2022-01-02)
|
|
938
928
|
|
|
939
929
|
### What's Changed
|
|
940
930
|
|
|
@@ -947,7 +937,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
947
937
|
|
|
948
938
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.6.0...v1.6.1
|
|
949
939
|
|
|
950
|
-
## [1.6.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
940
|
+
## [1.6.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.5.0...v1.6.0) (2021-12-31)
|
|
951
941
|
|
|
952
942
|
### What's Changed
|
|
953
943
|
|
|
@@ -960,7 +950,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
960
950
|
|
|
961
951
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.5.0...v1.6.0
|
|
962
952
|
|
|
963
|
-
## [1.5.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
953
|
+
## [1.5.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.4.0...v1.5.0) (2021-12-27)
|
|
964
954
|
|
|
965
955
|
### What's Changed
|
|
966
956
|
|
|
@@ -984,7 +974,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
984
974
|
|
|
985
975
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.4.0...v1.5.0
|
|
986
976
|
|
|
987
|
-
## [1.4.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
977
|
+
## [1.4.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.3.0...v1.4.0) (2021-12-15)
|
|
988
978
|
|
|
989
979
|
### What's Changed
|
|
990
980
|
|
|
@@ -996,7 +986,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
996
986
|
|
|
997
987
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.3.0...v1.4.0
|
|
998
988
|
|
|
999
|
-
## [1.3.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
989
|
+
## [1.3.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.2.5...v1.3.0) (2021-12-02)
|
|
1000
990
|
|
|
1001
991
|
### What's Changed
|
|
1002
992
|
|
|
@@ -1006,7 +996,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
1006
996
|
|
|
1007
997
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.2.5...v1.3.0
|
|
1008
998
|
|
|
1009
|
-
## [1.2.5](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
999
|
+
## [1.2.5](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.2.4...v1.2.5) (2021-11-25)
|
|
1010
1000
|
|
|
1011
1001
|
### What's Changed
|
|
1012
1002
|
|
|
@@ -1014,7 +1004,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
1014
1004
|
|
|
1015
1005
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.2.4...v1.2.5
|
|
1016
1006
|
|
|
1017
|
-
## [1.2.4](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
1007
|
+
## [1.2.4](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.2.3...v1.2.4) (2021-11-24)
|
|
1018
1008
|
|
|
1019
1009
|
### What's Changed
|
|
1020
1010
|
|
|
@@ -1022,7 +1012,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
1022
1012
|
|
|
1023
1013
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.2.3...v1.2.4
|
|
1024
1014
|
|
|
1025
|
-
## [1.2.3](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
1015
|
+
## [1.2.3](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.2.2...v1.2.3) (2021-11-24)
|
|
1026
1016
|
|
|
1027
1017
|
### What's Changed
|
|
1028
1018
|
|
|
@@ -1030,7 +1020,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
1030
1020
|
|
|
1031
1021
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.2.2...v1.2.3
|
|
1032
1022
|
|
|
1033
|
-
## [1.2.2](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
1023
|
+
## [1.2.2](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.2.1...v1.2.2) (2021-11-24)
|
|
1034
1024
|
|
|
1035
1025
|
### What's Changed
|
|
1036
1026
|
|
|
@@ -1039,7 +1029,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
1039
1029
|
|
|
1040
1030
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.2.1...v1.2.2
|
|
1041
1031
|
|
|
1042
|
-
## [1.2.1](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
1032
|
+
## [1.2.1](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.2.0...v1.2.1) (2021-11-24)
|
|
1043
1033
|
|
|
1044
1034
|
### What's Changed
|
|
1045
1035
|
|
|
@@ -1049,7 +1039,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
1049
1039
|
|
|
1050
1040
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.2.0...v1.2.1
|
|
1051
1041
|
|
|
1052
|
-
## [1.2.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
1042
|
+
## [1.2.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.1.0...v1.2.0) (2021-11-19)
|
|
1053
1043
|
|
|
1054
1044
|
### What's Changed
|
|
1055
1045
|
|
|
@@ -1064,7 +1054,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
1064
1054
|
|
|
1065
1055
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.1.0...v1.2.0
|
|
1066
1056
|
|
|
1067
|
-
## [1.1.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
1057
|
+
## [1.1.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.0.2...v1.1.0) (2021-11-16)
|
|
1068
1058
|
|
|
1069
1059
|
### What's Changed
|
|
1070
1060
|
|
|
@@ -1076,7 +1066,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
1076
1066
|
|
|
1077
1067
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.0.2...v1.1.0
|
|
1078
1068
|
|
|
1079
|
-
## [1.0.2](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
1069
|
+
## [1.0.2](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.0.1...v1.0.2) (2021-11-15)
|
|
1080
1070
|
|
|
1081
1071
|
### What's Changed
|
|
1082
1072
|
|
|
@@ -1085,7 +1075,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
1085
1075
|
|
|
1086
1076
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.0.1...v1.0.2
|
|
1087
1077
|
|
|
1088
|
-
## [1.0.1](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
1078
|
+
## [1.0.1](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.0.0...v1.0.1) (2021-11-14)
|
|
1089
1079
|
|
|
1090
1080
|
### What's Changed
|
|
1091
1081
|
|
|
@@ -1094,7 +1084,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
1094
1084
|
|
|
1095
1085
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v1.0.0...v1.0.1
|
|
1096
1086
|
|
|
1097
|
-
## [1.0.0](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
1087
|
+
## [1.0.0](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v0.1.1...v1.0.0) (2021-11-13)
|
|
1098
1088
|
|
|
1099
1089
|
### What's Changed
|
|
1100
1090
|
|
|
@@ -1106,7 +1096,7 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
1106
1096
|
|
|
1107
1097
|
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v0.1.1...v1.0.0
|
|
1108
1098
|
|
|
1109
|
-
## [0.1.1](https://github.com/OpenWonderLabs/homebridge-switchbot/
|
|
1099
|
+
## [0.1.1](https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v0.1.0...v0.1.1) (2021-09-11)
|
|
1110
1100
|
|
|
1111
1101
|
### What's Changed
|
|
1112
1102
|
|
|
@@ -1121,3 +1111,5 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
1121
1111
|
- Initial release of homebridge-switchbot.
|
|
1122
1112
|
- Adds Support for Motion & Contact Sensors
|
|
1123
1113
|
- Adds Water Level to Humidifier
|
|
1114
|
+
|
|
1115
|
+
**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/releases/tag/v0.1.0
|