splitclient-rb 7.0.2.pre.rc1 → 7.0.2.pre.rc2

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: 18f42ce74410c80b7d3d59ae2c77ca775ea20fdc7196f6bd6a85b4b494af55cc
4
- data.tar.gz: fc9ad53a18561a6bf8cd17b869e12be49292690be816c06a9500ff3c6e5e7054
3
+ metadata.gz: 6690e4a29801e7c5b94066c9c41e9af4fa1619bcfb67491e08ad1b2691e5d108
4
+ data.tar.gz: 4e0b809cc84b09e33c301603560802ae266e6fd77fcea9c3f03e60e0db5d2bb8
5
5
  SHA512:
6
- metadata.gz: 8858c35d174a0b1f153affbc33dd12b0690c53e31fae4ba1459813e3bc001219fc1d74977ce5fb4e4cc4fc4f4d23c791c90d6dc1682b17e663cbf76762604d56
7
- data.tar.gz: ae9e8fbd6313f2a223234547aff04a160fc231c2629e9faad8a2fdd46b0b71e59cb7a0aacc23ac07b3160fc451d6c5bac0d8a84d5c4981ca2c1aaf8bf95ab283
6
+ metadata.gz: 43c55f32345121725b0aea7ae16c40fd5e8a37673062c34838ebbb48cbf518eb4870131b055884459069862986ea9ff59eb67c84604d85b595a49bd08a533bf5
7
+ data.tar.gz: 2aabd4e3d7762f30162e6f88a67d4d3edcd7943dffaef49773db3dfaf889d5436b791a77306a8a85e8ca8105f801a0cc6e8a77b7dee69834b6736a4f7eb85f47
data/CHANGES.txt CHANGED
@@ -1,27 +1,30 @@
1
+ 7.0.2 (Nov 11, 2019)
2
+ - Fixed an issue about reducing scan commands in redis.
3
+
1
4
  7.0.1 (Oct 31, 2019)
2
- - Updated localhost mode so that parsing of test files results in JSON data for splits analogous to that returned by the Split backend.
3
- - Updated localhost mode to parse the mock data into Split objects to keep differences in operation to a minimum.
4
- - Removed specific spare code dealing with localhost operations.
5
- - Removed the disable_impressions configuration param.
6
- - Fixed an issue about Event properties were not sent to be.
7
- - Added ip_addresses_enabled to enable/disable sending MachineName and MachineIP headers when data is posted to Split Servers.
8
- - Fixed an issue about attributes in matchers.
9
- - Fixed an issue about trying to access a nil property when sending telemetry metrics.
5
+ - Updated localhost mode so that parsing of test files results in JSON data for splits analogous to that returned by the Split backend.
6
+ - Updated localhost mode to parse the mock data into Split objects to keep differences in operation to a minimum.
7
+ - Removed specific spare code dealing with localhost operations.
8
+ - Removed the disable_impressions configuration param.
9
+ - Fixed an issue about Event properties were not sent to be.
10
+ - Added ip_addresses_enabled to enable/disable sending MachineName and MachineIP headers when data is posted to Split Servers.
11
+ - Fixed an issue about attributes in matchers.
12
+ - Fixed an issue about trying to access a nil property when sending telemetry metrics.
10
13
 
11
14
  7.0.0 (Aug 23, 2019)
12
- - BREAKING CHANGE: block_until_ready is now a method in both split_client and split_manager that needs to be explicitly called. The block_until_ready parameter is now ignored if passed in the configuration, and defaults to 15s unless passed as a parameter of the block_until_ready method.
13
- - Added warning to track calls when traffic type does not belong to an existing split (only issued in the online client and when SDK is ready).
14
- - Added warning to the get_treatment's method family when split does not exist in the current environment (only issued by online client and when SDK is ready).
15
- - Added warning to the split_manager's split method when split does not exist in the current environment (only issued by online client and when SDK is ready).
16
- - Added ability to create multiple split_factory instances. Added factory counts and warnings.
17
- - Added SDK not ready impressions label.
18
- - Changed the splits method implementation in the splits_repository to make use of get_splits, which outperforms the current implementation.
15
+ - BREAKING CHANGE: block_until_ready is now a method in both split_client and split_manager that needs to be explicitly called. The block_until_ready parameter is now ignored if passed in the configuration, and defaults to 15s unless passed as a parameter of the block_until_ready method.
16
+ - Added warning to track calls when traffic type does not belong to an existing split (only issued in the online client and when SDK is ready).
17
+ - Added warning to the get_treatment's method family when split does not exist in the current environment (only issued by online client and when SDK is ready).
18
+ - Added warning to the split_manager's split method when split does not exist in the current environment (only issued by online client and when SDK is ready).
19
+ - Added ability to create multiple split_factory instances. Added factory counts and warnings.
20
+ - Added SDK not ready impressions label.
21
+ - Changed the splits method implementation in the splits_repository to make use of get_splits, which outperforms the current implementation.
19
22
 
20
23
  6.4.1 (Jul 26, 2019)
21
- - Fixed an issue in the latency metrics format preventing the synchronizer from correctly picking them up (consumer mode only). Old keys will be deleted on SDK startup.
24
+ - Fixed an issue in the latency metrics format preventing the synchronizer from correctly picking them up (consumer mode only). Old keys will be deleted on SDK startup.
22
25
 
23
26
  6.4.0 (Jul 05, 2019)
24
- - Added properties to track method.
27
+ - Added properties to track method.
25
28
 
26
29
  6.3.0 (Apr 30, 2019)
27
30
  - Added Dynamic Configurations support through two new methods that mimick the regular ones, changing the type of what is returned.
@@ -67,6 +67,8 @@ module SplitIoClient
67
67
 
68
68
  # introduced to fix incorrect latencies
69
69
  def fix_latencies
70
+ return if @adapter.exists?(impressions_metrics_key('lantencies.cleaned'))
71
+
70
72
  keys =[]
71
73
 
72
74
  23.times do |index|
@@ -88,6 +90,8 @@ module SplitIoClient
88
90
  end
89
91
  end
90
92
  end
93
+
94
+ @adapter.set_string(impressions_metrics_key('lantencies.cleaned'), '1')
91
95
  end
92
96
 
93
97
  def latencies_to_be_deleted_key_pattern_prefix(key)
@@ -1,3 +1,3 @@
1
1
  module SplitIoClient
2
- VERSION = '7.0.2.pre.rc1'
2
+ VERSION = '7.0.2.pre.rc2'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: splitclient-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.2.pre.rc1
4
+ version: 7.0.2.pre.rc2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Split Software
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-11-15 00:00:00.000000000 Z
11
+ date: 2019-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: allocation_stats