Skip to content

Commit 5000c99

Browse files
authored
Merge pull request #465 from microsoft/release/3.3.0
Release 3.3.0
2 parents b2a6f49 + eab5a98 commit 5000c99

File tree

14 files changed

+91
-17
lines changed

14 files changed

+91
-17
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 = "3.2.1";
19+
public const string AnalyticsSDKVersion = "3.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 = "3.2.1";
15+
public const string WrapperSdkVersion = "3.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 = "3.2.1";
23+
public const string CrashesSDKVersion = "3.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 = "3.2.1";
19+
public const string DistributeSDKVersion = "3.3.0";
2020

2121
public static void PrepareEventHandlers()
2222
{

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace Microsoft.AppCenter.Unity.Push
1616
public class Push
1717
{
1818
// Used by App Center Unity Editor Extensions: https://github.com/Microsoft/AppCenter-SDK-Unity-Extension
19-
public const string PushSDKVersion = "3.2.1";
19+
public const string PushSDKVersion = "3.3.0";
2020
private static readonly object _lockObject = new object();
2121
private static bool _needsReplay = true;
2222
private static bool IsAppCenterStarted;

CHANGELOG.md

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

3-
## Release 3.2.2 (in development)
3+
## Release 3.3.0
4+
5+
This version has a breaking change on iOS - it drops Xcode 10 support, Xcode 11 is a minimal supported version now.
6+
7+
### App Center
8+
9+
#### Android
10+
11+
* **[Fix]** Fix possible delays in UI thread when queueing a large number of events.
12+
* **[Fix]** Fix an `IncorrectContextUseViolation` warning when calculating screen size on Android 11.
13+
* **[Fix]** All SQL commands used in SDK are presented as raw strings to avoid any possible static analyzer's SQL injection false alarms.
14+
15+
#### iOS
16+
17+
* **[Fix]** Fix crash when local binary data (where unsent logs or unprocessed crashed are stored) is corrupted.
18+
* **[Fix]** When carrier name is retrieved incorrectly by iOS, show `nil` as expected instead of "carrier" string.
419

520
### App Center Analytics
621

722
#### iOS
823

924
* **[Fix]** Fix `Analytics.TrackEvent` crash if event properties contain `null` value.
1025

26+
### App Center Crashes
27+
28+
#### iOS
29+
30+
* **[Improvement]** Update PLCrashReporter to 1.7.1.
31+
* **[Fix]** Fix reporting stacktraces on iOS simulator.
32+
* **[Fix]** Add attachments verification in `TrackError` function to handle explicitly passed `null` array to variable arguments parameter.
33+
1134
### App Center Distribute
1235

1336
Now when Distribute is turned off in **AppCenterBehavior**, it is unlinked from the application, in order to avoid Google Play flagging the application for malicious behavior. It must be turned off for build variants which are going to be published on Google Play. See the [public documentation](https://docs.microsoft.com/en-us/appcenter/sdk/distribute/unity) for more details about this change.
1437

38+
#### Android
39+
40+
* **[Fix]** Fix Distribute can't get updates for Realme devices which use Realme UI.
41+
42+
#### iOS
43+
44+
* **[Fix]** Obfuscate app secret value that appears as URI part in verbose logs when getting release updates info.
45+
1546
___
1647

1748
## Release 3.2.1

RELEASE.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,46 @@
1+
## Release 3.3.0
2+
3+
This version has a breaking change on iOS - it drops Xcode 10 support, Xcode 11 is a minimal supported version now.
4+
5+
### App Center
6+
7+
#### Android
8+
9+
* **[Fix]** Fix possible delays in UI thread when queueing a large number of events.
10+
* **[Fix]** Fix an `IncorrectContextUseViolation` warning when calculating screen size on Android 11.
11+
* **[Fix]** All SQL commands used in SDK are presented as raw strings to avoid any possible static analyzer's SQL injection false alarms.
12+
13+
#### iOS
14+
15+
* **[Fix]** Fix crash when local binary data (where unsent logs or unprocessed crashed are stored) is corrupted.
16+
* **[Fix]** When carrier name is retrieved incorrectly by iOS, show `nil` as expected instead of "carrier" string.
17+
18+
### App Center Analytics
19+
20+
#### iOS
21+
22+
* **[Fix]** Fix `Analytics.TrackEvent` crash if event properties contain `null` value.
23+
24+
### App Center Crashes
25+
26+
#### iOS
27+
28+
* **[Improvement]** Update PLCrashReporter to 1.7.1.
29+
* **[Fix]** Fix reporting stacktraces on iOS simulator.
30+
* **[Fix]** Add attachments verification in `TrackError` function to handle explicitly passed `null` array to variable arguments parameter.
31+
32+
### App Center Distribute
33+
34+
Now when Distribute is turned off in **AppCenterBehavior**, it is unlinked from the application, in order to avoid Google Play flagging the application for malicious behavior. It must be turned off for build variants which are going to be published on Google Play. See the [public documentation](https://docs.microsoft.com/en-us/appcenter/sdk/distribute/unity) for more details about this change.
35+
36+
#### Android
37+
38+
* **[Fix]** Fix Distribute can't get updates for Realme devices which use Realme UI.
39+
40+
#### iOS
41+
42+
* **[Fix]** Obfuscate app secret value that appears as URI part in verbose logs when getting release updates info.
43+
144
## Release 3.2.1
245

346
### App Center

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="3.2.1">
2+
<package name="AppCenter" version="3.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="3.2.1" needsCore="true">
2+
<package name="AppCenterAnalytics" version="3.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="3.2.1" needsCore="true">
2+
<package name="AppCenterCrashes" version="3.3.0" needsCore="true">
33
<include>
44
<!-- Shared files -->
55
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Crashes/Shared" />

0 commit comments

Comments
 (0)