testcentricity_mobile 4.1.5 → 4.1.7

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: f2bae5a5a7ced282928289cfeeb9052cec7506436aada48eae7f637ed82399ed
4
- data.tar.gz: 01e13af32c0a468af12dac2915438db5cf5087b638c7a22723cdd953deee3f26
3
+ metadata.gz: 301f1e2b30c7a80d9bdbfe2d03b29cdd7084ef45ff513a0ca545c2bf1a0c5759
4
+ data.tar.gz: e6f1eb60c31387be3e1060829c7bb882d03db33b021312ac9e9ab46b06e3d547
5
5
  SHA512:
6
- metadata.gz: 88f96443e21e59b119c8458fd568ec86372b90207cbd95e5485901ba34054d63cceee9b398d62d2a58440ac3d545073a68eb8a62b14cbb8960f17487566fbf95
7
- data.tar.gz: 41b54f96ef7059b0f058b27401add9297f47206fb80829e84c29e608966e1000720190a5e8309074744c40f6a28694b170a277e680717c89cdac45a01627511d
6
+ metadata.gz: 349f6e1542be01c28d88a27b4883891c9fda7ed9aa5761d43bb17abfbd4b64b3393629de7282a082a77dff08aaa252efcc9f9dedef57e56945602776c9784a38
7
+ data.tar.gz: 21b928e0920ef3de391ebeea78f0b3ac25bb1bc4f3f51a4c51eac3b1cbc7ed1deae1ad81e85f77e39132c993034ad435bde52cac1a5d3757d207ac9bf1cd865d
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.7] - 25-NOV-2025
6
+
7
+ ### Changed
8
+
9
+ * Appium version 1.x is no longer supported.
10
+
11
+
12
+ ## [4.1.6] - 04-OCT-2025
13
+
14
+ ### Changed
15
+
16
+ * Update Nokogiri gem to address CVE-2025-6021, CVE-2025-6170, CVE-2025-49794, CVE-2025-49795, and CVE-2025-49796.
17
+ * Update REXML gem to address DoS vulnerability when parsing XML containing multiple XML declarations.
18
+ * Set default Appium version to 2.10.3 for TestingBot.
19
+
20
+
5
21
  ## [4.1.5] - 29-JUL-2025
6
22
 
7
23
  ### Changed
