Skip to content

Commit f7c138a

Browse files
authored
Upgrade the package to version 4.7.0 (#157)
1 parent 53c4ef6 commit f7c138a

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

Assets/Plugins/StreamChat/Changelog.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
v4.7.0:
2+
Fixes:
3+
* Fix the IStreamChannel instance provided by an event not triggering its own events (the channel was not being watched if it was only returned via event)
4+
* Fix client events: IStreamChatClient.AddedToChannelAsMember, IStreamChatClient.RemovedFromChannelAsMember, IStreamChatClient.ChannelInviteReceived, IStreamChatClient.ChannelInviteAccepted, IStreamChatClient.ChannelInviteRejected not being executed on the main thread
5+
* Fix the client not reconnecting immediately after losing network connection when the network is available again
6+
* Fix internal WebSocket client sometimes getting stuck in the Connecting state on Android when the network was not available
7+
8+
Features:
9+
* Add state recovery after the disconnected period - once the client reconnects, it will fetch any missed events (like new messages, etc.) from the server and reconstruct the missed state
10+
111
v4.6.0:
212
Improvements:
313
* Added client events that are fired when the local user is added to a new channel -> IStreamChatClient.AddedToChannelAsMember or removed from a channel IStreamChatClient.RemovedFromChannelAsMember - These two events fire only for channels that are not tracked locally. For tracked channels, the IStreamChannel.MemberAdded & IStreamChannel.MemberRemoved should be used

Assets/Plugins/StreamChat/Core/LowLevelClient/StreamChatLowLevelClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ private set
205205
/// <summary>
206206
/// SDK Version number
207207
/// </summary>
208-
public static readonly Version SDKVersion = new Version(4, 6, 0);
208+
public static readonly Version SDKVersion = new Version(4, 7, 0);
209209

210210
/// <summary>
211211
/// Use this method to create the main client instance or use StreamChatClient constructor to create a client instance with custom dependencies

0 commit comments

Comments
 (0)