Skip to content

Releases: jcwillox/hass-auto-backup

0.7.3

03 Aug 14:03
Compare
Choose a tag to compare

0.7.2

04 Jun 08:44
Compare
Choose a tag to compare
  • Fix timezone for HA 2021.6 (aa53cd2) (closes #35)

0.7.1

02 May 01:50
Compare
Choose a tag to compare
  • Add iot_class to manifest (180158b)

0.7.0

04 Mar 01:17
ed3d97c
Compare
Choose a tag to compare

I've finally conquered Home Assistant's config flows and Auto Backup can now be set up via the UI. The YAML configuration method is now deprecated and your current config will be migrated to a UI configuration entry. This means that after updating and restarting Home Assistant you can remove the auto_backup entry from your configuration.yaml.

I've also added support for the fancy service schema's introduced in Home Assistant 2021.3.0.

Changes

0.6.0

31 Aug 12:41
Compare
Choose a tag to compare

0.5.2

07 May 11:03
Compare
Choose a tag to compare
  • Use chunked downloading of backups when using the backup_path parameter (fixes #17).

0.5.1

10 Apr 02:31
Compare
Choose a tag to compare
  • Fix slow setup.

0.5.0

18 Mar 00:08
Compare
Choose a tag to compare

Features

  • Adds a unique_id to Auto Backup sensor, the sensor can now be edited from the UI.

Fixes

  • Remove dependency on the hassio component (fixes #10), now compatible with 0.107.0.
  • Improve logging.
  • Snapshot passwords are automatically removed from the debug logs.

0.4.1

05 Jan 01:51
Compare
Choose a tag to compare
  • Set aiohttp default timeout to None (should fix #6).

0.4.0

04 Jan 06:10
Compare
Choose a tag to compare

Auto Backup Sensor and Events

Features

  • Adds sensor.auto_backup that will show :

    • If there is a backup in progress (note: currently only one backup can be running at a time).
    • The number of backups being monitored for deletion.
    • The number of backups that will be deleted upon the next purge.
  • Adds events (see the README for an example automation):

    • Event: auto_backup.snapshot_successful, data: {"name": "NAME", "slug": "SLUG"}
    • Event: auto_backup.snapshot_failed, data: {"name": "NAME", "error": "ERROR"}
    • Event: auto_backup.purged_snapshots, data: {"snapshots": ["SLUG"]}

Fixes

  • Provide more specific error messages.
  • Run the snapshot as a job instead of inside the service call.