splitclient-rb 6.0.0-java → 6.0.1-java
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/CHANGES.txt +3 -0
- data/NEWS +5 -0
- data/lib/splitclient-rb/engine/api/events.rb +1 -1
- data/lib/splitclient-rb/engine/api/impressions.rb +1 -1
- 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: 49b74f37bb4a850fc33019c6ce27ce3701c0c910
|
4
|
+
data.tar.gz: cca9ca7c75d371ae352d2f4c7a94a67648aed84c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 842aa6ca21dc5792b00f59ddc97bd7eb35ca026efdf1e0f42772669f9897e43e1451a7a60b0c32569cd44a377d1c700edec751729297f63c4ab40a03eaf67056
|
7
|
+
data.tar.gz: 293bff21e14e70799f68582c157ba263079469e4b4333bc5242b0cff12ac1241b045b56091d75a531dd7f77c7fcd2f7784f03488bb843befaac0380fb185e113
|
data/CHANGES.txt
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
6.0.1 (Jan 7th, 2019)
|
2
|
+
- Fix an issue in events and impressions API calls log messages caused by a wrong variable name introduced in 6.0.0
|
3
|
+
|
1
4
|
6.0.0 (December 17th, 2018)
|
2
5
|
- Change `sender` and `store` classes to reuse Faraday connections, preventing issues with net-http-persistent 3.0
|
3
6
|
- Remove producer mode and make `memory + standalone` and `Redis + consumer` the only valid SDK modes. This is a breaking change
|
data/NEWS
CHANGED
@@ -1,4 +1,9 @@
|
|
1
|
+
6.0.1
|
2
|
+
|
3
|
+
Fix an issue in events and impressions API calls log messages introduced in 6.0.0
|
4
|
+
|
1
5
|
6.0.0
|
6
|
+
|
2
7
|
Remove producer mode, make memory adapter mandatory in standalone mode, and Redis adapter mandatory in consumer mode. This is a breaking change.
|
3
8
|
Reduce the total number of Redis operations of the SDK by changing the impressions storage format and adding a memory cache for splits and segments.
|
4
9
|
SDK is now compatible with net-http-persistent 3.0.
|
@@ -12,7 +12,7 @@ module SplitIoClient
|
|
12
12
|
end
|
13
13
|
|
14
14
|
events.each_slice(SplitIoClient.configuration.events_queue_size) do |events_slice|
|
15
|
-
|
15
|
+
response = post_api(
|
16
16
|
"#{SplitIoClient.configuration.events_uri}/events/bulk",
|
17
17
|
@api_key,
|
18
18
|
events_slice.map { |event| formatted_event(event[:e]) },
|
@@ -12,7 +12,7 @@ module SplitIoClient
|
|
12
12
|
end
|
13
13
|
|
14
14
|
impressions_by_ip(impressions).each do |ip, impressions_ip|
|
15
|
-
|
15
|
+
response = post_api("#{SplitIoClient.configuration.events_uri}/testImpressions/bulk", @api_key, impressions_ip, 'SplitSDKMachineIP' => ip)
|
16
16
|
|
17
17
|
if response.success?
|
18
18
|
SplitLogger.log_if_debug("Impressions reported: #{total_impressions(impressions)}")
|
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: 6.0.
|
4
|
+
version: 6.0.1
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Split Software
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-01-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|