bugsnag-maze-runner 9.33.0 → 9.35.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 36d5614273840b3532dae2fc1c515389dec6e36c99b348bd1cc6a91b3d3da656
4
- data.tar.gz: 6c0ee4526be46ba9b322f625701e00e00ec8af6001d3d8f12fa7fa32e4005dc3
3
+ metadata.gz: ee84ccfd9947690fa1e3ca047a820b8074a8f1f879bcc1433686b95dceefc247
4
+ data.tar.gz: 3af0acf8bdf29fc0629c60e0258353fea0af26d29fe22f249a6c0c13930978f0
5
5
  SHA512:
6
- metadata.gz: 3ccaff84971397feaca6de27dd8db438a3e51de38b002956c1076e1e85aa496b99d059e67dfaa4491cc22248c5e337348eb80fe112b480d8e413deee12498db3
7
- data.tar.gz: e2b77ff39efc000d8f6db1d910d414a3f8428cf0f21b2e2b62c592b5879ca7e746cb681e963215c37cf5e3b3e23215527f528cbd217a2bae85fd76573ac5b3f6
6
+ metadata.gz: b3d1c4fd5d63c2fa5499a351256347c8c09c0914598e013a22e63dd140f8b54f8eaa3caa6800cfa6d92e25516e16d065c6e991c15578347aaa208ca3ba073206
7
+ data.tar.gz: 7e8ab53a2841d46687d33608e9deba00661a682a10cf845a40479d0fce533dd18ca41a8e00f136ab02989bd92a247ea1cd8cba36807917d1cb88957126282363
@@ -82,11 +82,9 @@ InstallPlugin do |config|
82
82
  # Start Bugsnag
83
83
  Maze::ErrorMonitor::Config.start_bugsnag(config)
84
84
 
85
- if config.fail_fast?
86
- # Register exit code handler
87
- Maze::Hooks::ErrorCodeHook.register_exit_code_hook
88
- config.filters << Maze::Plugins::ErrorCodePlugin.new(config)
89
- end
85
+ # Register exit code handler
86
+ Maze::Hooks::ErrorCodeHook.register_exit_code_hook
87
+ config.filters << Maze::Plugins::ErrorCodePlugin.new(config)
90
88
 
91
89
  # Only add the retry plugin if --retry is not used on the command line
92
90
  config.filters << Maze::Plugins::GlobalRetryPlugin.new(config) if config.options[:retry].zero?
@@ -15,6 +15,7 @@ module Maze
15
15
  Bugsnag.notify(exception)
16
16
  exception.instance_eval { def skip_bugsnag; true; end }
17
17
  @driver.fail_driver(exception.message)
18
+ Maze::Hooks::ErrorCodeHook.exit_code = Maze::Api::ExitCode::APPIUM_SESSION_FAILURE
18
19
  end
19
20
  end
20
21
  end
@@ -71,6 +71,7 @@ module Maze
71
71
  def create_hash
72
72
  hash = {
73
73
  # Classic, non-specific devices for each Android version
74
+ 'ANDROID_16' => make_android_hash('Google Pixel 9', '16.0'),
74
75
  'ANDROID_15' => make_android_hash('Google Pixel 9', '15.0'),
75
76
  'ANDROID_14' => make_android_hash('Google Pixel 8', '14.0'),
76
77
  'ANDROID_13' => make_android_hash('Google Pixel 6 Pro', '13.0'),
data/lib/maze.rb CHANGED
@@ -8,7 +8,7 @@ require_relative 'maze/timers'
8
8
  # providing an alternative to the proliferation of global variables or singletons.
9
9
  module Maze
10
10
 
11
- VERSION = '9.33.0'
11
+ VERSION = '9.35.0'
12
12
 
13
13
  class << self
14
14
  attr_accessor :check, :driver, :internal_hooks, :mode, :start_time, :dynamic_retry, :public_address,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bugsnag-maze-runner
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.33.0
4
+ version: 9.35.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steve Kirkland
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-08-06 00:00:00.000000000 Z
11
+ date: 2025-08-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cucumber