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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 82107d1f8d181b13343e4f36f72a7e0e2a5dc93af71a1fc39a0f2626da4e4edf
4
- data.tar.gz: 16f1cf714202bb5f7a7d11ae6e537522143c2844c48ea694bb5fd52c5369b063
3
+ metadata.gz: ae14180504c34fae3fdf7b2ef28e4b57d41f27202f01c666c72d53759516682c
4
+ data.tar.gz: '048d6f23485e7c900d6efe9299d9934147e6b9ee02806155a02f7f83f6a80ea1'
5
5
  SHA512:
6
- metadata.gz: 31f01ca7716ba943f4018a9fef9492178196bc1c619f5b47aecd855f70fa711973220ae1640a1097e3f171e177c4d0a00bd71c82587cc3fc506a159779403e7e
7
- data.tar.gz: aaae9b20ceb17e1bcdf95e4d4b5814a9d72e43b3e71aae717c2778f7a3c309d35edd491bfc926c1b8eea5b12cde1efd3e0159fc6da03ed8c2cfe7360cf0ecacb
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.21.2"
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
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Applitools
4
4
  module EyesCore
5
- VERSION = '6.4.1'.freeze
5
+ VERSION = '6.4.2'.freeze
6
6
  end
7
7
 
8
8
  VERSION = Applitools::EyesCore::VERSION
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.1
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-10-29 00:00:00.000000000 Z
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.21.2
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.21.2
124
+ version: 4.24.2
125
125
  - !ruby/object:Gem::Dependency
126
126
  name: bundler
127
127
  requirement: !ruby/object:Gem::Requirement