This release is for the upcoming Home Assistant version 2021.9, in which all references to snapshot
are being renamed to backup
, Auto Backup will follow this convention. This release doesn't contain any new features and is focused on renaming snapshot
-> backup
, and ensuring compatibility with the new release of HA.
Auto Backup will now require HA 2021.9 or newer to run.
🚨 Breaking Changes
Immediate breaking changes
- Sensor attributes renamed
monitored_snapshots
->monitored_backups
purgeable_snapshots
->purgeable_backups
Deprecated and will be removed with HA 2021.11
Warnings will be printed in your logs if you are still using any of these deprecated names.
- Services renamed
auto_backup.snapshot_full
->auto_backup.backup_full
auto_backup.snapshot_partial
->auto_backup.backup_partial
- Events renamed
auto_backup.snapshot_start
->auto_backup.backup_start
auto_backup.snapshot_successful
->auto_backup.backup_successful
auto_backup.snapshot_failed
->auto_backup.backup_failed
auto_backup.purged_snapshots
->auto_backup.purged_backups
- the event data was also renamed
"snapshots": ["SLUG"]}
->"backups": ["SLUG"]}
- the event data was also renamed
- Service option renamed
backup_path
todownload_path
as this makes it much clearer what it actually does (b359263)