Skip to content

Commit f4ea57d

Browse files
author
Anastasia Senyushina
authored
Merge pull request #500 from microsoft/release/4.3.0
Release 4.3.0
2 parents 916d8e1 + 05aea24 commit f4ea57d

File tree

12 files changed

+133
-77
lines changed

12 files changed

+133
-77
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.2.0";
19+
public const string AnalyticsSDKVersion = "4.3.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.2.0";
15+
public const string WrapperSdkVersion = "4.3.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.2.0";
23+
public const string CrashesSDKVersion = "4.3.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.2.0";
19+
public const string DistributeSDKVersion = "4.3.0";
2020

2121
public static void PrepareEventHandlers()
2222
{

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# App Center SDK for Unity Change Log
22

3+
## Version 4.3.0
4+
5+
### AppCenter
6+
7+
#### UWP
8+
9+
* **[Fix]** Fix sending pending logs after the first application start.
10+
11+
#### iOS/Android
12+
13+
* **[Feature]** Improved `AES` token encryption algorithm using `Encrypt-then-MAC` data authentication approach.
14+
15+
### App Center Crashes
16+
17+
#### iOS
18+
19+
* **[Improvement]** Update PLCrashReporter to 1.10.
20+
21+
### App Center Distribute
22+
23+
#### Android
24+
25+
* **[Fix]** Fix a rare deadlock case when a new version starts downloading and at the same moment the download status is checked.
26+
* **[Fix]** Fix passing pending intent flag for a completed download notification on Android lower then 23 API.
27+
28+
___
29+
330
## Version 4.2.0
431

532
### AppCenter

RELEASE.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
## Release 4.3.0
2+
3+
### AppCenter
4+
5+
#### UWP
6+
7+
* **[Fix]** Fix sending pending logs after the first application start.
8+
9+
#### iOS
10+
11+
* **[Feature]** Improved `AES` token encryption algorithm using `Encrypt-then-MAC` data authentication approach.
12+
13+
#### Android
14+
15+
* **[Feature]** Improved `AES` token encryption algorithm using `Encrypt-then-MAC` data authentication approach.
16+
17+
### App Center Crashes
18+
19+
#### iOS
20+
21+
* **[Improvement]** Update PLCrashReporter to 1.10.
22+
23+
### App Center Distribute
24+
25+
#### Android
26+
27+
* **[Fix]** Fix a rare deadlock case when a new version starts downloading and at the same moment the download status is checked.
28+
* **[Fix]** Fix passing pending intent flag for a completed download notification on Android lower then 23 API.
29+
130
## Release 4.2.0
231

332
### 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.2.0">
2+
<package name="AppCenter" version="4.3.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.2.0" needsCore="true">
2+
<package name="AppCenterAnalytics" version="4.3.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.2.0" needsCore="true">
2+
<package name="AppCenterCrashes" version="4.3.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.2.0" needsCore="true">
2+
<package name="AppCenterDistribute" version="4.3.0" needsCore="true">
33
<include>
44
<!-- Shared files -->
55
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Distribute/Shared" />

0 commit comments

Comments
 (0)