Update version to 4.2.0
This commit is contained in:
Родитель
53e5e9c8c6
Коммит
969f8c55f8
|
@ -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 = "4.1.1";
|
||||
public const string AnalyticsSDKVersion = "4.2.0";
|
||||
|
||||
public static void PrepareEventHandlers()
|
||||
{
|
||||
|
|
|
@ -12,7 +12,7 @@ namespace Microsoft.AppCenter.Unity
|
|||
private static bool _hasAttemptedToGetRuntimeVersion;
|
||||
|
||||
public const string Name = "appcenter.unity";
|
||||
public const string WrapperSdkVersion = "4.1.1";
|
||||
public const string WrapperSdkVersion = "4.2.0";
|
||||
|
||||
internal static string WrapperRuntimeVersion
|
||||
{
|
||||
|
|
|
@ -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 = "4.1.1";
|
||||
public const string CrashesSDKVersion = "4.2.0";
|
||||
private static bool _reportUnhandledExceptions = false;
|
||||
private static bool _enableErrorAttachmentsCallbacks = false;
|
||||
private static readonly object _objectLock = new object();
|
||||
|
|
|
@ -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 = "4.1.1";
|
||||
public const string DistributeSDKVersion = "4.2.0";
|
||||
|
||||
public static void PrepareEventHandlers()
|
||||
{
|
||||
|
|
22
CHANGELOG.md
22
CHANGELOG.md
|
@ -1,11 +1,29 @@
|
|||
# App Center SDK for Unity Change Log
|
||||
|
||||
## Version 4.2.0 (Under development)
|
||||
## Version 4.2.0
|
||||
|
||||
### AppCenter
|
||||
|
||||
* **[Feature]** Add a `AppCenter.IsNetworkRequestsAllowed` API to block any network requests without disabling the SDK.
|
||||
* **[Fix]** Fix removing `android:allowBackup` and `android:supportsRtl` from AndroidManifest.xml in appcenter-loader-release.aar, as these attributes will be unintentionally merged into the final AndroidManifest.xml in the app.
|
||||
* **[Fix]** Remove `android:allowBackup` and `android:supportsRtl` from `AndroidManifest.xml` in `appcenter-loader`, to prevent these attributes from merging into the final `AndroidManifest.xml` in a client app.
|
||||
|
||||
#### UWP
|
||||
|
||||
* **[Fix]** Fix infinite loop when old logs cannot be purged by a new one with a different channel name in a case when the storage is full.
|
||||
|
||||
### App Center Crashes
|
||||
|
||||
#### iOS
|
||||
|
||||
* **[Fix]** Merge the device information from the crash report with the SDK's device information in order to fix some time sensitive cases where the reported application information was incorrect.
|
||||
* **[Improvement]** Update PLCrashReporter to 1.9.0.
|
||||
|
||||
### App Center Distribute
|
||||
|
||||
#### Android
|
||||
|
||||
* **[Fix]** Fix crash during downloading a new release when `minifyEnabled` settings is true.
|
||||
* **[Fix]** Add a missing tag `android:exported` to the manifest required for Android 12.
|
||||
|
||||
___
|
||||
|
||||
|
|
27
RELEASE.md
27
RELEASE.md
|
@ -1,4 +1,29 @@
|
|||
## Version 4.1.1
|
||||
## Release 4.2.0
|
||||
|
||||
### AppCenter
|
||||
|
||||
* **[Feature]** Add a `AppCenter.IsNetworkRequestsAllowed` API to block any network requests without disabling the SDK.
|
||||
* **[Fix]** Remove `android:allowBackup` and `android:supportsRtl` from `AndroidManifest.xml` in `appcenter-loader`, to prevent these attributes from merging into the final `AndroidManifest.xml` in a client app.
|
||||
|
||||
#### UWP
|
||||
|
||||
* **[Fix]** Fix infinite loop when old logs cannot be purged by a new one with a different channel name in a case when the storage is full.
|
||||
|
||||
### App Center Crashes
|
||||
|
||||
#### iOS
|
||||
|
||||
* **[Fix]** Merge the device information from the crash report with the SDK's device information in order to fix some time sensitive cases where the reported application information was incorrect.
|
||||
* **[Improvement]** Update PLCrashReporter to 1.9.0.
|
||||
|
||||
### App Center Distribute
|
||||
|
||||
#### Android
|
||||
|
||||
* **[Fix]** Fix crash during downloading a new release when `minifyEnabled` settings is true.
|
||||
* **[Fix]** Add a missing tag `android:exported` to the manifest required for Android 12.
|
||||
|
||||
## Release 4.1.1
|
||||
|
||||
### AppCenter
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package name="AppCenter" version="4.1.1">
|
||||
<package name="AppCenter" version="4.2.0">
|
||||
<include>
|
||||
<!-- Editor related files -->
|
||||
<file path="Assets/AppCenter/Editor" />
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package name="AppCenterAnalytics" version="4.1.1" needsCore="true">
|
||||
<package name="AppCenterAnalytics" version="4.2.0" needsCore="true">
|
||||
<include>
|
||||
<!-- Shared files -->
|
||||
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Analytics/Shared" />
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package name="AppCenterCrashes" version="4.1.1" needsCore="true">
|
||||
<package name="AppCenterCrashes" version="4.2.0" needsCore="true">
|
||||
<include>
|
||||
<!-- Shared files -->
|
||||
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Crashes/Shared" />
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package name="AppCenterDistribute" version="4.1.1" needsCore="true">
|
||||
<package name="AppCenterDistribute" version="4.2.0" needsCore="true">
|
||||
<include>
|
||||
<!-- Shared files -->
|
||||
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Distribute/Shared" />
|
||||
|
|
|
@ -15,9 +15,9 @@ using System.Net;
|
|||
using System.Threading;
|
||||
|
||||
// Native SDK versions
|
||||
const string AndroidSdkVersion = "4.1.2-a5e370b7f";
|
||||
const string IosSdkVersion = "4.1.2-9+288f056ed1931629cb5d7b556b7fc036f3aec945";
|
||||
const string UwpSdkVersion = "4.2.1-r0013-f5814e7";
|
||||
const string AndroidSdkVersion = "4.2.0";
|
||||
const string IosSdkVersion = "4.2.0";
|
||||
const string UwpSdkVersion = "4.3.0";
|
||||
|
||||
// URLs for downloading binaries.
|
||||
/*
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
"type": "git",
|
||||
"git": {
|
||||
"repositoryUrl": "https://github.com/microsoft/appcenter-sdk-android.git",
|
||||
"commitHash": "f1045c7205d967a14abb09e46acd30592d58706f"
|
||||
"commitHash": "a94e99cc81197038fcc9e479515171a83bb6a94d"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -14,7 +14,7 @@
|
|||
"type": "git",
|
||||
"git": {
|
||||
"repositoryUrl": "https://github.com/microsoft/appcenter-sdk-apple.git",
|
||||
"commitHash": "013bffe628b49433d7bc334146a4ed8c507c0e32"
|
||||
"commitHash": "6d60d2361445e959b4fbb3a9d0dbae0e07eead1a"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -23,7 +23,7 @@
|
|||
"type": "git",
|
||||
"git": {
|
||||
"repositoryUrl": "https://github.com/microsoft/appcenter-sdk-dotnet.git",
|
||||
"commitHash": "eba48bf688bc347b0284a32f25cf780fbd22276e"
|
||||
"commitHash": "14125165360bebe9995c445331469c1cadc6de2b"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
Загрузка…
Ссылка в новой задаче