Skip to content

Commit cd3a0b2

Browse files
v5.0.0
2 parents 60df8b9 + 50d83be commit cd3a0b2

File tree

236 files changed

+13161
-2043
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

236 files changed

+13161
-2043
lines changed

.buildkite/pipeline.yml

Lines changed: 624 additions & 0 deletions
Large diffs are not rendered by default.

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,7 @@ TestResult.xml
2424
.idea/
2525
bugsnag-cocoa-build/
2626
unity.log
27+
bugsnag-android-unity/.cxx
28+
test/**/*.app.zip
29+
*.ipa
30+
**/maze_runner/output/

.travis.yml

Lines changed: 0 additions & 83 deletions
This file was deleted.

CHANGELOG.md

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

3+
## 5.0.0 (2021-06-08)
4+
5+
This version contains **breaking** changes, as bugsnag-unity has been updated to use the latest available versions of bugsnag-android (v4.22.2 -> v5.9.4) and bugsnag-cocoa (v5.23.5 -> v6.9.3).
6+
7+
Please see the [upgrade guide](UPGRADING.md) for details of all the changes and instructions on how to upgrade.
8+
9+
### Bug fixes
10+
11+
* Stop scene changes overiding context when manually set
12+
[#255](https://github.com/bugsnag/bugsnag-unity/pull/255)
13+
14+
* Dont Destroy TimingTrackerObject, so it persists across scenes
15+
[#239](https://github.com/bugsnag/bugsnag-unity/pull/239)
16+
317
## 4.8.8 (2021-04-21)
418

519
### Bug fixes

CONTRIBUTING.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,9 @@ We have a very simple maze-runner setup, which builds a MacOS X Unity game that
8181
NOTE: This does not currently run on Windows
8282
8383
```
84+
cd test/desktop
8485
bundle install
85-
bundle exec rake plugin:maze_runner
86+
bundle exec maze-runner features/handled_errors.feature
8687
```
8788
8889
## Releasing a new version

Gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@ source 'https://rubygems.org'
33
gem "rake"
44
gem "xcpretty"
55
gem "xcodeproj"
6-
gem "bugsnag-maze-runner", git: "https://github.com/bugsnag/maze-runner", branch: "v1"

Gemfile.lock

Lines changed: 1 addition & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,13 @@
1-
GIT
2-
remote: https://github.com/bugsnag/maze-runner
3-
revision: 7377529a77eb7585afc66cd2080fcdc4eea3306a
4-
branch: v1
5-
specs:
6-
bugsnag-maze-runner (1.1.0)
7-
cucumber (~> 3.1.0)
8-
cucumber-expressions (= 5.0.15)
9-
minitest (~> 5.0)
10-
os (~> 1.0.0)
11-
rack (~> 2.0.0)
12-
rake (~> 12.3.3)
13-
test-unit (~> 3.2.0)
14-
151
GEM
162
remote: https://rubygems.org/
173
specs:
184
CFPropertyList (3.0.0)
195
atomos (0.1.3)
20-
backports (3.18.2)
21-
builder (3.2.4)
226
claide (1.0.2)
237
colored2 (3.1.2)
24-
cucumber (3.1.0)
25-
builder (>= 2.1.2)
26-
cucumber-core (~> 3.1.0)
27-
cucumber-expressions (~> 5.0.4)
28-
cucumber-wire (~> 0.0.1)
29-
diff-lcs (~> 1.3)
30-
gherkin (~> 5.0)
31-
multi_json (>= 1.7.5, < 2.0)
32-
multi_test (>= 0.1.2)
33-
cucumber-core (3.1.0)
34-
backports (>= 3.8.0)
35-
cucumber-tag_expressions (~> 1.1.0)
36-
gherkin (>= 5.0.0)
37-
cucumber-expressions (5.0.15)
38-
cucumber-tag_expressions (1.1.1)
39-
cucumber-wire (0.0.1)
40-
diff-lcs (1.4.4)
41-
gherkin (5.1.0)
42-
minitest (5.14.2)
43-
multi_json (1.15.0)
44-
multi_test (0.1.2)
458
nanaimo (0.2.6)
46-
os (1.0.1)
47-
power_assert (1.2.0)
48-
rack (2.0.9)
499
rake (12.3.3)
5010
rouge (2.0.7)
51-
test-unit (3.2.9)
52-
power_assert
5311
xcodeproj (1.5.9)
5412
CFPropertyList (>= 2.3.3, < 4.0)
5513
atomos (~> 0.1.2)
@@ -63,10 +21,9 @@ PLATFORMS
6321
ruby
6422

6523
DEPENDENCIES
66-
bugsnag-maze-runner!
6724
rake
6825
xcodeproj
6926
xcpretty
7027

7128
BUNDLED WITH
72-
2.1.4
29+
2.2.13

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Bugsnag exception reporter for Unity
22
[![Documentation](https://img.shields.io/badge/documentation-latest-blue.svg)](http://docs.bugsnag.com/platforms/unity/)
3-
[![Build status](https://api.travis-ci.com/bugsnag/bugsnag-unity.svg?branch=master)](https://travis-ci.com/bugsnag/bugsnag-unity)
43

54
The Bugsnag Notifier for Unity gives you instant notification of exceptions
65
thrown from your Unity games on iOS and Android devices, as well as standalone

0 commit comments

Comments
 (0)