bugsnag-maze-runner 9.32.1 → 9.32.2

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: 76ebb1a5265e614bce15a22bea6c10ec76e9d28bfe062f341692fbb24bfb25ef
4
- data.tar.gz: c6024cf2546cd75909373941fafba438b287354253dae0c1b52d9b0d9ef63418
3
+ metadata.gz: c7a7fdcd2450e393d3f374ad2df6cd727b3d7f95cad21330faad6624f552ee5b
4
+ data.tar.gz: 3e6d50e62d61887bb0386e40dbebccb884534b24306c7704b184e97c7c7857f3
5
5
  SHA512:
6
- metadata.gz: e49dd521c0cf6da0fb01a54dc12bd69019a34a156aaee6ac54576375d23865bd26deb85f1cbf164aabaffd04e59c99e434528a7a43bf7249c9517b6c9462f162
7
- data.tar.gz: b359166e3e5d896cf4db71cebb75f358b78015dba28c300edc0b84d134b79ddfa5cf613c18a77055448754d8829aa7d753037d000090c8d887956bd89d4c4393
6
+ metadata.gz: 04470c70f6ccac530a6008211f96e4843cfe1af80b21ec5fa794df705de707c3b4f853218ff5362c57a53a1b76fcd932036e7eaf94619113111ff3aa67eefaf1
7
+ data.tar.gz: 6b4c42121315dee6444ddeba952a7e8c4f25b17251aa626d82449cb418b3e891c55b845f14ca30ff3f2316533980c5076829d79f0dec5eb75756d4f1b9406b44
@@ -1,80 +1,80 @@
1
1
  chrome:
2
- platform: 'Windows'
2
+ platformName: 'Windows'
3
3
  osVersion: '11'
4
4
  browserName: 'chrome'
5
5
  resolution: '1920x1080'
6
6
 
7
7
  chrome_latest:
8
- platform: 'Windows'
8
+ platformName: 'Windows'
9
9
  osVersion: '11'
10
10
  browserName: 'chrome'
11
- version: 'latest'
11
+ browserVersion: 'latest'
12
12
  resolution: '1920x1080'
13
13
 
14
14
  chrome_72:
15
- platform: 'Windows'
15
+ platformName: 'Windows'
16
16
  osVersion: '10'
17
17
  browserName: 'chrome'
18
- version: '72'
18
+ browserVersion: '72'
19
19
  resolution: '1920x1080'
20
20
 
21
21
  chrome_43:
22
- platform: 'Windows'
22
+ platformName: 'Windows'
23
23
  osVersion: '10'
24
24
  browserName: 'chrome'
25
- version: '43'
25
+ browserVersion: '43'
26
26
  resolution: '1920x1080'
27
27
 
28
28
  firefox:
29
- platform: 'Windows'
29
+ platformName: 'Windows'
30
30
  osVersion: '11'
31
31
  browserName: 'firefox'
32
32
  resolution: '1920x1080'
33
33
 
34
34
  firefox_latest:
35
- platform: 'Windows'
35
+ platformName: 'Windows'
36
36
  osVersion: '11'
37
37
  browserName: 'firefox'
38
- version: 'latest'
38
+ browserVersion: 'latest'
39
39
  resolution: '1920x1080'
40
40
 
41
41
  firefox_78:
42
- platform: 'Windows'
42
+ platformName: 'Windows'
43
43
  osVersion: '10'
44
44
  browserName: 'firefox'
45
- version: '78'
45
+ browserVersion: '78'
46
46
  resolution: '1920x1080'
47
47
 
48
48
  ie_11:
49
- platform: 'Windows'
49
+ platformName: 'Windows'
50
50
  osVersion: '10'
51
51
  browserName: 'internet explorer'
52
- version: '11'
52
+ browserVersion: '11'
53
53
  resolution: '1920x1080'
54
54
 
55
55
  edge:
56
- platform: 'Windows'
56
+ platformName: 'Windows'
57
57
  osVersion: '11'
58
58
  browserName: 'MicrosoftEdge'
59
59
  resolution: '1920x1080'
60
60
 
61
61
  edge_latest:
62
- platform: 'Windows'
62
+ platformName: 'Windows'
63
63
  osVersion: '11'
64
64
  browserName: 'MicrosoftEdge'
65
- version: 'latest'
65
+ browserVersion: 'latest'
66
66
  resolution: '1920x1080'
67
67
 
68
68
  safari_18:
69
- platform: 'macOS'
69
+ platformName: 'macOS'
70
70
  osVersion: '13'
71
71
  browserName: 'safari'
72
- version: '18'
72
+ browserVersion: '18'
73
73
  resolution: '2560x1920'
74
74
 
75
75
  safari_17:
76
- platform: 'macOS'
76
+ platformName: 'macOS'
77
77
  osVersion: '12'
78
78
  browserName: 'safari'
79
- version: '17'
79
+ browserVersion: '17'
80
80
  resolution: '2560x1920'
@@ -120,7 +120,7 @@ module Maze
120
120
  if rejected_browsers.empty?
121
121
  if options[Option::BROWSER_VERSION].nil?
122
122
  browser.each do |br|
123
- next if browsers[br].include?('version')
123
+ next if browsers[br].include?('browserVersion')
124
124
  errors << "--#{Option::BROWSER_VERSION} must be specified for browser '#{br}'"
125
125
  end
126
126
  end
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.32.1'
11
+ VERSION = '9.32.2'
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.32.1
4
+ version: 9.32.2
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-07-15 00:00:00.000000000 Z
11
+ date: 2025-07-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cucumber