splitclient-rb 7.1.0.pre.rc19 → 7.1.0
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 25448aa0706bb01d755d39f0f37672188323fba39113b46cdbc290547acd4406
|
4
|
+
data.tar.gz: 2f7504d7b5a5d8ba5721676978aa59a53657a0044652d0e7219660195cd6350e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4bcdd298815c7e9a1c489de12b407de87559714d7da4fe20c6b573cda7938ccb67f279d0b633aefc103b900116991cbdd87f1280d19766869441db62c4b2d38b
|
7
|
+
data.tar.gz: e59d85956893850f14a1819628d314700e6022d433694fc13ba6f0be88792ea63d09eb35b8386456936d0edc4c8aed150453b041f68c23779b74c441508eebc4
|
data/CHANGES.txt
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
7.1.0 (Apr 30, 2020)
|
2
|
+
- Added support for the new Split streaming architecture. When enabled, the SDK will not poll for updates but instead receive notifications every time there's a change in your environments, allowing to process those much quicker. If disabled (default) or in the event of an issue, the SDK will fallback to the known polling mechanism to provide a seamless experience.
|
3
|
+
|
1
4
|
7.0.3 (Jan 20, 2020)
|
2
5
|
- Added integration tests.
|
3
6
|
- Fixed impressions labels.
|
@@ -17,12 +17,12 @@ module SplitIoClient
|
|
17
17
|
return process_success(response) if response.success?
|
18
18
|
|
19
19
|
if response.status >= 400 && response.status < 500
|
20
|
-
@config.logger.debug("
|
20
|
+
@config.logger.debug("Error connecting to: #{@config.auth_service_url}. Response status: #{response.status}")
|
21
21
|
|
22
22
|
return { push_enabled: false, retry: false }
|
23
23
|
end
|
24
24
|
|
25
|
-
@config.logger.debug("
|
25
|
+
@config.logger.debug("Error connecting to: #{@config.auth_service_url}. Response status: #{response.status}")
|
26
26
|
{ push_enabled: false, retry: true }
|
27
27
|
end
|
28
28
|
|
@@ -32,9 +32,9 @@ module SplitIoClient
|
|
32
32
|
end
|
33
33
|
|
34
34
|
def start_periodic_data_recording
|
35
|
-
|
36
|
-
|
37
|
-
|
35
|
+
impressions_sender
|
36
|
+
metrics_sender
|
37
|
+
events_sender
|
38
38
|
end
|
39
39
|
|
40
40
|
def start_periodic_fetch
|
@@ -271,15 +271,15 @@ module SplitIoClient
|
|
271
271
|
attr_accessor :streaming_enabled
|
272
272
|
|
273
273
|
def self.default_streaming_enabled
|
274
|
-
|
274
|
+
false
|
275
275
|
end
|
276
276
|
|
277
277
|
def self.default_streaming_service_url
|
278
|
-
'https://realtime.ably.io/event-stream'
|
278
|
+
'https://split-realtime.ably.io/event-stream'
|
279
279
|
end
|
280
280
|
|
281
281
|
def self.default_auth_service_url
|
282
|
-
'https://auth.split
|
282
|
+
'https://auth.split.io/api/auth'
|
283
283
|
end
|
284
284
|
|
285
285
|
def self.default_auth_retry_back_off_base
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: splitclient-rb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.1.0
|
4
|
+
version: 7.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Split Software
|
@@ -448,9 +448,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
448
448
|
version: '0'
|
449
449
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
450
450
|
requirements:
|
451
|
-
- - "
|
451
|
+
- - ">="
|
452
452
|
- !ruby/object:Gem::Version
|
453
|
-
version:
|
453
|
+
version: '0'
|
454
454
|
requirements: []
|
455
455
|
rubygems_version: 3.0.6
|
456
456
|
signing_key:
|