Skip to content

Commit b8cd340

Browse files
authored
Merge pull request #606 from splitio/prepare-release
2 parents 21f2f43 + 829d542 commit b8cd340

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGES.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
CHANGES
22

3-
8.10.1 (Jan 21, 2025)
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.
56

67
8.10.0 (Nov 28, 2025)
78
- Updated socketry gem used in streaming feature with built-in socket lib.

lib/splitclient-rb/sse/event_source/client.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ def close(status = nil)
4343
end
4444
@config.logger.debug("Closing SSEClient socket")
4545

46+
push_status(status)
4647
@connected.make_false
4748
@socket.sync_close = true if @socket.is_a? OpenSSL::SSL::SSLSocket
4849
@socket.close
4950
@config.logger.debug("SSEClient socket state #{@socket.state}") if @socket.is_a? OpenSSL::SSL::SSLSocket
50-
push_status(status)
5151
rescue StandardError => e
5252
@config.logger.error("SSEClient close Error: #{e.inspect}")
5353
end

lib/splitclient-rb/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module SplitIoClient
2-
VERSION = '8.10.1-rc.2'
2+
VERSION = '8.10.1'
33
end

0 commit comments

Comments
 (0)