Skip to content

Commit a9afceb

Browse files
Merge pull request #510 from microsoft/release/4.4.0
Release 4.4.0
2 parents 48efb6c + 8d82f38 commit a9afceb

File tree

12 files changed

+77
-15
lines changed

12 files changed

+77
-15
lines changed

Assets/AppCenter/Plugins/AppCenterSDK/Analytics/Shared/Analytics.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace Microsoft.AppCenter.Unity.Analytics
1616
public class Analytics
1717
{
1818
// Used by App Center Unity Editor Extensions: https://github.com/Microsoft/AppCenter-SDK-Unity-Extension
19-
public const string AnalyticsSDKVersion = "4.3.0";
19+
public const string AnalyticsSDKVersion = "4.4.0";
2020

2121
public static void PrepareEventHandlers()
2222
{

Assets/AppCenter/Plugins/AppCenterSDK/Core/Shared/WrapperSdk.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public static class WrapperSdk
1212
private static bool _hasAttemptedToGetRuntimeVersion;
1313

1414
public const string Name = "appcenter.unity";
15-
public const string WrapperSdkVersion = "4.3.0";
15+
public const string WrapperSdkVersion = "4.4.0";
1616

1717
internal static string WrapperRuntimeVersion
1818
{

Assets/AppCenter/Plugins/AppCenterSDK/Crashes/Shared/Crashes.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ namespace Microsoft.AppCenter.Unity.Crashes
2020
public class Crashes
2121
{
2222
// Used by App Center Unity Editor Extensions: https://github.com/Microsoft/AppCenter-SDK-Unity-Extension
23-
public const string CrashesSDKVersion = "4.3.0";
23+
public const string CrashesSDKVersion = "4.4.0";
2424
private static bool _reportUnhandledExceptions = false;
2525
private static bool _enableErrorAttachmentsCallbacks = false;
2626
private static readonly object _objectLock = new object();

Assets/AppCenter/Plugins/AppCenterSDK/Distribute/Shared/Distribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace Microsoft.AppCenter.Unity.Distribute
1616
public class Distribute
1717
{
1818
// Used by App Center Unity Editor Extensions: https://github.com/Microsoft/AppCenter-SDK-Unity-Extension
19-
public const string DistributeSDKVersion = "4.3.0";
19+
public const string DistributeSDKVersion = "4.4.0";
2020

2121
public static void PrepareEventHandlers()
2222
{

CHANGELOG.md

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,44 @@
11
# App Center SDK for Unity Change Log
22

3-
## Version 4.3.1 (Under active development)
3+
## Version 4.4.1 (Under active development)
4+
5+
___
6+
7+
## Version 4.4.0
48

59
### App Center
610

11+
#### iOS/Android/UWP
12+
713
* **[Breaking change]** Remove `AppCenter.SetCustomProperties` API.
814

15+
#### iOS
16+
17+
* **[Fix]** Fix throw an exception when checking to authenticate MAC value during decryption.
18+
919
#### Android
1020

1121
* **[Fix]** Fix crash in `AppCenterLoader` during call `getContext()` API when an application uses a custom context for initializing SDK. Such context should contain `getApplicationContext()` API which must return default Android application context.
1222

1323
### App Center Analytics
1424

25+
#### iOS/Android/UWP
26+
1527
* **[Feature]** Add `Analytics.EnableManualSessionTracker` and `Analytics.StartSession` APIs for tracking session manually.
28+
* **[Feature]** Increase the interval between sending logs from 3 to 6 seconds for the backend load optimization.
29+
30+
### App Center Distribute
31+
32+
#### Android
33+
34+
* **[Feature]** Replace installing a new release using the deprecated intent action `ACTION_INSTALL_PACKAGE` with the `PackageInstaller` API.
35+
* **[Feature]** Remove the download manager task if the download doesn't start within 10 seconds.
36+
* **[Feature]** Add sumcheck on the downloaded file before starting the install process.
37+
* **[Fix]** Fix a crash after discarding the installation if the download of a new release was interrupted in the previous application start and resumed in the current one.
38+
39+
#### iOS
40+
41+
* **[Fix]** Cancel authorization process if application is not active, otherwise `ASWebAuthenticationSession` will fail opening browser and update flow will end up being in a broken state. This only affects updating from a private distribution group.
1642

1743
___
1844

RELEASE.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,39 @@
1+
## Version 4.4.0
2+
3+
### App Center
4+
5+
#### iOS/Android/UWP
6+
7+
* **[Breaking change]** Remove `AppCenter.SetCustomProperties` API.
8+
9+
#### iOS
10+
11+
* **[Fix]** Fix throw an exception when checking to authenticate MAC value during decryption.
12+
13+
#### Android
14+
15+
* **[Fix]** Fix crash in `AppCenterLoader` during call `getContext()` API when an application uses a custom context for initializing SDK. Such context should contain `getApplicationContext()` API which must return default Android application context.
16+
17+
### App Center Analytics
18+
19+
#### iOS/Android/UWP
20+
21+
* **[Feature]** Add `Analytics.EnableManualSessionTracker` and `Analytics.StartSession` APIs for tracking session manually.
22+
* **[Feature]** Increase the interval between sending logs from 3 to 6 seconds for the backend load optimization.
23+
24+
### App Center Distribute
25+
26+
#### Android
27+
28+
* **[Feature]** Replace installing a new release using the deprecated intent action `ACTION_INSTALL_PACKAGE` with the `PackageInstaller` API.
29+
* **[Feature]** Remove the download manager task if the download doesn't start within 10 seconds.
30+
* **[Feature]** Add sumcheck on the downloaded file before starting the install process.
31+
* **[Fix]** Fix a crash after discarding the installation if the download of a new release was interrupted in the previous application start and resumed in the current one.
32+
33+
#### iOS
34+
35+
* **[Fix]** Cancel authorization process if application is not active, otherwise `ASWebAuthenticationSession` will fail opening browser and update flow will end up being in a broken state. This only affects updating from a private distribution group.
36+
137
## Release 4.3.0
238

339
### AppCenter

UnityPackageSpecs/AppCenter.unitypackagespec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<package name="AppCenter" version="4.3.0">
2+
<package name="AppCenter" version="4.4.0">
33
<include>
44
<!-- Editor related files -->
55
<file path="Assets/AppCenter/Editor" />

UnityPackageSpecs/AppCenterAnalytics.unitypackagespec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<package name="AppCenterAnalytics" version="4.3.0" needsCore="true">
2+
<package name="AppCenterAnalytics" version="4.4.0" needsCore="true">
33
<include>
44
<!-- Shared files -->
55
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Analytics/Shared" />

UnityPackageSpecs/AppCenterCrashes.unitypackagespec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<package name="AppCenterCrashes" version="4.3.0" needsCore="true">
2+
<package name="AppCenterCrashes" version="4.4.0" needsCore="true">
33
<include>
44
<!-- Shared files -->
55
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Crashes/Shared" />

UnityPackageSpecs/AppCenterDistribute.unitypackagespec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<package name="AppCenterDistribute" version="4.3.0" needsCore="true">
2+
<package name="AppCenterDistribute" version="4.4.0" needsCore="true">
33
<include>
44
<!-- Shared files -->
55
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Distribute/Shared" />

0 commit comments

Comments
 (0)