splitclient-rb 7.0.2.pre.rc1-java → 7.0.2.pre.rc2-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES.txt +20 -17
- data/lib/splitclient-rb/cache/repositories/metrics/redis_repository.rb +4 -0
- data/lib/splitclient-rb/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 99b07947540ac1971dc7ccf9b7b3cf3d44fc8b90
|
4
|
+
data.tar.gz: c8911b0348e73e1192ebb4ca041cd3f4164a08fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe5dca7a09847b5b7688489d3a833274314774a8f4d9086ae3d09fddd41104a629d0d177bf43063708859fc4ebc2ded475ba0ac88e0b2ff9c1ed46d1fbdacfe1
|
7
|
+
data.tar.gz: 902c1067142dcc0eef6268910a9d4a3301e9ed133a1d82cc3d8552b21f932fb094b2f0386e4160dc27364df5286c13087985ae62d0afac5c69594d084c1bce10
|
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
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
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
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
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
|
-
|
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
|
-
|
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)
|
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.
|
4
|
+
version: 7.0.2.pre.rc2
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Split Software
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-11-
|
11
|
+
date: 2019-11-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|