-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #373 from bugsnag/next
Next release v4.7.0
- Loading branch information
Showing
18 changed files
with
311 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
GIT | ||
remote: [email protected]:bugsnag/maze-runner | ||
revision: f7123450d5a75b719911c6dd3baa0507e6062c2d | ||
revision: 177f27da9966aed2cb87687fa8384d6141d2fa05 | ||
specs: | ||
bugsnag-maze-runner (1.0.0) | ||
cucumber (~> 3.1.0) | ||
cucumber-expressions (= 5.0.15) | ||
minitest (~> 5.0) | ||
rack (~> 2.0.0) | ||
rake (~> 12.3.0) | ||
test-unit (~> 3.2.0) | ||
|
||
GEM | ||
|
@@ -32,17 +33,18 @@ GEM | |
cucumber-tag_expressions (1.1.1) | ||
cucumber-wire (0.0.1) | ||
diff-lcs (1.3) | ||
gherkin (5.0.0) | ||
gherkin (5.1.0) | ||
method_source (0.9.0) | ||
minitest (5.11.3) | ||
multi_json (1.13.1) | ||
multi_test (0.1.2) | ||
power_assert (1.1.1) | ||
power_assert (1.1.3) | ||
pry (0.11.3) | ||
coderay (~> 1.1.0) | ||
method_source (~> 0.9.0) | ||
rack (2.0.5) | ||
test-unit (3.2.7) | ||
rake (12.3.1) | ||
test-unit (3.2.8) | ||
power_assert | ||
|
||
PLATFORMS | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# For handled exceptions, the thread trace should be reported in the threads array. | ||
# For unhandled exceptions, the exception trace should be reported instead. | ||
|
||
Feature: Error Reporting Thread | ||
|
||
Scenario: Only 1 thread is flagged as the error reporting thread for handled exceptions | ||
When I run "HandledExceptionScenario" with the defaults | ||
Then I should receive a request | ||
And the request is a valid for the error reporting API | ||
And the thread with name "main" contains the error reporting flag | ||
And the "method" of stack frame 0 equals "com.bugsnag.android.mazerunner.scenarios.Scenario.generateException" | ||
And the payload field "events.0.threads.0.stacktrace.0.method" ends with "getThreadStackTrace" | ||
|
||
Scenario: Only 1 thread is flagged as the error reporting thread for unhandled exceptions | ||
When I run "UnhandledExceptionScenario" with the defaults | ||
Then I should receive 1 request | ||
And the request is a valid for the error reporting API | ||
And the thread with name "main" contains the error reporting flag | ||
And the "method" of stack frame 0 equals "com.bugsnag.android.mazerunner.scenarios.Scenario.generateException" | ||
And the payload field "events.0.threads.0.stacktrace.0.method" equals "com.bugsnag.android.mazerunner.scenarios.Scenario.generateException" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ org.gradle.jvmargs=-Xmx1536m | |
# This option should only be used with decoupled projects. More details, visit | ||
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects | ||
# org.gradle.parallel=true | ||
VERSION_NAME=4.6.1 | ||
VERSION_NAME=4.7.0 | ||
GROUP=com.bugsnag | ||
POM_SCM_URL=https://github.com/bugsnag/bugsnag-android | ||
POM_SCM_CONNECTION=scm:[email protected]:bugsnag/bugsnag-android.git | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.