diff --git a/README.md b/README.md index e1cdffdb..192e36d6 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ - [Changelog](http://www.hockeyapp.net/help/sdk/ios/4.1.0-beta.2/docs/docs/Changelog.html) -NOTE: With the release of HockeySDK 4.0.0-alpha.1 a bug was introduced which lead to the exclusion of the Application Support folder from iCloud and iTunes backups. +**NOTE:** With the release of HockeySDK 4.0.0-alpha.1 a bug was introduced which lead to the exclusion of the Application Support folder from iCloud and iTunes backups. If you have been using one of the affected versions (4.0.0-alpha.2, Version 4.0.0-beta.1, 4.0.0, 4.1.0-alpha.1, 4.1.0-alpha.2, or Version 4.1.0-beta.1), please make sure to update to at least version 4.0.1 or 4.1.0-beta.2 of our SDK as soon as you can. diff --git a/docs/Changelog-template.md b/docs/Changelog-template.md index 28cd83fd..0e025269 100644 --- a/docs/Changelog-template.md +++ b/docs/Changelog-template.md @@ -1,9 +1,23 @@ -## Develop +## 4.1.0-beta.2 + +- [BUGFIX] Fixes an issue where the whole app's Application Support directory was accidentally excluded from backups. +This SDK release explicitly includes the Application Support directory into backups. If you want to opt-out of this fix and keep the Application Directory's backup flag untouched, add the following line above the SDK setup code: + + - Objective-C: + ```objectivec + [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"BITExcludeApplicationSupportFromBackup"]; + ``` + + - Swift: + ```swift + NSUserDefaults.standardUserDefaults().setBool(true, forKey: "BITExcludeApplicationSupportFromBackup") + ``` - [NEW] Add more fine-grained log levels - [NEW] Add ability to connect existing logging framework - [BUGFIX] Make CrashManager property `serverURL` individual setable - [BUGFIX] Properly dispatch `dismissViewController` call to main queue +- [BUGFIX] Fixes an issue that prevented preparedItemsForFeedbackManager: delegate method from working ## Version 4.1.0-beta.1