eyes_universal 4.12.2 → 4.14.0

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: 76768c1f51f78a8bb4e83ddf1a69c03d285e43f84d864112b9f7b76df1d50b6b
4
- data.tar.gz: ca48a30922ef7c035e4aed4d9da67d3c09c9d534e0dcc1e6440f4af240a2f67d
3
+ metadata.gz: ed1143b7ad6db088fc740fcd51e52c492e7dcdaf556761af475a18cad9172db7
4
+ data.tar.gz: 5540f9d1169c9b3e83226aad0df8d61f916ad053c756c140fb043bddac7d27d2
5
5
  SHA512:
6
- metadata.gz: fb09cc64e8a9584047e7ff007ea455bd3ff8f5b15448dc15433734ea9236fdcc1f860be2545bc958353fc0ecf651bfef12d09699a34ed6636cee3eaafd3c2d9b
7
- data.tar.gz: f787a1a47c49a796d2948f6985b15733a55697525b39962e690f1dd3fc3436e0bbdca57334cc522f811019b09d05e94fc0bfb3ca097d4ef787f3bb3c9c7a9a62
6
+ metadata.gz: 956a19f10a8addb189f536ff000ee6af2bd69b5b637a77ed0d9bc6f747c161a945f640826acc1dd9e09242b951998919574ba8ef314db772124d33b5658cf6c8
7
+ data.tar.gz: 8d1e2dda8a708390239396e7927d0cc89174b8d15595c961c0ae0bcc6922a13ff0d2540f99cd83b9f3c08527467420aeac84a7b8b521c87e37ba6f280bb63718
data/CHANGELOG.md CHANGED
@@ -1,5 +1,48 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.14.0](https://github.com/Applitools-Dev/sdk/compare/ruby/eyes_universal@4.12.2...ruby/eyes_universal@4.14.0) (2024-05-01)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/dom-snapshot bumped to 4.11.1
9
+ #### Bug Fixes
10
+
11
+ * support for using unicode and just using escape with numbers ([#2241](https://github.com/Applitools-Dev/sdk/issues/2241)) ([c59f47f](https://github.com/Applitools-Dev/sdk/commit/c59f47f73585d7f308c43c9ee1845e097a2111a3))
12
+ * @applitools/driver bumped to 1.17.2
13
+ #### Bug Fixes
14
+
15
+ * cache nml client per driver ([#2336](https://github.com/Applitools-Dev/sdk/issues/2336)) ([02c09a5](https://github.com/Applitools-Dev/sdk/commit/02c09a53eb6ca6340c93365908f4c485ab389c21))
16
+ * @applitools/core-base bumped to 1.13.0
17
+ #### Features
18
+
19
+ * `matchTimeout` ([#2309](https://github.com/Applitools-Dev/sdk/issues/2309)) ([626529e](https://github.com/Applitools-Dev/sdk/commit/626529e839fd2a96ac0de98332f42873c0f387a4))
20
+ * @applitools/spec-driver-webdriver bumped to 1.1.7
21
+
22
+ * @applitools/spec-driver-selenium bumped to 1.5.78
23
+
24
+ * @applitools/spec-driver-puppeteer bumped to 1.4.7
25
+
26
+ * @applitools/screenshoter bumped to 3.8.31
27
+
28
+ * @applitools/nml-client bumped to 1.8.4
29
+
30
+ * @applitools/ec-client bumped to 1.8.4
31
+
32
+ * @applitools/core bumped to 4.14.0
33
+ #### Features
34
+
35
+ * `matchTimeout` ([#2309](https://github.com/Applitools-Dev/sdk/issues/2309)) ([626529e](https://github.com/Applitools-Dev/sdk/commit/626529e839fd2a96ac0de98332f42873c0f387a4))
36
+
37
+
38
+ #### Bug Fixes
39
+
40
+ * cache nml client per driver ([#2336](https://github.com/Applitools-Dev/sdk/issues/2336)) ([02c09a5](https://github.com/Applitools-Dev/sdk/commit/02c09a53eb6ca6340c93365908f4c485ab389c21))
41
+ * support for using unicode and just using escape with numbers ([#2241](https://github.com/Applitools-Dev/sdk/issues/2241)) ([c59f47f](https://github.com/Applitools-Dev/sdk/commit/c59f47f73585d7f308c43c9ee1845e097a2111a3))
42
+
43
+
44
+
45
+
3
46
  ## [4.12.2](https://github.com/Applitools-Dev/sdk/compare/ruby/eyes_universal@4.11.2...ruby/eyes_universal@4.12.2) (2024-04-15)
4
47
 
5
48
 
data/Rakefile CHANGED
@@ -21,7 +21,7 @@ namespace :applitools do
21
21
  DL_SCRIPT = File.expand_path("../../scripts/download-core-bin.sh", File.dirname(__FILE__))
22
22
  BINARIES_DIR = File.expand_path("ext/eyes-universal", File.dirname(__FILE__))
23
23
  ARCHIVE_NAME = "core.tar.gz"
24
- VERSION = Applitools::EyesUniversal::UNIVERSAL_CORE_VERSION
24
+ VERSION = Applitools::EyesUniversal::VERSION
25
25
 
26
26
  task :download_binaries do
27
27
  # Check if the archive or binaries already exist
Binary file
@@ -31,7 +31,7 @@ module Applitools
31
31
 
32
32
  FileUtils.chmod('+x', unpacked_binary)
33
33
  # binary_version = `#{unpacked_binary} --version`
34
- puts "[eyes-universal] Binary ready #{binary_filename} (#{Applitools::EyesUniversal::UNIVERSAL_CORE_VERSION}) at #{unpacked_binary}"
34
+ puts "[eyes-universal] Binary ready #{binary_filename} (#{Applitools::EyesUniversal::VERSION}) at #{unpacked_binary}"
35
35
  end
36
36
  end
37
37
  end
@@ -2,7 +2,6 @@
2
2
 
3
3
  module Applitools
4
4
  module EyesUniversal
5
- VERSION = '4.12.2'.freeze
6
- UNIVERSAL_CORE_VERSION = '4.10.5'.freeze
5
+ VERSION = '4.14.0'.freeze
7
6
  end
8
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.12.2
4
+ version: 4.14.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: 2024-04-15 00:00:00.000000000 Z
11
+ date: 2024-05-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: open-uri