eyes_selenium 6.0.2 → 6.0.3

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: df4eb2ad8314964ce5a5c310218d30df45f675259b799c08031439aa64d1fbc9
4
- data.tar.gz: df11ea625c7329a870bb6b939241be08da977b42dc7e65149e48a46230907956
3
+ metadata.gz: bd6e17cb5ee74d73f5777c54a620f893bf25e6866bf7c07f4429df65df3e7c16
4
+ data.tar.gz: ee82efe6464b2e6f823549b66ab1a3624e6cbace99720db9db7e9170eebd9df3
5
5
  SHA512:
6
- metadata.gz: 0fc95bcf5eca8370f91cfd834341fa2c66889b19b9b4bcddadc39cad25c6c2a47ebbfa35f5277185f92fd71746b4a6505f9660ce9593952f6eb6beb09e03b525
7
- data.tar.gz: dad93af59ea644d7221c954c6df1cfb5e550d2091677ab2bb1af159ed98f669905d1222446611961987f43a79df99692e356765a5dddfc8e376a0638f20c3e7d
6
+ metadata.gz: f8f16b4816a63e85016e6305710e6078483ddebc37bce29fc73c7aab9350f6ac44a52e7564ee6612a0504bc5aa9527a95d2af690e372b434244dd2f0b00e7d05
7
+ data.tar.gz: b8e092f92e57517874af88c6bf636000a3547be379e14ad6c6c096be334ed4f129dbb6513392ea56c1e3a7edf70d42060d3cc47ff4a8dedb3618d4f1c1695f4c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Changelog
2
2
 
3
+ ## [6.0.3] (2024-02-02)
4
+
5
+ * ### Bug Fixes
6
+ * Fix Ruby 3 compatability issue with i18n integration
7
+ * Fix locate id parsing
8
+
9
+ * ### Features
10
+ * Add configure block-style of eyes_images configuration
11
+
12
+ ### Dependencies
13
+
14
+ * ### Updated
15
+ * Update version of Universal SDK Core to 4.7.0
16
+
17
+ * ### Features
18
+ * added support of proxy server url env var
19
+
20
+ * ### Bug Fixes
21
+ * losing root context after layout breakpoints reload
22
+ * add environment variable for setting ufg server ufg
23
+ * remove local environment id
24
+
3
25
  ## [6.0.2] (2024-01-03)
4
26
 
5
27
  ### Updated
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Applitools
4
4
  module EyesSelenium
5
- VERSION = '6.0.2'.freeze
5
+ VERSION = '6.0.3'.freeze
6
6
  # UNIVERSAL_CORE_VERSION = '3.6.4'.freeze
7
7
  end
8
8
  end
data/lib/eyes_selenium.rb CHANGED
@@ -54,3 +54,21 @@ if defined? Selenium::WebDriver::Driver
54
54
  end
55
55
  end
56
56
  end
57
+
58
+ # fix File.exists?
59
+ # https://github.com/pluginaweek/state_machine/blob/master/lib/state_machine/integrations/base.rb
60
+ module StateMachine
61
+ module Integrations
62
+ module Base
63
+ module ClassMethods
64
+ # The path to the locale file containing translations for this
65
+ # integration. This file will only exist for integrations that actually
66
+ # support i18n.
67
+ def locale_path
68
+ path = "#{File.dirname(__FILE__)}/#{integration_name}/locale.rb"
69
+ path if File.exist?(path)
70
+ end
71
+ end
72
+ end
73
+ end
74
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eyes_selenium
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.2
4
+ version: 6.0.3
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-01-03 00:00:00.000000000 Z
11
+ date: 2024-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: eyes_core
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 6.0.2
19
+ version: 6.0.3
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 6.0.2
26
+ version: 6.0.3
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: selenium-webdriver
29
29
  requirement: !ruby/object:Gem::Requirement