Skip to content

Commit

Permalink
Upgrade the package to version 4.7.0 (#157)
Browse files Browse the repository at this point in the history
  • Loading branch information
sierpinskid authored Jun 27, 2024
1 parent 53c4ef6 commit f7c138a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions Assets/Plugins/StreamChat/Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
v4.7.0:
Fixes:
* 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)
* Fix client events: IStreamChatClient.AddedToChannelAsMember, IStreamChatClient.RemovedFromChannelAsMember, IStreamChatClient.ChannelInviteReceived, IStreamChatClient.ChannelInviteAccepted, IStreamChatClient.ChannelInviteRejected not being executed on the main thread
* Fix the client not reconnecting immediately after losing network connection when the network is available again
* Fix internal WebSocket client sometimes getting stuck in the Connecting state on Android when the network was not available

Features:
* 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

v4.6.0:
Improvements:
* 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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ private set
/// <summary>
/// SDK Version number
/// </summary>
public static readonly Version SDKVersion = new Version(4, 6, 0);
public static readonly Version SDKVersion = new Version(4, 7, 0);

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

0 comments on commit f7c138a

Please sign in to comment.