eyes_core 6.4.1 → 6.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +43 -0
- data/eyes_core.gemspec +1 -1
- data/lib/applitools/core/test_results.rb +4 -0
- data/lib/applitools/eyes_core/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: ae14180504c34fae3fdf7b2ef28e4b57d41f27202f01c666c72d53759516682c
|
4
|
+
data.tar.gz: '048d6f23485e7c900d6efe9299d9934147e6b9ee02806155a02f7f83f6a80ea1'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 59e30ca4c57d898ff653bb03c592515605cd0310eb2d6d4947d08448c0036aabffbebdcab299ede4af8e8fa42d10ad5bcf8663de6cf7839609562cf49f492e4a
|
7
|
+
data.tar.gz: 3b346f4bec8bdca577bf32cf7b909096fbacdcb967bdadd1151cddf7bc1bd785ccf439aea741d9085795668fc4bf0d4954bc4abd4aad7e4e84dea90394e3158c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,48 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [6.4.2](https://github.com/Applitools-Dev/sdk/compare/ruby/eyes_core@6.4.1...ruby/eyes_core@6.4.2) (2024-11-27)
|
4
|
+
|
5
|
+
|
6
|
+
### Dependencies
|
7
|
+
|
8
|
+
* @applitools/dom-shared bumped to 1.0.16
|
9
|
+
#### Bug Fixes
|
10
|
+
|
11
|
+
* enhance error logging in takeScreenshots and pollify functions ([#2644](https://github.com/Applitools-Dev/sdk/issues/2644)) ([2428fa5](https://github.com/Applitools-Dev/sdk/commit/2428fa500a9fd47a803aa5aca9f79e5c5b3584f9))
|
12
|
+
* @applitools/dom-snapshot bumped to 4.11.11
|
13
|
+
|
14
|
+
* @applitools/req bumped to 1.7.4
|
15
|
+
#### Bug Fixes
|
16
|
+
|
17
|
+
* set heartbeat request timeout as the request interval ([#2587](https://github.com/Applitools-Dev/sdk/issues/2587)) ([0251d27](https://github.com/Applitools-Dev/sdk/commit/0251d27d9ed44ec247732f66904ae3d4fa4123f1))
|
18
|
+
* @applitools/core bumped to 4.24.2
|
19
|
+
#### Bug Fixes
|
20
|
+
|
21
|
+
* don't populate branchName and parentBranchName when scm integration exists ([#2634](https://github.com/Applitools-Dev/sdk/issues/2634)) ([e45d671](https://github.com/Applitools-Dev/sdk/commit/e45d671e11ed40a82de1bd5ab22e757aff00b63f))
|
22
|
+
* enhance error logging in takeScreenshots and pollify functions ([#2644](https://github.com/Applitools-Dev/sdk/issues/2644)) ([2428fa5](https://github.com/Applitools-Dev/sdk/commit/2428fa500a9fd47a803aa5aca9f79e5c5b3584f9))
|
23
|
+
|
24
|
+
|
25
|
+
|
26
|
+
* @applitools/dom-capture bumped to 11.5.2
|
27
|
+
|
28
|
+
* @applitools/nml-client bumped to 1.8.19
|
29
|
+
|
30
|
+
* @applitools/tunnel-client bumped to 1.5.10
|
31
|
+
|
32
|
+
* @applitools/ufg-client bumped to 1.14.1
|
33
|
+
|
34
|
+
* @applitools/core-base bumped to 1.19.3
|
35
|
+
#### Bug Fixes
|
36
|
+
|
37
|
+
* set heartbeat request timeout as the request interval ([#2587](https://github.com/Applitools-Dev/sdk/issues/2587)) ([0251d27](https://github.com/Applitools-Dev/sdk/commit/0251d27d9ed44ec247732f66904ae3d4fa4123f1))
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
* @applitools/ec-client bumped to 1.9.15
|
42
|
+
|
43
|
+
* eyes_universal bumped to 4.24.2
|
44
|
+
|
45
|
+
|
3
46
|
## [6.4.1](https://github.com/Applitools-Dev/sdk/compare/ruby/eyes_core@6.4.0...ruby/eyes_core@6.4.1) (2024-10-29)
|
4
47
|
|
5
48
|
|
data/eyes_core.gemspec
CHANGED
@@ -38,7 +38,7 @@ Gem::Specification.new do |spec|
|
|
38
38
|
spec.add_dependency 'colorize'
|
39
39
|
spec.add_dependency 'websocket'
|
40
40
|
spec.add_dependency 'sorted_set'
|
41
|
-
spec.add_dependency 'eyes_universal', "= 4.
|
41
|
+
spec.add_dependency 'eyes_universal', "= 4.24.2"
|
42
42
|
|
43
43
|
spec.add_development_dependency 'bundler'
|
44
44
|
spec.add_development_dependency 'rake'
|
@@ -82,6 +82,10 @@ module Applitools
|
|
82
82
|
original_results['appName']
|
83
83
|
end
|
84
84
|
|
85
|
+
def steps_info
|
86
|
+
original_results['stepsInfo']
|
87
|
+
end
|
88
|
+
|
85
89
|
def session_accessibility_status
|
86
90
|
@accessibility_status ||= original_results['accessibilityStatus'] && AccessibilityStatus.new(original_results['accessibilityStatus'] || {})
|
87
91
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: eyes_core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.4.
|
4
|
+
version: 6.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Applitools Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-11-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -114,14 +114,14 @@ dependencies:
|
|
114
114
|
requirements:
|
115
115
|
- - '='
|
116
116
|
- !ruby/object:Gem::Version
|
117
|
-
version: 4.
|
117
|
+
version: 4.24.2
|
118
118
|
type: :runtime
|
119
119
|
prerelease: false
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
121
121
|
requirements:
|
122
122
|
- - '='
|
123
123
|
- !ruby/object:Gem::Version
|
124
|
-
version: 4.
|
124
|
+
version: 4.24.2
|
125
125
|
- !ruby/object:Gem::Dependency
|
126
126
|
name: bundler
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|