Skip to content

Commit

Permalink
Merge pull request #564 from bugsnag/tms/v8-timeout
Browse files Browse the repository at this point in the history
Set a sensible timeout for BitBar Appium sessions
  • Loading branch information
twometresteve authored Jun 22, 2023
2 parents 5fda10e + 6a86458 commit 79c0d78
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
11 changes: 6 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 8.1.1 - 2023/06/22

## Fixes

- Sensible timeout for BitBar Appium sessions [564](https://github.com/bugsnag/maze-runner/pull/564)

# 8.1.0 - 2023/06/21

## Enhancements
Expand Down Expand Up @@ -37,11 +43,6 @@
- Set `--expand` Cucumber option by default [548](https://github.com/bugsnag/maze-runner/pull/548)
- Add step `I set the device orientation to {orientation}` [551](https://github.com/bugsnag/maze-runner/pull/551)
- Avoid the need for quotes around integer lists [550](https://github.com/bugsnag/maze-runner/pull/550) [552](https://github.com/bugsnag/maze-runner/pull/552)

# 7.34.0 - 2023/06/13

## Enhancements

- Add standalone `purge-projects` executable [546](https://github.com/bugsnag/maze-runner/pull/546)

# 7.33.0 - 2023/05/25
Expand Down
7 changes: 3 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ GIT
PATH
remote: .
specs:
bugsnag-maze-runner (8.1.0)
bugsnag-maze-runner (8.1.1)
appium_lib (~> 12.0.0)
appium_lib_core (~> 5.4.0)
bugsnag (~> 6.24)
Expand Down Expand Up @@ -115,7 +115,7 @@ GEM
mime-types (3.4.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2023.0218.1)
minitest (5.18.0)
minitest (5.18.1)
mocha (1.13.0)
multi_test (0.1.2)
nokogiri (1.15.2-x86_64-darwin)
Expand All @@ -125,7 +125,7 @@ GEM
power_assert (2.0.3)
props (1.2.0)
iniparser (>= 0.1.0)
racc (1.7.0)
racc (1.7.1)
rack (2.2.7)
rake (12.3.3)
redcarpet (3.6.0)
Expand Down Expand Up @@ -168,7 +168,6 @@ GEM
yard (0.9.34)

PLATFORMS
x86_64-darwin-19
x86_64-darwin-20

DEPENDENCIES
Expand Down
2 changes: 1 addition & 1 deletion lib/maze.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Glues the various parts of MazeRunner together that need to be accessed globally,
# providing an alternative to the proliferation of global variables or singletons.
module Maze
VERSION = '8.1.0'
VERSION = '8.1.1'

class << self
attr_accessor :check, :driver, :internal_hooks, :mode, :start_time, :dynamic_retry, :public_address,
Expand Down
2 changes: 1 addition & 1 deletion lib/maze/client/appium/bb_client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def device_capabilities
prefix = BitBarDevices.caps_prefix(config.appium_version)
capabilities = {
"#{prefix}noReset" => true,
"#{prefix}newCommandTimeout" => 0,
"#{prefix}newCommandTimeout" => 600,
'bitbar:options' => {
# Some capabilities probably belong in the top level
# of the hash, but BitBar picks them up from here.
Expand Down

0 comments on commit 79c0d78

Please sign in to comment.