vwo-sdk 1.42.0 → 1.42.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 +4 -4
- data/lib/vwo/constants.rb +2 -2
- data/lib/vwo/core/bucketer.rb +2 -2
- data/lib/vwo/core/variation_decider.rb +1 -1
- data/lib/vwo/enums.rb +1 -1
- data/lib/vwo/logger.rb +1 -1
- data/lib/vwo/schemas/settings_file.rb +1 -1
- data/lib/vwo/services/batch_events_dispatcher.rb +1 -1
- data/lib/vwo/services/batch_events_queue.rb +1 -1
- data/lib/vwo/services/event_dispatcher.rb +1 -1
- data/lib/vwo/services/hooks_manager.rb +1 -1
- data/lib/vwo/services/operand_evaluator.rb +1 -1
- data/lib/vwo/services/segment_evaluator.rb +1 -1
- data/lib/vwo/services/settings_file_manager.rb +1 -1
- data/lib/vwo/services/settings_file_processor.rb +1 -1
- data/lib/vwo/services/usage_stats.rb +1 -1
- data/lib/vwo/user_storage.rb +1 -1
- data/lib/vwo/utils/campaign.rb +1 -1
- data/lib/vwo/utils/custom_dimensions.rb +1 -1
- data/lib/vwo/utils/data_location_manager.rb +1 -1
- data/lib/vwo/utils/feature.rb +1 -1
- data/lib/vwo/utils/function.rb +1 -1
- data/lib/vwo/utils/get_account_flags.rb +1 -1
- data/lib/vwo/utils/impression.rb +1 -1
- data/lib/vwo/utils/log_message.rb +1 -1
- data/lib/vwo/utils/request.rb +1 -1
- data/lib/vwo/utils/segment.rb +1 -1
- data/lib/vwo/utils/utility.rb +1 -1
- data/lib/vwo/utils/uuid.rb +1 -1
- data/lib/vwo/utils/validations.rb +1 -1
- data/lib/vwo.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 662d7ea7b56ead5d3b260e488c944a752a909d1d2ec2d69b5036e2d34c06f5a5
|
4
|
+
data.tar.gz: cd3be26eae10c76a12e82c971b4fd2263b62fb84287b38ee4d19710e4ccc9f90
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8902d3cc0cf4087d1a8acb5807f70044c57f911a18aacda83050bf32d9f8e58dab28af5d8997663522d2ba1c7c04ec158613344fe211ae6bfb66446d7b3c9817
|
7
|
+
data.tar.gz: c34cb8ad261d180613a768c43f776b5433049399f4d22e6680bfe486c1879bbbe67da96e451fc7a0902e090cd9a486fce48346f862aad44e5749e53fb88cca40
|
data/lib/vwo/constants.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright 2019-
|
1
|
+
# Copyright 2019-2025 Wingify Software Pvt. Ltd.
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
@@ -27,7 +27,7 @@ class VWO
|
|
27
27
|
HTTP_PROTOCOL = 'http://'
|
28
28
|
HTTPS_PROTOCOL = 'https://'
|
29
29
|
URL_NAMESPACE = '6ba7b811-9dad-11d1-80b4-00c04fd430c8'
|
30
|
-
SDK_VERSION = '1.42.
|
30
|
+
SDK_VERSION = '1.42.1'
|
31
31
|
SDK_NAME = 'ruby'
|
32
32
|
VWO_DELIMITER = '_vwo_'
|
33
33
|
MAX_EVENTS_PER_REQUEST = 5000
|
data/lib/vwo/core/bucketer.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright 2019-
|
1
|
+
# Copyright 2019-2025 Wingify Software Pvt. Ltd.
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
@@ -177,7 +177,7 @@ class VWO
|
|
177
177
|
isNBv2 = VWO::Utils::GetAccountFlags.get_instance.get_isNbv2_flag
|
178
178
|
isNB = VWO::Utils::GetAccountFlags.get_instance.get_isNB_flag
|
179
179
|
|
180
|
-
if isNBv2 || isNB || campaign['isBucketingSeedEnabled']
|
180
|
+
if isNBv2 || isNB || campaign['isBucketingSeedEnabled']
|
181
181
|
user_id_for_hash_value = "#{campaign['id']}_#{user_id}"
|
182
182
|
end
|
183
183
|
|
data/lib/vwo/enums.rb
CHANGED
data/lib/vwo/logger.rb
CHANGED
data/lib/vwo/user_storage.rb
CHANGED
data/lib/vwo/utils/campaign.rb
CHANGED
data/lib/vwo/utils/feature.rb
CHANGED
data/lib/vwo/utils/function.rb
CHANGED
data/lib/vwo/utils/impression.rb
CHANGED
data/lib/vwo/utils/request.rb
CHANGED
data/lib/vwo/utils/segment.rb
CHANGED
data/lib/vwo/utils/utility.rb
CHANGED
data/lib/vwo/utils/uuid.rb
CHANGED
data/lib/vwo.rb
CHANGED