Releases: raman325/ha-zoom-automation
Releases · raman325/ha-zoom-automation
v0.8.5
v0.8.4
- Adds auth as a dependency per https://developers.home-assistant.io/blog/2022/04/16/local-oauth2
v0.8.3
- Added support for Portugese translations (thanks @LeandroIssa !)
- Added more scenarios for triggering reauth (thanks @joshuaspence !)
v0.8.2 - Multi-account monitoring bug fix
Fixes a bug that prevented all accounts but the first one from being monitored
v0.8.1 - Bug fixes and preparation for 2021.12
Code cleanup and bug fix (#47) * Add guard for popping token * Fix some bugs
v0.8.0 - Breaking Change for Event based automations
This release introduces a breaking change to event based automations. In particular, the structure of the event data has changed. Previously, the event data used to look like this:
status:
event: <ZOOM_EVENT_NAME>
payload:
...
token: <VERIFICATION_TOKEN>
Now the event data looks like this:
event: <ZOOM_EVENT_NAME>
payload:
...
token: <VERIFICATION_TOKEN>
This change allows you to trigger on a specific zoom event name (previously, because the event name was under the status
key, the event would only trigger if you knew the payload content as well because partial matches only work for top level keys).
This change has no impact to users who just use the binary sensor for automations.