All Versions
26
Latest Version
Avg Release Cycle
22 days
Latest Release
814 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v2.1.1
July 12, 2022 -
v2.0.0 Changes
April 06, 2022โ BREAKING CHANGES
- โ remove json property attributes (#100)
๐ Features
-
v1.1.1
February 14, 2022 -
v1.1.0 Changes
February 08, 2022 -
v1.0.0 Changes
February 01, 2022โ BREAKING CHANGES
- The library received many changes in v1.0 to make it easier to use and more maintanable in the future.
The main change is that both
Channel
andClient
classes have been separated into small modules that we call clients. (This resambles the structure of our Java library as well.) Main changes: Channel
andClient
classes are gone, and have been organized into smaller clients inStreamChat.Clients
namespace.- These clients do not maintain state as
Channel
used to did earlier where it kept thechannelType
andchannelId
in the memory. So this means that you'll need to pass inchannelType
andchannelId
to a lot of method calls inIChannelClient
. - Async method names have
Async
suffix now. - ๐ All public methods and classes have documentation.
- ๐ Identifiers has been renamed from
ID
toId
to follow Microsoft's naming guide. Such asuserID
->userId
. - A lot of data classes have been renamed to make more sense. Such as
ChannelObject
->Channel
. - ๐ Data classes have been moved to
StreamChat.Models
namespace. - Full feature parity: all backend APIs are available.
- Returned values are type of
ApiResponse
and expose rate limit informaiton withGetRateLimit()
method. - The folder structure of the project has been reorganized to follow Microsoft's recommendation.
- โ Unit tests have been improved. They are smaller, more focused and have cleanup methods.
- โ Added .NET 6.0 support.
๐ Features
- The library received many changes in v1.0 to make it easier to use and more maintanable in the future.
The main change is that both
-
v0.26.0 Changes
December 22, 2021 -
v0.24.0 Changes
December 06, 2021 -
v0.22.0 Changes
November 16, 2021- โ Add support for GetTask, DeleteChannels and DeleteUsers endpoint #64