Skip to content

Commit 296e47c

Browse files
v4.4.0
2 parents 5b6d320 + 43b2f1d commit 296e47c

File tree

5 files changed

+48
-3
lines changed

5 files changed

+48
-3
lines changed

CHANGELOG.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,49 @@
11
# Changelog
22

3+
## 4.4.0 (2019-04-05)
4+
5+
* Disable ANR detection in Unity notifier
6+
[#142](https://github.com/bugsnag/bugsnag-unity/pull/142)
7+
8+
* Update bugsnag-android dependency to v4.13.0:
9+
### Enhancements
10+
* Add ANR detection to bugsnag-android
11+
[#442](https://github.com/bugsnag/bugsnag-android/pull/442)
12+
13+
* Add unhandled_events field to native payload
14+
[#445](https://github.com/bugsnag/bugsnag-android/pull/445)
15+
16+
* Add stopSession() and resumeSession() to Client
17+
[#429](https://github.com/bugsnag/bugsnag-android/pull/429)
18+
19+
### Bug fixes
20+
* Prevent overwriting config.projectPackages if already set
21+
[#428](https://github.com/bugsnag/bugsnag-android/pull/428)
22+
23+
* Fix incorrect session handledCount when notifying in quick succession
24+
[#434](https://github.com/bugsnag/bugsnag-android/pull/434)
25+
26+
* Ensure boolean object from map serialised as boolean primitive in JNI
27+
[#452](https://github.com/bugsnag/bugsnag-android/pull/452)
28+
29+
* Prevent NPE occurring when calling resumeSession()
30+
[#444](https://github.com/bugsnag/bugsnag-android/pull/444)
31+
32+
* Update bugsnag-cocoa dependency to v5.19.1:
33+
* Fix generating an incorrect stacktrace used when logging an exception to
34+
Bugsnag from a location other than the original call site (for example, from a
35+
logging function or across threads). If an exception was raised/thrown, then
36+
the resulting Bugsnag report from `notify()` will now use the `NSException`
37+
instance's call stack addresses to construct the stacktrace, ignoring depth.
38+
This fixes an issue in macOS exception reporting where `reportException` is
39+
reporting the handler code stacktrace rather than the reported exception
40+
stack.
41+
[#334](https://github.com/bugsnag/bugsnag-cocoa/pull/334)
42+
43+
* Fix network connectivity monitor by connecting to the correct domain
44+
[Jacky Wijaya](https://github.com/Jekiwijaya)
45+
[#332](https://github.com/bugsnag/bugsnag-cocoa/pull/332)
46+
347
## 4.3.0 (2019-03-14)
448

549
This release is the first to distribute Unity packages with and without 64-bit

bugsnag-android

Submodule bugsnag-android updated 48 files

bugsnag-cocoa

Submodule bugsnag-cocoa updated 55 files

build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ var target = Argument("target", "Default");
55
var solution = File("./BugsnagUnity.sln");
66
var configuration = Argument("configuration", "Release");
77
var project = File("./src/BugsnagUnity/BugsnagUnity.csproj");
8-
var version = "4.3.0";
8+
var version = "4.4.0";
99

1010
Task("Restore-NuGet-Packages")
1111
.Does(() => NuGetRestore(solution));

src/BugsnagUnity/Native/Android/Configuration.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ internal Configuration(string apiKey) : base()
1313
var JavaObject = new AndroidJavaObject("com.bugsnag.android.Configuration", apiKey);
1414
// the bugsnag-unity notifier will handle session tracking
1515
JavaObject.Call("setAutoCaptureSessions", false);
16+
JavaObject.Call("setDetectAnrs", false);
1617
JavaObject.Call("setEndpoint", DefaultEndpoint);
1718
JavaObject.Call("setSessionEndpoint", DefaultSessionEndpoint);
1819
JavaObject.Call("setReleaseStage", "production");

0 commit comments

Comments
 (0)