splitclient-rb 8.10.1.pre.rc.2 → 8.10.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 +3 -2
- data/NOTICE.txt +5 -0
- data/lib/splitclient-rb/sse/event_source/client.rb +1 -1
- data/lib/splitclient-rb/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2d304cdaea6bfdb760db4b265461de7b794ae552f71d5c8656997d7696f81342
|
|
4
|
+
data.tar.gz: 3f11c5753e7636d8ca304f9b26677768abdafd984aaa8b5e76e406fc3674f776
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5d8534f9e0312c0420f11d27e04f927b8f4bc92936b367b48f93e038a541ff1336b223d346e3a657974ca1e02f044190e31c589fec77b75fdcf545ee80662e98
|
|
7
|
+
data.tar.gz: 2759dc40a54c790f29b44873cc01cd62868cebc6c2585f40572ae463e642d4d211fff034d5d9f0fd38637a98c3e89ec4b8d45ecc9c39f37e084f8bd8cbd551a0
|
data/CHANGES.txt
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
CHANGES
|
|
2
2
|
|
|
3
|
-
8.10.1 (Jan
|
|
4
|
-
- Fixed rule-based segment matcher.
|
|
3
|
+
8.10.1 (Jan 28, 2025)
|
|
4
|
+
- Fixed rule-based segment matcher to exit when a conition is met.
|
|
5
|
+
- Fixed impressions properties format in redis mode.
|
|
5
6
|
|
|
6
7
|
8.10.0 (Nov 28, 2025)
|
|
7
8
|
- Updated socketry gem used in streaming feature with built-in socket lib.
|
data/NOTICE.txt
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
Harness Feature Management JavaScript SDK Copyright 2024-2026 Harness Inc.
|
|
2
|
+
|
|
3
|
+
This product includes software developed at Harness Inc. (https://harness.io/).
|
|
4
|
+
|
|
5
|
+
This product includes software originally developed by Split Software, Inc. (https://www.split.io/). Copyright 2016-2024 Split Software, Inc.
|
|
@@ -43,11 +43,11 @@ module SplitIoClient
|
|
|
43
43
|
end
|
|
44
44
|
@config.logger.debug("Closing SSEClient socket")
|
|
45
45
|
|
|
46
|
+
push_status(status)
|
|
46
47
|
@connected.make_false
|
|
47
48
|
@socket.sync_close = true if @socket.is_a? OpenSSL::SSL::SSLSocket
|
|
48
49
|
@socket.close
|
|
49
50
|
@config.logger.debug("SSEClient socket state #{@socket.state}") if @socket.is_a? OpenSSL::SSL::SSLSocket
|
|
50
|
-
push_status(status)
|
|
51
51
|
rescue StandardError => e
|
|
52
52
|
@config.logger.error("SSEClient close Error: #{e.inspect}")
|
|
53
53
|
end
|
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: 8.10.1
|
|
4
|
+
version: 8.10.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Split Software
|
|
@@ -394,6 +394,7 @@ files:
|
|
|
394
394
|
- CONTRIBUTORS-GUIDE.md
|
|
395
395
|
- Gemfile
|
|
396
396
|
- LICENSE
|
|
397
|
+
- NOTICE.txt
|
|
397
398
|
- README.md
|
|
398
399
|
- Rakefile
|
|
399
400
|
- ext/murmurhash/3_x64_128.c
|