Skip to content

Commit c5026d9

Browse files
authored
Merge pull request #811 from bugsnag/next
Release v8.0.0
2 parents 30c6c5b + f71e078 commit c5026d9

36 files changed

+403
-320
lines changed

.buildkite/pipeline.full.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ aliases:
22
- &2020 "2020.3.48f1"
33
- &2021 "2021.3.36f1"
44
- &2022 "2022.3.22f1"
5-
- &2023 "2023.2.17f1"
5+
- &2023 "2023.2.19f1"
66

77

88
agents:
@@ -186,8 +186,6 @@ steps:
186186
- label: Run WebGL e2e tests for Unity 2020
187187
timeout_in_minutes: 30
188188
depends_on: "cocoa-webgl-2020-fixtures"
189-
agents:
190-
queue: opensource-mac-cocoa-11
191189
env:
192190
UNITY_VERSION: *2020
193191
plugins:
@@ -221,8 +219,6 @@ steps:
221219
- label: Run WebGL e2e tests for Unity 2022
222220
timeout_in_minutes: 30
223221
depends_on: 'cocoa-webgl-2022-fixtures'
224-
agents:
225-
queue: opensource-mac-cocoa-11
226222
env:
227223
UNITY_VERSION: *2022
228224
plugins:
@@ -238,8 +234,6 @@ steps:
238234
- label: Run WebGL e2e tests for Unity 2023
239235
timeout_in_minutes: 30
240236
depends_on: 'cocoa-webgl-2023-fixtures'
241-
agents:
242-
queue: opensource-mac-cocoa-11
243237
env:
244238
UNITY_VERSION: *2023
245239
plugins:

.buildkite/pipeline.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@ steps:
128128
- "--device=ANDROID_10|ANDROID_11|ANDROID_12|ANDROID_13"
129129
- "--no-tunnel"
130130
- "--aws-public-ip"
131-
- "--fail-fast"
132131
concurrency: 25
133132
concurrency_group: "bitbar"
134133
concurrency_method: eager

CHANGELOG.md

Lines changed: 45 additions & 223 deletions
Large diffs are not rendered by default.

Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,15 +133,15 @@ def assemble_android filter_abis=true
133133

134134
# copy unity lib
135135
unity_lib = File.join("bugsnag-android-unity", "build", "outputs", "aar", "bugsnag-android-unity-release.aar")
136-
137136
FileUtils.cp android_core_lib, File.join(android_dir, "bugsnag-android-release.aar")
138-
FileUtils.cp ndk_lib, File.join(android_dir, "bugsnag-android-ndk-release.aar")
137+
FileUtils.cp ndk_lib, File.join(android_dir, "bugsnag-plugin-android-ndk-release.aar")
139138
FileUtils.cp anr_lib, File.join(android_dir, "bugsnag-plugin-android-anr-release.aar")
140139
FileUtils.cp unity_lib, File.join(android_dir, "bugsnag-android-unity-release.aar")
141140
FileUtils.mkdir File.join(android_dir, "Kotlin")
142141
FileUtils.cp kotlin_stdlib, File.join(android_dir, "Kotlin/kotlin-stdlib.jar")
143142
FileUtils.cp kotlin_stdlib_common, File.join(android_dir, "Kotlin/kotlin-stdlib-common.jar")
144143
FileUtils.cp kotlin_annotations, File.join(android_dir, "Kotlin/kotlin-annotations.jar")
144+
145145
end
146146

147147
namespace :plugin do

UPGRADING.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Upgrading
22
=========
33

4+
## 7.x to 8.x
5+
6+
`Configuration.DiscardClasses` and `Configuration.RedactedKeys` are now [Regex](https://learn.microsoft.com/en-us/dotnet/api/system.text.regularexpressions.regex?view=net-8.0) collections instead of string collections. This allows developers to have more control over how they perform.
7+
8+
If you are using the `DiscardClasses` and `RedactedKeys` sections of the Bugsnag Unity Configuration Window, you can enter Regex patterns as strings and they will be converted into Regex objects when the Bugsnag SDK is started.
9+
10+
`Event.Unhandled` (accessed via OnError and OnSend callbacks) is now non-nullable.
11+
412
## 6.x to 7.x
513

614
When building using Unity 2019+, the Bugsnag SDK now uses a new method to intercept uncaught C# exceptions. This allows us access to the original exception object, meaning more accurate exception data and full support for inner exceptions.
1.43 MB
Binary file not shown.
Binary file not shown.

bugsnag-android

Submodule bugsnag-android updated 366 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 = "7.7.6";
8+
var version = "8.0.0";
99

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

0 commit comments

Comments
 (0)