diff --git a/Assets/AppCenter/Plugins/AppCenterSDK/Analytics/Shared/Analytics.cs b/Assets/AppCenter/Plugins/AppCenterSDK/Analytics/Shared/Analytics.cs index 40b2ce99..f1cfa470 100755 --- a/Assets/AppCenter/Plugins/AppCenterSDK/Analytics/Shared/Analytics.cs +++ b/Assets/AppCenter/Plugins/AppCenterSDK/Analytics/Shared/Analytics.cs @@ -1,4 +1,4 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. +// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. using System; @@ -16,7 +16,7 @@ namespace Microsoft.AppCenter.Unity.Analytics public class Analytics { // Used by App Center Unity Editor Extensions: https://github.com/Microsoft/AppCenter-SDK-Unity-Extension - public const string AnalyticsSDKVersion = "3.1.0"; + public const string AnalyticsSDKVersion = "3.2.0"; public static void PrepareEventHandlers() { diff --git a/Assets/AppCenter/Plugins/AppCenterSDK/Core/Shared/WrapperSdk.cs b/Assets/AppCenter/Plugins/AppCenterSDK/Core/Shared/WrapperSdk.cs index fe1bb7b0..a85207f5 100644 --- a/Assets/AppCenter/Plugins/AppCenterSDK/Core/Shared/WrapperSdk.cs +++ b/Assets/AppCenter/Plugins/AppCenterSDK/Core/Shared/WrapperSdk.cs @@ -12,7 +12,7 @@ namespace Microsoft.AppCenter.Unity private static bool _hasAttemptedToGetRuntimeVersion; public const string Name = "appcenter.unity"; - public const string WrapperSdkVersion = "3.1.0"; + public const string WrapperSdkVersion = "3.2.0"; internal static string WrapperRuntimeVersion { diff --git a/Assets/AppCenter/Plugins/AppCenterSDK/Crashes/Shared/Crashes.cs b/Assets/AppCenter/Plugins/AppCenterSDK/Crashes/Shared/Crashes.cs index de78bb9e..8b9ffaf1 100644 --- a/Assets/AppCenter/Plugins/AppCenterSDK/Crashes/Shared/Crashes.cs +++ b/Assets/AppCenter/Plugins/AppCenterSDK/Crashes/Shared/Crashes.cs @@ -20,7 +20,7 @@ namespace Microsoft.AppCenter.Unity.Crashes public class Crashes { // Used by App Center Unity Editor Extensions: https://github.com/Microsoft/AppCenter-SDK-Unity-Extension - public const string CrashesSDKVersion = "3.1.0"; + public const string CrashesSDKVersion = "3.2.0"; private static bool _reportUnhandledExceptions = false; private static bool _enableErrorAttachmentsCallbacks = false; private static readonly object _objectLock = new object(); diff --git a/Assets/AppCenter/Plugins/AppCenterSDK/Distribute/Shared/Distribute.cs b/Assets/AppCenter/Plugins/AppCenterSDK/Distribute/Shared/Distribute.cs index 3cb147de..42690b04 100644 --- a/Assets/AppCenter/Plugins/AppCenterSDK/Distribute/Shared/Distribute.cs +++ b/Assets/AppCenter/Plugins/AppCenterSDK/Distribute/Shared/Distribute.cs @@ -16,7 +16,7 @@ namespace Microsoft.AppCenter.Unity.Distribute public class Distribute { // Used by App Center Unity Editor Extensions: https://github.com/Microsoft/AppCenter-SDK-Unity-Extension - public const string DistributeSDKVersion = "3.1.0"; + public const string DistributeSDKVersion = "3.2.0"; public static void PrepareEventHandlers() { diff --git a/Assets/AppCenter/Plugins/AppCenterSDK/Push/Shared/Push.cs b/Assets/AppCenter/Plugins/AppCenterSDK/Push/Shared/Push.cs index 91ab20dd..6fd46123 100644 --- a/Assets/AppCenter/Plugins/AppCenterSDK/Push/Shared/Push.cs +++ b/Assets/AppCenter/Plugins/AppCenterSDK/Push/Shared/Push.cs @@ -16,7 +16,7 @@ namespace Microsoft.AppCenter.Unity.Push public class Push { // Used by App Center Unity Editor Extensions: https://github.com/Microsoft/AppCenter-SDK-Unity-Extension - public const string PushSDKVersion = "3.1.0"; + public const string PushSDKVersion = "3.2.0"; private static readonly object _lockObject = new object(); private static bool _needsReplay = true; private static bool IsAppCenterStarted; diff --git a/CHANGELOG.md b/CHANGELOG.md index a24a482a..606fd2c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # App Center SDK for Unity Change Log -## Release 3.1.1 (Under development) +## Release 3.2.0 ### App Center @@ -10,6 +10,30 @@ * **[Fix]** Add missing system dependencies that aren't implicitly included when `APPCENTER_DONT_USE_NATIVE_STARTER` flag is used. +#### UWP + +* **[Fix]** Fix retry sending logs after timeout exception. + +### App Center Crashes + +* **[Fix]** Remove the multiple attachments warning as that is now supported by the portal. + +#### Android + +* **[Fix]** Change minidump filter to use file extension instead of name. +* **[Fix]** Fix removing minidump files when the sending crash report was discarded. + +#### iOS + +* **[Improvement]** Update PLCrashReporter to 1.5.1. + +### App Center Distribute + +#### Android + +* **[Feature]** Automatically check for update when application switches from background to foreground (unless automatic checks are disabled). +* **[Fix]** Fix checking for updates after disabling the Distribute module while downloading the release. + ___ ## Release 3.1.0 diff --git a/RELEASE.md b/RELEASE.md index f735aa1c..503d70a0 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,3 +1,37 @@ +## Release 3.2.0 + +### App Center + +* **[Fix]** Fix SDK doesn't work without `Distribute` package. + +#### iOS + +* **[Fix]** Add missing system dependencies that aren't implicitly included when `APPCENTER_DONT_USE_NATIVE_STARTER` flag is used. + +#### UWP + +* **[Fix]** Fix retry sending logs after timeout exception. + +### App Center Crashes + +* **[Fix]** Remove the multiple attachments warning as that is now supported by the portal. + +#### Android + +* **[Fix]** Change minidump filter to use file extension instead of name. +* **[Fix]** Fix removing minidump files when the sending crash report was discarded. + +#### iOS + +* **[Improvement]** Update PLCrashReporter to 1.5.1. + +### App Center Distribute + +#### Android + +* **[Feature]** Automatically check for update when application switches from background to foreground (unless automatic checks are disabled). +* **[Fix]** Fix checking for updates after disabling the Distribute module while downloading the release. + ## Release 3.1.0 ### App Center diff --git a/UnityPackageSpecs/AppCenter.unitypackagespec b/UnityPackageSpecs/AppCenter.unitypackagespec index 26de8281..73057511 100644 --- a/UnityPackageSpecs/AppCenter.unitypackagespec +++ b/UnityPackageSpecs/AppCenter.unitypackagespec @@ -1,5 +1,5 @@ - - + + diff --git a/UnityPackageSpecs/AppCenterAnalytics.unitypackagespec b/UnityPackageSpecs/AppCenterAnalytics.unitypackagespec index a28f3aec..8c519059 100644 --- a/UnityPackageSpecs/AppCenterAnalytics.unitypackagespec +++ b/UnityPackageSpecs/AppCenterAnalytics.unitypackagespec @@ -1,5 +1,5 @@ - - + + diff --git a/UnityPackageSpecs/AppCenterCrashes.unitypackagespec b/UnityPackageSpecs/AppCenterCrashes.unitypackagespec index ada6163e..76047aa3 100644 --- a/UnityPackageSpecs/AppCenterCrashes.unitypackagespec +++ b/UnityPackageSpecs/AppCenterCrashes.unitypackagespec @@ -1,5 +1,5 @@ - - + + diff --git a/UnityPackageSpecs/AppCenterDistribute.unitypackagespec b/UnityPackageSpecs/AppCenterDistribute.unitypackagespec index 5c2cd0ee..cae9d249 100644 --- a/UnityPackageSpecs/AppCenterDistribute.unitypackagespec +++ b/UnityPackageSpecs/AppCenterDistribute.unitypackagespec @@ -1,5 +1,5 @@ - - + + diff --git a/UnityPackageSpecs/AppCenterPush.unitypackagespec b/UnityPackageSpecs/AppCenterPush.unitypackagespec index 969febb7..914afd4e 100644 --- a/UnityPackageSpecs/AppCenterPush.unitypackagespec +++ b/UnityPackageSpecs/AppCenterPush.unitypackagespec @@ -1,5 +1,5 @@ - - + + diff --git a/build.cake b/build.cake index 6151ce29..1282f650 100644 --- a/build.cake +++ b/build.cake @@ -13,9 +13,9 @@ using System.Net; using System.Threading; // Native SDK versions -const string AndroidSdkVersion = "3.1.0"; -const string IosSdkVersion = "3.1.0"; -const string UwpSdkVersion = "3.1.0"; +const string AndroidSdkVersion = "3.2.1"; +const string IosSdkVersion = "3.1.1"; +const string UwpSdkVersion = "3.2.1"; // URLs for downloading binaries. /* diff --git a/cgmanifest.json b/cgmanifest.json index fc4ebdc7..e3e2a718 100644 --- a/cgmanifest.json +++ b/cgmanifest.json @@ -5,7 +5,7 @@ "type": "git", "git": { "repositoryUrl": "https://github.com/microsoft/appcenter-sdk-android.git", - "commitHash": "af4f0eecef83a0c6c00b26f9e12d215d0df21351" + "commitHash": "46937a914f945c7eebdc3d74acf2c91744357d0d" } } }, @@ -14,7 +14,7 @@ "type": "git", "git": { "repositoryUrl": "https://github.com/microsoft/appcenter-sdk-apple.git", - "commitHash": "68ef3d10a6e3f578d9f6a13ee65e0326b320f23c" + "commitHash": "9cda019f382e53844f369e168fd02ad457b11c07" } } }, @@ -23,7 +23,7 @@ "type": "git", "git": { "repositoryUrl": "https://github.com/microsoft/appcenter-sdk-dotnet.git", - "commitHash": "d045132db7cdce82e75d5ff8c17d3d4e9914af2c" + "commitHash": "b6355d44135ff6a9774a6bf0ebfb255937d6adeb" } } },