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: cf870a821b9b9bbdd9300121415b4b1db5b93b748ee268e50162bdd883fbf5f6
4
- data.tar.gz: fde3dec8cb06fe037c950d63777e25bcba5a7ffe047017a049147dd133915f53
3
+ metadata.gz: ca24b44a12a441b2a4cd6757096d0831dcce1f33bb22daae6981e3f9230e7beb
4
+ data.tar.gz: a689d739455edadfda832ccab879d07a81e83287ae5a14248e08208618e33d78
5
5
  SHA512:
6
- metadata.gz: 85b6921ee964dcb51778d6b0fb97bb5e9550d68e216897c3c09b2c10db9f0d4047b20c261f970ff1939bf91765e312ed6673adeda067d8b7f8be63f858142b19
7
- data.tar.gz: c74a879da7668e9d170bc755b3d800bc877848231a6777da294036b5bfddf27924bf9a6a7d0a22d81ad76a9639d2a6e2bee63cf5c6fc4e6b643779e56a345d0a
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
- server_message = @port_pipe.readline.strip
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
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Applitools
4
4
  module EyesUniversal
5
- VERSION = '4.53.2'.freeze
5
+ VERSION = '4.54.0'.freeze
6
6
  end
7
7
  end
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.53.2
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-07 00:00:00.000000000 Z
11
+ date: 2025-12-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: open-uri