bugsnag-maze-runner 8.20.2 → 8.20.4
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dd7be7b4beb7ff3f9732a9879b4e0cb05a68aea0f154ebd718540bec7fe9beb4
|
4
|
+
data.tar.gz: 0b18f3ee63352aef96198b9b5f2dae6266407adb7cd04845ef7ab50eaeb7784d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 986acc82ee0c3395fd95963b868a8c148609a2a9b219b73d9fb176a9a818fff0d733482d8e7de18f9f1dbed6f3fba9658c011fdc584d2f5cdb5f7f9aee27054d
|
7
|
+
data.tar.gz: a46d15e0a9c722a67a58b743cbce99d3cb890953530aed0ff4e11935d010265348944a444b2f31e859d018a0996bc380885beb8b63635049d04135e9134468bc
|
data/lib/maze/aws_public_ip.rb
CHANGED
@@ -34,7 +34,8 @@ module Maze
|
|
34
34
|
def determine_public_ip
|
35
35
|
# 169.254.169.254 is the address of the AWS instance metadata service
|
36
36
|
# See https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html
|
37
|
-
`curl --silent -
|
37
|
+
token = `curl --silent -H "X-aws-ec2-metadata-token-ttl-seconds: 120" -XPUT http://169.254.169.254/latest/api/token`
|
38
|
+
`curl -H "X-aws-ec2-metadata-token: #{token}" --silent -XGET http://169.254.169.254/latest/meta-data/public-ipv4`
|
38
39
|
end
|
39
40
|
|
40
41
|
# Determines the external port of the running Docker container that's associated with the port given
|
@@ -82,7 +82,7 @@ module Maze
|
|
82
82
|
# iOS devices
|
83
83
|
'IOS_17' => make_ios_hash('iPhone 15', '17'),
|
84
84
|
'IOS_16' => make_ios_hash('iPhone 14', '16'),
|
85
|
-
'IOS_15' => make_ios_hash('iPhone
|
85
|
+
'IOS_15' => make_ios_hash('iPhone 13', '15'),
|
86
86
|
'IOS_14' => make_ios_hash('iPhone 11', '14'),
|
87
87
|
'IOS_13' => make_ios_hash('iPhone 11', '13'),
|
88
88
|
'IOS_12' => make_ios_hash('iPhone 8', '12'),
|
@@ -65,16 +65,10 @@ edge_latest:
|
|
65
65
|
version: 'latest'
|
66
66
|
resolution: '1920x1080'
|
67
67
|
|
68
|
-
|
68
|
+
safari_18:
|
69
69
|
platform: 'macOS'
|
70
70
|
osVersion: '13'
|
71
71
|
browserName: 'safari'
|
72
|
-
version: '
|
72
|
+
version: '18'
|
73
73
|
resolution: '2560x1920'
|
74
74
|
|
75
|
-
safari_15:
|
76
|
-
platform: 'macOS'
|
77
|
-
osVersion: '12'
|
78
|
-
browserName: 'safari'
|
79
|
-
version: '15'
|
80
|
-
resolution: '2560x1920'
|
@@ -63,7 +63,8 @@ module Maze
|
|
63
63
|
#
|
64
64
|
# @returns [String] The local ipv4 address the Datadog agent is running on
|
65
65
|
def aws_instance_ip
|
66
|
-
`curl --silent -
|
66
|
+
token = `curl --silent -H "X-aws-ec2-metadata-token-ttl-seconds: 120" -XPUT http://169.254.169.254/latest/api/token`
|
67
|
+
`curl -H "X-aws-ec2-metadata-token: #{token}" --silent -XGET http://169.254.169.254/latest/meta-data/local-ipv4`
|
67
68
|
end
|
68
69
|
end
|
69
70
|
end
|
data/lib/maze.rb
CHANGED
@@ -7,7 +7,7 @@ require_relative 'maze/timers'
|
|
7
7
|
# Glues the various parts of MazeRunner together that need to be accessed globally,
|
8
8
|
# providing an alternative to the proliferation of global variables or singletons.
|
9
9
|
module Maze
|
10
|
-
VERSION = '8.20.
|
10
|
+
VERSION = '8.20.4'
|
11
11
|
|
12
12
|
class << self
|
13
13
|
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: 8.20.
|
4
|
+
version: 8.20.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steve Kirkland
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-09-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cucumber
|