splitclient-rb 8.3.0 → 8.3.1
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 +5 -0
- data/LICENSE +1 -1
- data/lib/splitclient-rb/exceptions.rb +1 -1
- data/lib/splitclient-rb/sse/event_source/event_parser.rb +2 -1
- data/lib/splitclient-rb/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 28b17d201426172454ca4aafc72ffa49363c20386fb5e6515e1e734d6e915f18
|
|
4
|
+
data.tar.gz: 473d7bf15d91b38d18a05006c0ebee6c013319add4153ac40245f674398ba5d0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e9c0aa0c613fb3abb35bda295ad1a9726e9ecc994b64d909b8ea12fa9b63f950785c2c46afb1592a8405871370e1dadc3ffed9e874781752a572209238b032de
|
|
7
|
+
data.tar.gz: 412dc67a3514a67def649c74db278cb3c006b8bcfbebc9cc1b231f9c9d7e565754e2b1dcc2729e1eabce33818fb2d1311d9bbcff96f715bab55b0a5413ee2358
|
data/CHANGES.txt
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
CHANGES
|
|
2
|
+
|
|
3
|
+
8.3.1 (Mar 22, 2024)
|
|
4
|
+
- Fixed ruby process hanging due to failed thread.join command, when calling destroy and a http request still active.
|
|
5
|
+
- Fixed streaming notification parser. Issue ref: https://github.com/splitio/ruby-client/issues/511
|
|
6
|
+
|
|
2
7
|
8.3.0 (Dec 11, 2023)
|
|
3
8
|
- Added support for Flag Sets on the SDK, which enables grouping feature flags and interacting with the group rather than individually (more details in our documentation):
|
|
4
9
|
- Added new variations of the get treatment methods to support evaluating flags in given flag set/s.
|
data/LICENSE
CHANGED
|
@@ -43,7 +43,8 @@ module SplitIoClient
|
|
|
43
43
|
private
|
|
44
44
|
|
|
45
45
|
def parse_event_data(data, type)
|
|
46
|
-
|
|
46
|
+
data_value = data.sub('data:', '')
|
|
47
|
+
event_data = JSON.parse(data_value.strip)
|
|
47
48
|
client_id = event_data['clientId']&.strip
|
|
48
49
|
channel = event_data['channel']&.strip
|
|
49
50
|
parsed_data = JSON.parse(event_data['data']) unless type == 'error'
|
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: 8.3.
|
|
4
|
+
version: 8.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Split Software
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-03-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: allocation_stats
|