testcentricity_mobile 4.1.4 → 4.1.6
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/CHANGELOG.md +16 -0
- data/README.md +2 -0
- data/lib/testcentricity_mobile/app_core/appium_connect_helper.rb +2 -2
- data/lib/testcentricity_mobile/version.rb +1 -1
- data/lib/testcentricity_mobile.rb +1 -0
- metadata +19 -19
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ae8677f880d39fd72ae439f29c84d531c75ef52db5f0854005ed68bd04443e4a
|
4
|
+
data.tar.gz: 531df29401e26c9544f9fc65d0c16651879aafaf90682b2b2b6e1497b6dad839
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c8d3586d71645951b4ffbfb1330f640ea4b5536b570394fe8d3d40fcd7ea29a4b2331bf8d933a672ff151ef7e4ac6a93ecafec9ad200af414ce68b7ef95ee81
|
7
|
+
data.tar.gz: f57743549f4439b9eeb0c922c522dc970e0ebda8ac21ad15c991f53bd86301198c7c780fab714471af34211fe214ace14bc5653ef71d01ac882b6d22e5252783
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,22 @@
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
3
3
|
|
4
4
|
|
5
|
+
## [4.1.6] - 04-OCT-2025
|
6
|
+
|
7
|
+
### Changed
|
8
|
+
|
9
|
+
* Update Nokogiri gem to address CVE-2025-6021, CVE-2025-6170, CVE-2025-49794, CVE-2025-49795, and CVE-2025-49796.
|
10
|
+
* Update REXML gem to address DoS vulnerability when parsing XML containing multiple XML declarations.
|
11
|
+
* Set default Appium version to 2.10.3 for TestingBot.
|
12
|
+
|
13
|
+
|
14
|
+
## [4.1.5] - 29-JUL-2025
|
15
|
+
|
16
|
+
### Changed
|
17
|
+
|
18
|
+
* No longer bundling `selenium-webdriver` as a runtime dependency.
|
19
|
+
|
20
|
+
|
5
21
|
## [4.1.4] - 22-MAY-2025
|
6
22
|
|
7
23
|
### Changed
|
data/README.md
CHANGED
@@ -72,6 +72,7 @@ Or install it yourself as:
|
|
72
72
|
|
73
73
|
If you are using Cucumber, you need to require the following in your `env.rb` file:
|
74
74
|
```ruby
|
75
|
+
require 'selenium-webdriver'
|
75
76
|
require 'testcentricity_mobile'
|
76
77
|
```
|
77
78
|
|
@@ -79,6 +80,7 @@ If you are using Cucumber, you need to require the following in your `env.rb` fi
|
|
79
80
|
|
80
81
|
If you are using RSpec instead, you need to require the following in your `spec_helper.rb` file:
|
81
82
|
```ruby
|
83
|
+
require 'selenium-webdriver'
|
82
84
|
require 'testcentricity_mobile'
|
83
85
|
```
|
84
86
|
|
@@ -516,7 +516,7 @@ module TestCentricity
|
|
516
516
|
bs_options[:gpsLocation] = ENV['GPS_LOCATION'] if ENV['GPS_LOCATION']
|
517
517
|
bs_options[:acceptInsecureCerts] = ENV['ACCEPT_INSECURE_CERTS'] if ENV['ACCEPT_INSECURE_CERTS']
|
518
518
|
bs_options[:disableAnimations] = ENV['DISABLE_ANIMATION'] if ENV['DISABLE_ANIMATION']
|
519
|
-
bs_options[:appiumVersion] = ENV['APPIUM_VERSION'] ? ENV['APPIUM_VERSION'] : '2.
|
519
|
+
bs_options[:appiumVersion] = ENV['APPIUM_VERSION'] ? ENV['APPIUM_VERSION'] : '2.19.0'
|
520
520
|
|
521
521
|
capabilities = {
|
522
522
|
platformName: ENV['BS_OS'],
|
@@ -559,7 +559,7 @@ module TestCentricity
|
|
559
559
|
tb_options['testingbot.geoCountryCode'] = ENV['IP_GEOLOCATION'] if ENV['IP_GEOLOCATION']
|
560
560
|
tb_options[:screenrecorder] = ENV['RECORD_VIDEO'] if ENV['RECORD_VIDEO']
|
561
561
|
tb_options[:screenshot] = ENV['SCREENSHOTS'] if ENV['SCREENSHOTS']
|
562
|
-
tb_options[:appiumVersion] = ENV['APPIUM_VERSION'] ? ENV['APPIUM_VERSION'] : '
|
562
|
+
tb_options[:appiumVersion] = ENV['APPIUM_VERSION'] ? ENV['APPIUM_VERSION'] : '2.10.3'
|
563
563
|
|
564
564
|
capabilities = {
|
565
565
|
platformName: ENV['TB_OS'],
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: testcentricity_mobile
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.1.
|
4
|
+
version: 4.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- A.J. Mrozinski
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-10-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: 10.1.0
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
40
|
+
version: 10.1.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: parallel_tests
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -94,6 +94,20 @@ dependencies:
|
|
94
94
|
- - ">="
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: 3.13.0
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: selenium-webdriver
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 4.36.0
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 4.36.0
|
97
111
|
- !ruby/object:Gem::Dependency
|
98
112
|
name: simplecov
|
99
113
|
requirement: !ruby/object:Gem::Requirement
|
@@ -206,20 +220,6 @@ dependencies:
|
|
206
220
|
- - ">="
|
207
221
|
- !ruby/object:Gem::Version
|
208
222
|
version: '0'
|
209
|
-
- !ruby/object:Gem::Dependency
|
210
|
-
name: selenium-webdriver
|
211
|
-
requirement: !ruby/object:Gem::Requirement
|
212
|
-
requirements:
|
213
|
-
- - '='
|
214
|
-
- !ruby/object:Gem::Version
|
215
|
-
version: 4.32.0
|
216
|
-
type: :runtime
|
217
|
-
prerelease: false
|
218
|
-
version_requirements: !ruby/object:Gem::Requirement
|
219
|
-
requirements:
|
220
|
-
- - '='
|
221
|
-
- !ruby/object:Gem::Version
|
222
|
-
version: 4.32.0
|
223
223
|
- !ruby/object:Gem::Dependency
|
224
224
|
name: test-unit
|
225
225
|
requirement: !ruby/object:Gem::Requirement
|
@@ -311,7 +311,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
311
311
|
version: '0'
|
312
312
|
requirements:
|
313
313
|
- Appium
|
314
|
-
rubygems_version: 3.
|
314
|
+
rubygems_version: 3.4.10
|
315
315
|
signing_key:
|
316
316
|
specification_version: 4
|
317
317
|
summary: A Screen Object Model Framework for native mobile iOS and/or Android app
|