Skip to content
Open
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
7 changes: 7 additions & 0 deletions Assets/Plugins/StreamChat/Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
v5.4.0:
Fixes:

* Fix IL2CPP build crash on Unity 6000.0.x caused by types implementing multiple closed versions of the same generic interface, which triggered a KeyNotFoundException in IL2CPP's vtable builder (VTableBuilderComponent.OverrideInterfaceMethods). An example exception looked like this:

System.Collections.Generic.KeyNotFoundException: The given key 'TDto StreamChat.Core.LowLevelClient.ISavableTo1<StreamChat.Core.InternalDTO.Models.PushNotificationSettingsInternalDTO>::SaveToDto()' was not present in the dictionary.

v5.3.0:
Features:
* Add support for [Polls API](https://getstream.io/chat/docs/unity/polls_api/)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ private set
/// <summary>
/// SDK Version number
/// </summary>
public static readonly Version SDKVersion = new Version(5, 3, 0);
public static readonly Version SDKVersion = new Version(5, 4, 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
Loading