data/README.md CHANGED
@@ -1200,10 +1200,6 @@ Refer to [this page](https://appium.io/docs/en/2.4/guides/caps/) for information
1200
1200
  to invoking Cucumber to run your features/scenarios on locally hosted iOS or Android simulators or physical devices. Refer
1201
1201
  to [**section 8.2.3 (Starting and Stopping Appium Server)**](#starting-and-stopping-appium-server) below.
1202
1202
 
1203
- ⚠️ If you are running locally hosted mobile tests on iOS or Android simulators or devices using version 1.x of the Appium
1204
- server, the `APPIUM_SERVER_VERSION` environment variable must be set to `1` in order to ensure that the correct Appium server
1205
- endpoint is used.
1206
-
1207
1203
  #### Connecting to Locally Hosted iOS Simulators or Physical Devices
1208
1204
 
1209
1205
  You can run your automated tests on locally hosted iOS simulators or physically connected devices using Appium and XCode
@@ -1420,13 +1416,6 @@ starting your Cucumber test suite(s):
1420
1416
 
1421
1417
  run_appium: APPIUM_SERVER=run
1422
1418
 
1423
- If you are running locally hosted mobile tests on iOS or Android simulators or devices using version 1.x of the Appium server,
1424
- the `APPIUM_SERVER_VERSION` environment variable must be set to `1` in order to ensure that the correct Appium server endpoint
1425
- is used. This can be set by adding the following to your `cucumber.yml` file and including `-p appium_1x` in your command line
1426
- when starting your Cucumber test suite(s):
1427
-
1428
- appium_1x: APPIUM_SERVER_VERSION=1
1429
-
1430
1419
  Refer to [**section 8.4 (Using Configuration Specific Profiles in `cucumber.yml`)**](#using-configuration-specific-profiles-in-cucumber-yml) below.
1431
1420
 
1432
1421
 
@@ -1447,9 +1436,6 @@ body of an example group:
1447
1436
  $server.stop if Environ.driver == :appium && $server.running?
1448
1437
  end
1449
1438
  ```
1450
- If you are running locally hosted mobile tests on iOS or Android simulators or devices using version 1.x of the Appium server,
1451
- the `APPIUM_SERVER_VERSION` environment variable must be set to `1` in order to ensure that the correct Appium server endpoint
1452
- is used.
1453
1439
 
1454
1440
 
1455
1441
  ### Connecting to Remote Cloud Hosted iOS and Android Simulators or Physical Devices
@@ -1873,7 +1859,6 @@ with access to your version control system.
1873
1859
  # physical devices
1874
1860
  #==============
1875
1861
  run_appium: APPIUM_SERVER=run
1876
- appium_1x: APPIUM_SERVER_VERSION=1
1877
1862
 
1878
1863
 
1879
1864
  #==============
@@ -390,13 +390,7 @@ module TestCentricity
390
390
 
391
391
  def self.appium_local_capabilities
392
392
  # specify endpoint url
393
- if @endpoint.nil?
394
- @endpoint = if ENV['APPIUM_SERVER_VERSION'] && ENV['APPIUM_SERVER_VERSION'].to_i == 1
395
- 'http://127.0.0.1:4723/wd/hub'
396
- else
397
- 'http://127.0.0.1:4723'
398
- end
399
- end
393
+ @endpoint = 'http://127.0.0.1:4723' if @endpoint.nil?
400
394
  # define local Appium capabilities
401
395
  if @capabilities.nil?
402
396
  Environ.device_name = ENV['APP_DEVICE']
@@ -516,7 +510,7 @@ module TestCentricity
516
510
  bs_options[:gpsLocation] = ENV['GPS_LOCATION'] if ENV['GPS_LOCATION']
517
511
  bs_options[:acceptInsecureCerts] = ENV['ACCEPT_INSECURE_CERTS'] if ENV['ACCEPT_INSECURE_CERTS']
518
512
  bs_options[:disableAnimations] = ENV['DISABLE_ANIMATION'] if ENV['DISABLE_ANIMATION']
519
- bs_options[:appiumVersion] = ENV['APPIUM_VERSION'] ? ENV['APPIUM_VERSION'] : '2.12.1'
513
+ bs_options[:appiumVersion] = ENV['APPIUM_VERSION'] ? ENV['APPIUM_VERSION'] : '2.19.0'
520
514
 
521
515
  capabilities = {
522
516
  platformName: ENV['BS_OS'],
@@ -559,7 +553,7 @@ module TestCentricity
559
553
  tb_options['testingbot.geoCountryCode'] = ENV['IP_GEOLOCATION'] if ENV['IP_GEOLOCATION']
560
554
  tb_options[:screenrecorder] = ENV['RECORD_VIDEO'] if ENV['RECORD_VIDEO']
561
555
  tb_options[:screenshot] = ENV['SCREENSHOTS'] if ENV['SCREENSHOTS']
562
- tb_options[:appiumVersion] = ENV['APPIUM_VERSION'] ? ENV['APPIUM_VERSION'] : 'latest'
556
+ tb_options[:appiumVersion] = ENV['APPIUM_VERSION'] ? ENV['APPIUM_VERSION'] : '2.10.3'
563
557
 
564
558
  capabilities = {
565
559
  platformName: ENV['TB_OS'],
@@ -38,11 +38,7 @@ module TestCentricity
38
38
  # Check to see if Appium Server is running
39
39
  #
40
40
  def running?
41
- endpoint = if ENV['APPIUM_SERVER_VERSION'] && ENV['APPIUM_SERVER_VERSION'].to_i == 1
42
- 'http://0.0.0.0:4723/wd/hub/sessions'
43
- else
44
- 'http://0.0.0.0:4723/sessions'
45
- end
41
+ endpoint = 'http://0.0.0.0:4723/sessions'
46
42
  response = false
47
43
  begin
48
44
  response = Net::HTTP.get_response(URI(endpoint))
@@ -1,3 +1,3 @@
1
1
  module TestCentricityMobile
2
- VERSION = '4.1.5'
2
+ VERSION = '4.1.7'
3
3
  end
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.5
4
+ version: 4.1.7
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-07-29 00:00:00.000000000 Z
11
+ date: 2025-11-24 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: 10.0.0
33
+ version: 10.1.1
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: 10.0.0
40
+ version: 10.1.1
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: parallel_tests
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -100,14 +100,14 @@ dependencies:
100
100
  requirements:
101
101
  - - "~>"
102
102
  - !ruby/object:Gem::Version
103
- version: 4.34.0
103
+ version: 4.38.0
104
104
  type: :development
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - "~>"
109
109
  - !ruby/object:Gem::Version
110
- version: 4.34.0
110
+ version: 4.38.0
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: simplecov
113
113
  requirement: !ruby/object:Gem::Requirement