You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: onedrive-backup/CHANGELOG.md
+9
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,12 @@
1
+
## v2.3.1 [March 19th 2024]
2
+
### ❗Important
3
+
Upgrade to Version 2.3 included updates to authentication libraries which caused some connection resets with OneDrive. Please make sure that you have a working connection post upgrade. For troubleshooting please refer to [this link]("https://github.com/lavinir/hassio-onedrive-backup/issues/174")
4
+
### 🆕 Added
5
+
* Added more persistent notifications for alerting on errors and improved overall behavior of persistant notifications
6
+
### 🐞 Fixed
7
+
* Issue downloading a backup from OneDrive to HomeAssistant
await_hassIoClient.SendPersistentNotificationAsync("Failed deleting old backup from OneDrive. Check Addon logs for more details");
187
+
await_hassIoClient.SendPersistentNotificationAsync("Failed deleting old backup from OneDrive. Check Addon logs for more details",PersistantNotificationIds.OneDriveDelete);
189
188
}
190
189
}
191
190
}
@@ -218,19 +217,19 @@ public async Task PerformBackupsAsync()
await_hassIoClient.SendPersistentNotificationAsync("Error Deleting Local Backup. Check Addon logs for more details");
232
+
await_hassIoClient.SendPersistentNotificationAsync("Error Deleting Local Backup. Check Addon logs for more details",PersistantNotificationIds.LocalDelete);
234
233
}
235
234
}
236
235
}
@@ -239,6 +238,10 @@ public async Task PerformBackupsAsync()
await_hassIoClient.SendPersistentNotificationAsync("Failed creating local backup. Check Addon logs for more details");
332
+
await_hassIoClient.SendPersistentNotificationAsync("Failed creating local backup. Check Addon logs for more details",PersistantNotificationIds.BackupCreate);
330
333
}
331
334
}
332
335
else
@@ -354,7 +357,7 @@ public async Task<bool> UploadLocalBackupToOneDrive(Backup backup, Action<int?,
await_hassIoClient.SendPersistentNotificationAsync("Failed uploading backup to onedrive. Check Addon logs for more details");
379
+
await_hassIoClient.SendPersistentNotificationAsync("Failed uploading backup to onedrive. Check Addon logs for more details",PersistantNotificationIds.BackupUpload);
377
380
}
378
381
}
379
382
}
@@ -394,21 +397,21 @@ public async Task<bool> UploadLocalBackupToOneDrive(Backup backup, Action<int?,
await_hassIoClient.SendPersistentNotificationAsync("Unexpected Failure in OneDrive Backup Addon. Check Addon logs for more details",PersistantNotificationIds.Unexpected);
0 commit comments