eyes_universal 4.53.2 → 4.54.0
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ca24b44a12a441b2a4cd6757096d0831dcce1f33bb22daae6981e3f9230e7beb
|
|
4
|
+
data.tar.gz: a689d739455edadfda832ccab879d07a81e83287ae5a14248e08208618e33d78
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a86b125257e1f394c17cd503017f2dbbfa9a5db932f4a3cf05143f1be4a2d521453d270fa2977af2d464abfc48ca2621130af0ad7463fbe233cc1e6b5d8f9bdf
|
|
7
|
+
data.tar.gz: 7e5464eb38ea13ec90c5f7420b9e5ac156b04b3637cdf2ea9a3f1385798da6d4c1416257478bd9e4d33e4d1d945c46cde9f615fc5ebbb600c1dff416616ede22
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.54.0](https://github.com/Applitools-Dev/sdk/compare/ruby/eyes_universal@4.53.2...ruby/eyes_universal@4.54.0) (2025-12-14)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* @applitools/core-base bumped to 1.31.0
|
|
9
|
+
#### Features
|
|
10
|
+
|
|
11
|
+
* Baseline branch fallback list | FLD-3837 ([#3373](https://github.com/Applitools-Dev/sdk/issues/3373)) ([e94bb10](https://github.com/Applitools-Dev/sdk/commit/e94bb10ad6b49322a56e4ce6dfde560b237e9ac0))
|
|
12
|
+
* @applitools/nml-client bumped to 1.11.13
|
|
13
|
+
|
|
14
|
+
* @applitools/ec-client bumped to 1.12.15
|
|
15
|
+
|
|
16
|
+
* @applitools/core bumped to 4.54.0
|
|
17
|
+
#### Features
|
|
18
|
+
|
|
19
|
+
* Baseline branch fallback list | FLD-3837 ([#3373](https://github.com/Applitools-Dev/sdk/issues/3373)) ([e94bb10](https://github.com/Applitools-Dev/sdk/commit/e94bb10ad6b49322a56e4ce6dfde560b237e9ac0))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
3
24
|
## [4.53.2](https://github.com/Applitools-Dev/sdk/compare/ruby/eyes_universal@4.53.0...ruby/eyes_universal@4.53.2) (2025-12-07)
|
|
4
25
|
|
|
5
26
|
|
|
Binary file
|
|
@@ -86,14 +86,26 @@ module Applitools::EyesUniversal
|
|
|
86
86
|
@monitoring_thread = Process.detach(@usdk_pid)
|
|
87
87
|
|
|
88
88
|
# can print Warning from server
|
|
89
|
-
|
|
90
|
-
while server_message.to_i.zero?
|
|
91
|
-
if ENV['APPLITOOLS_SHOW_LOGS']
|
|
92
|
-
puts server_message
|
|
93
|
-
end
|
|
89
|
+
begin
|
|
94
90
|
server_message = @port_pipe.readline.strip
|
|
91
|
+
while server_message.to_i.zero?
|
|
92
|
+
if ENV['APPLITOOLS_SHOW_LOGS']
|
|
93
|
+
puts server_message
|
|
94
|
+
end
|
|
95
|
+
server_message = @port_pipe.readline.strip
|
|
96
|
+
end
|
|
97
|
+
@port = server_message.to_i
|
|
98
|
+
rescue EOFError => e
|
|
99
|
+
# Server process died before sending port number
|
|
100
|
+
process_status = @monitoring_thread.join(0.1) # Non-blocking check
|
|
101
|
+
exit_status = process_status ? process_status.value : nil
|
|
102
|
+
|
|
103
|
+
raise Applitools::EyesError.new(
|
|
104
|
+
"Universal SDK server failed to start. " \
|
|
105
|
+
"Process (PID: #{@usdk_pid}) exited #{exit_status ? "with status #{exit_status.exitstatus}" : "unexpectedly"}. " \
|
|
106
|
+
"Check that the Universal SDK binary at '#{EXECUTABLE_FILEPATH}' is valid and executable."
|
|
107
|
+
)
|
|
95
108
|
end
|
|
96
|
-
@port = server_message.to_i
|
|
97
109
|
|
|
98
110
|
@port_pipe.close_read
|
|
99
111
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: eyes_universal
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.54.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Applitools Team
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-12-
|
|
11
|
+
date: 2025-12-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: open-uri
|