Releases: jcwillox/hass-auto-backup
Releases · jcwillox/hass-auto-backup
0.7.3
0.7.2
0.7.1
0.7.0
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
0.5.2
0.5.1
0.5.0
0.4.1
0.4.0
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"]}
- Event:
Fixes
- Provide more specific error messages.
- Run the snapshot as a job instead of inside the service call.