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 +4 -4
- data/lib/features/support/internal_hooks.rb +3 -5
- data/lib/maze/api/appium/manager.rb +1 -0
- data/lib/maze/client/appium/bs_devices.rb +1 -0
- data/lib/maze.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ee84ccfd9947690fa1e3ca047a820b8074a8f1f879bcc1433686b95dceefc247
|
4
|
+
data.tar.gz: 3af0acf8bdf29fc0629c60e0258353fea0af26d29fe22f249a6c0c13930978f0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
86
|
-
|
87
|
-
|
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?
|
@@ -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.
|
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.
|
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-
|
11
|
+
date: 2025-08-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cucumber
|