eyes_core 6.5.0 → 6.5.1

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: 4a55fe3e37a6ab165ac3c832328486c434d88848f8a3dae149bc10d8a9e76484
4
- data.tar.gz: f7b40636b778f9998ea614388c7a8451e0ef8bcee11fd9149d8c55da10782674
3
+ metadata.gz: ffb4916338839fd6ca6b15874a65fe26cffe27a156d1e6c5b59b55465327f658
4
+ data.tar.gz: 895c11c0f2843558090b0f9e86bf1900984b478af4796cfb01bf5867cb597e6e
5
5
  SHA512:
6
- metadata.gz: db88887ed469c13a4e6c48b23f8ea1c2eb574f8ac6de9c3ae1cf7f0107a4491f72ac6e7e0a90d60bc4addb9d31643d57b62478c8aa9df373a4290008820b649d
7
- data.tar.gz: 7e4da5b53ed86ec84ef524e3752a347f295f141d148ee21dd29ad29fe498a23a937625e0e09eeec975e02ceb33c5ae551deb5b7b51d5de600721ba66089058e6
6
+ metadata.gz: 17a35ac64ce18ad2fce6b3608ccee63ba281614b535b02fdc23d10e8528fce1717cbcd81031b77b0e1cadf2146a33849238379acded3daa87588b289318e9be3
7
+ data.tar.gz: 04cad673216a1b91942b3e25dea06361d47ae1f7c17132e29d4f02e170a9949348b0117cda204edd3ee41ccdc30107a0973af6eba5d5c4b155c50b2753b7b08e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,55 @@
1
1
  # Changelog
2
2
 
3
+ ## [6.5.1](https://github.com/Applitools-Dev/sdk/compare/ruby/eyes_core@6.5.0...ruby/eyes_core@6.5.1) (2025-01-19)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/socket bumped to 1.2.1
9
+ #### Bug Fixes
10
+
11
+ * mask from config property ([#2739](https://github.com/Applitools-Dev/sdk/issues/2739)) ([6840624](https://github.com/Applitools-Dev/sdk/commit/6840624f5f3f56512dce96547815904adec94704))
12
+ * @applitools/req bumped to 1.7.7
13
+ #### Bug Fixes
14
+
15
+ * memory usage going high when resource is uint8array ([#2743](https://github.com/Applitools-Dev/sdk/issues/2743)) ([d06deeb](https://github.com/Applitools-Dev/sdk/commit/d06deeb845de62e96ec623efefa90ae65a703736))
16
+ * @applitools/spec-driver-webdriver bumped to 1.1.24
17
+ #### Bug Fixes
18
+
19
+ * universal core on windows ([#2736](https://github.com/Applitools-Dev/sdk/issues/2736)) ([9bd0744](https://github.com/Applitools-Dev/sdk/commit/9bd0744ca816a020973f20645aeb2460af76f44c))
20
+ * @applitools/ufg-client bumped to 1.16.1
21
+ #### Bug Fixes
22
+
23
+ * memory usage going high when resource is uint8array ([#2743](https://github.com/Applitools-Dev/sdk/issues/2743)) ([d06deeb](https://github.com/Applitools-Dev/sdk/commit/d06deeb845de62e96ec623efefa90ae65a703736))
24
+
25
+
26
+
27
+ * @applitools/core bumped to 4.29.1
28
+ #### Bug Fixes
29
+
30
+ * mask from config property ([#2739](https://github.com/Applitools-Dev/sdk/issues/2739)) ([6840624](https://github.com/Applitools-Dev/sdk/commit/6840624f5f3f56512dce96547815904adec94704))
31
+ * universal core on windows ([#2736](https://github.com/Applitools-Dev/sdk/issues/2736)) ([9bd0744](https://github.com/Applitools-Dev/sdk/commit/9bd0744ca816a020973f20645aeb2460af76f44c))
32
+
33
+
34
+
35
+ * @applitools/screenshoter bumped to 3.10.4
36
+
37
+ * @applitools/nml-client bumped to 1.8.23
38
+
39
+ * @applitools/tunnel-client bumped to 1.6.1
40
+ #### Bug Fixes
41
+
42
+ * memory usage going high when resource is uint8array ([#2743](https://github.com/Applitools-Dev/sdk/issues/2743)) ([d06deeb](https://github.com/Applitools-Dev/sdk/commit/d06deeb845de62e96ec623efefa90ae65a703736))
43
+
44
+
45
+
46
+ * @applitools/core-base bumped to 1.22.1
47
+
48
+ * @applitools/ec-client bumped to 1.10.2
49
+
50
+ * eyes_universal bumped to 4.29.1
51
+
52
+
3
53
  ## [6.5.0](https://github.com/Applitools-Dev/sdk/compare/ruby/eyes_core@6.4.2...ruby/eyes_core@6.5.0) (2024-12-31)
4
54
 
5
55
 
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.28.0"
41
+ spec.add_dependency 'eyes_universal', "= 4.29.1"
42
42
 
43
43
  spec.add_development_dependency 'bundler'
44
44
  spec.add_development_dependency 'rake'
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Applitools
4
4
  module EyesCore
5
- VERSION = '6.5.0'.freeze
5
+ VERSION = '6.5.1'.freeze
6
6
  end
7
7
 
8
8
  VERSION = Applitools::EyesCore::VERSION
@@ -6,7 +6,17 @@ module Applitools::Utils
6
6
  extend self
7
7
 
8
8
  def underscore(str)
9
- str.gsub(/::/, '/').gsub(/([A-Z]+)([A-Z][a-z])/, '\1_\2').gsub(/([a-z\d])([A-Z])/, '\1_\2').tr('-', '_').downcase
9
+ str = str.gsub('::', '/')
10
+ str = str.gsub(/([A-Z]{2,})(?=[A-Z][a-z])|([a-z\d])([A-Z])/o) do
11
+ if Regexp.last_match(1) # Handles groups of uppercase letters like "HTMLParser"
12
+ "#{Regexp.last_match(1)}_"
13
+ else # Handles camel-case transitions like "camelCase"
14
+ "#{Regexp.last_match(2)}_#{Regexp.last_match(3)}"
15
+ end
16
+ end
17
+
18
+ # Step 3: Convert hyphens to underscores and downcase everything
19
+ str.tr('-', '_').downcase
10
20
  end
11
21
 
12
22
  def uncapitalize(str)
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.5.0
4
+ version: 6.5.1
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-12-31 00:00:00.000000000 Z
11
+ date: 2025-01-19 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.28.0
117
+ version: 4.29.1
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.28.0
124
+ version: 4.29.1
125
125
  - !ruby/object:Gem::Dependency
126
126
  name: bundler
127
127
  requirement: !ruby/object:Gem::Requirement