testcentricity_apps 4.0.13 → 4.0.15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/README.md +2 -1
- data/lib/testcentricity_apps/app_core/appium_connect_helper.rb +1 -1
- data/lib/testcentricity_apps/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8ab12953bace3c2088c95abe11b36fac9501a8125187ed90e26d3d98837611ec
|
4
|
+
data.tar.gz: 89a577da8c2eda0189cf22b24f006c2b2fe742df5f1edf168af30ad4d2c846b6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f3825e3b2fbea114c6d1a2e9738a90a4f336308618fcfbbaf17038043b7b5dba3136b87f9d547a154832ee694de0c073220f064146fc6b75b611cb2d593fd782
|
7
|
+
data.tar.gz: 1226fe0b2a94f0867ae6dd1b315e704600782dd80973aebf04bfbaf5adb1482a452b49a07288e6b3d2b8ebba843bc2844a46e6f6bd12d0c51e619e193b6df83f
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,21 @@
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
3
3
|
|
4
4
|
|
5
|
+
## [4.0.15] - 13-NOV-2024
|
6
|
+
|
7
|
+
### Changed
|
8
|
+
|
9
|
+
* Updated `selenium-webdriver` gem to version 4.26.0.
|
10
|
+
* Updated `rexml` gem to latest version to address ReDoS vulnerability.
|
11
|
+
|
12
|
+
|
13
|
+
## [4.0.14] - 25-SEP-2024
|
14
|
+
|
15
|
+
### Changed
|
16
|
+
|
17
|
+
* Updated `selenium-webdriver` gem to version 4.25.0.
|
18
|
+
|
19
|
+
|
5
20
|
## [4.0.13] - 01-SEP-2024
|
6
21
|
|
7
22
|
### Changed
|
data/README.md
CHANGED
@@ -29,8 +29,9 @@ A complete history of bug fixes and new features can be found in the [CHANGELOG]
|
|
29
29
|
|
30
30
|
The RubyDocs for this gem can be found [here](https://www.rubydoc.info/gems/testcentricity_apps/).
|
31
31
|
|
32
|
-
|
32
|
+
Three example projects that demonstrates the implementation of a screen object model framework using TestCentricity™ For Apps
|
33
33
|
and Cucumber can be found at the following:
|
34
|
+
* [tc_mac_calculator_demo](https://github.com/TestCentricity/tc_mac_calculator_demo)
|
34
35
|
* [tc_mobile_react_native_demo](https://github.com/TestCentricity/tc_mobile_react_native_demo)
|
35
36
|
* [tc_mobile_wdio_demo](https://github.com/TestCentricity/tc_mobile_wdio_demo)
|
36
37
|
|
@@ -572,7 +572,7 @@ module TestCentricity
|
|
572
572
|
def self.testingbot_capabilities
|
573
573
|
Environ.device = :simulator
|
574
574
|
# specify endpoint url
|
575
|
-
@endpoint = "
|
575
|
+
@endpoint = "https://#{ENV['TB_USERNAME']}:#{ENV['TB_AUTHKEY']}@hub.testingbot.com/wd/hub" if @endpoint.nil?
|
576
576
|
# define TestingBot options
|
577
577
|
options = if @capabilities.nil?
|
578
578
|
Environ.device_name = ENV['TB_DEVICE']
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: testcentricity_apps
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.
|
4
|
+
version: 4.0.15
|
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: 2024-
|
11
|
+
date: 2024-11-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -212,14 +212,14 @@ dependencies:
|
|
212
212
|
requirements:
|
213
213
|
- - '='
|
214
214
|
- !ruby/object:Gem::Version
|
215
|
-
version: 4.
|
215
|
+
version: 4.26.0
|
216
216
|
type: :runtime
|
217
217
|
prerelease: false
|
218
218
|
version_requirements: !ruby/object:Gem::Requirement
|
219
219
|
requirements:
|
220
220
|
- - '='
|
221
221
|
- !ruby/object:Gem::Version
|
222
|
-
version: 4.
|
222
|
+
version: 4.26.0
|
223
223
|
- !ruby/object:Gem::Dependency
|
224
224
|
name: test-unit
|
225
225
|
requirement: !ruby/object:Gem::Requirement
|