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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 295a6ad50900ffbbeb65ae90f24af24f0bcb7147
4
- data.tar.gz: 2a35057f5bf5c742d7c560b9506f956f878dfea1
3
+ metadata.gz: 49b74f37bb4a850fc33019c6ce27ce3701c0c910
4
+ data.tar.gz: cca9ca7c75d371ae352d2f4c7a94a67648aed84c
5
5
  SHA512:
6
- metadata.gz: d1c42746db70f5693434920fa250334197c8b177dcdc9aacecbf676fa07830dba5945598209c7772a971146eaa756f15cf62421378fae93db6bed7bd3bf89d38
7
- data.tar.gz: 909c3242db0ed729132f0fae9bb80113e6ed64e2af72fac0993b65e9672165750ff025b79d23932134be755db2d93f5a60ab679ba5452b7a2ce8f7423a2bdf13
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
- result = post_api(
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
- result = post_api("#{SplitIoClient.configuration.events_uri}/testImpressions/bulk", @api_key, impressions_ip, 'SplitSDKMachineIP' => ip)
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)}")
@@ -1,3 +1,3 @@
1
1
  module SplitIoClient
2
- VERSION = '6.0.0'
2
+ VERSION = '6.0.1'
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: 6.0.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: 2018-12-17 00:00:00.000000000 Z
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