Skip to content

Releases: raman325/ha-zoom-automation

v0.8.5

30 May 02:16
08feba2
Compare
Choose a tag to compare
  • Switch from constants to enums

v0.8.4

08 May 19:01
12eae76
Compare
Choose a tag to compare

v0.8.3

08 Mar 05:47
ab97699
Compare
Choose a tag to compare
  • Added support for Portugese translations (thanks @LeandroIssa !)
  • Added more scenarios for triggering reauth (thanks @joshuaspence !)

v0.8.2 - Multi-account monitoring bug fix

03 Jan 04:05
b2c1dfb
Compare
Choose a tag to compare

Fixes a bug that prevented all accounts but the first one from being monitored

v0.8.1 - Bug fixes and preparation for 2021.12

04 Dec 00:06
001edd1
Compare
Choose a tag to compare
Code cleanup and bug fix (#47)

* Add guard for popping token

* Fix some bugs

v0.8.0 - Breaking Change for Event based automations

26 Nov 17:51
Compare
Choose a tag to compare

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.

v0.7.5

30 Apr 19:58
Compare
Choose a tag to compare
  • Added IOT class to manifest

v0.7.4

15 Apr 17:38
f2b06fd
Compare
Choose a tag to compare

Nothing major changing in this release, just added some additional logging to help with debugging.

v0.7.3

05 Mar 06:43
Compare
Choose a tag to compare

The integration will require reauthorization when your token is no longer valid and can't be refreshed. This will allow you to fix the integration without having to delete and re-add it.

v0.7.2

20 Feb 23:06
8847fab
Compare
Choose a tag to compare

There was a bug that sometimes occurred if we received an unauthorized event at our Zoom endpoint. This fix should resolve that