Skip to content

Commit

Permalink
Bump bugsnag-cocoa to v6.28.0 (#230)
Browse files Browse the repository at this point in the history
  • Loading branch information
kstenerud committed Jan 11, 2024
1 parent d169ef7 commit 5d5f634
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Changelog

## TBD

* Updates the bugsnag-cocoa dependency from v6.26.2 to [v6.27.3](https://github.com/bugsnag/bugsnag-cocoa/blob/master/CHANGELOG.md#6273-2023-11-15)
* Updates the bugsnag-cocoa dependency from v6.26.2 to [v6.28.0](https://github.com/bugsnag/bugsnag-cocoa/blob/master/CHANGELOG.md#6280-2023-12-13)

## 1.8.0 (2023-08-28)

Expand Down
2 changes: 1 addition & 1 deletion features/handled_errors.feature
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Feature: Reporting handled errors
| ios | iOS |
| macos | macOS |
And the event "app.version" equals "1.0"
And the event "device.freeDisk" is not null
And unless iOS, the event "device.freeDisk" is not null
And the event "device.freeMemory" is not null
And the event "device.id" equals "51229"
And the event "device.jailbroken" is false
Expand Down
4 changes: 4 additions & 0 deletions features/steps/unreal_steps.rb
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@
end
end

Then(/^unless ([^,]+), (.+)/) do |platforms, step_text|
step(step_text) if not platforms.split("|").map { |item| item.downcase }.include? Maze::Helper.get_current_platform
end

Then(/^on (Android|iOS), (.+)/) do |platform, step_text|
step(step_text) if is_platform? platform
end
Expand Down

0 comments on commit 5d5f634

Please sign in to comment.