Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
CHANGES

8.10.1 (Jan 21, 2025)
- Fixed rule-based segment matcher.
8.10.1 (Jan 28, 2025)
- Fixed rule-based segment matcher to exit when a conition is met.
- Fixed impressions properties format in redis mode.

8.10.0 (Nov 28, 2025)
- Updated socketry gem used in streaming feature with built-in socket lib.
Expand Down
2 changes: 1 addition & 1 deletion lib/splitclient-rb/sse/event_source/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ def close(status = nil)
end
@config.logger.debug("Closing SSEClient socket")

push_status(status)
@connected.make_false
@socket.sync_close = true if @socket.is_a? OpenSSL::SSL::SSLSocket
@socket.close
@config.logger.debug("SSEClient socket state #{@socket.state}") if @socket.is_a? OpenSSL::SSL::SSLSocket
push_status(status)
rescue StandardError => e
@config.logger.error("SSEClient close Error: #{e.inspect}")
end
Expand Down
2 changes: 1 addition & 1 deletion lib/splitclient-rb/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module SplitIoClient
VERSION = '8.10.1-rc.2'
VERSION = '8.10.1'
end