1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-11 16:32:57 +00:00

Updated version

This commit is contained in:
JKorf
2024-03-16 15:25:07 +01:00
parent 7f29275851
commit 034eb83bae
2 changed files with 17 additions and 3 deletions
+14
View File
@@ -40,6 +40,20 @@ Make a one time donation in a crypto currency of your choice. If you prefer to d
Alternatively, sponsor me on Github using [Github Sponsors](https://github.com/sponsors/JKorf).
## Release notes
* Version 7.1.0 - 16 Mar 2024
* Added initial System.Text.Json deserialization support
* Added support for setting MessageSendSizeLimit for websocket clients to limit message size
* Added Exchange name property to IRestClient and ISocketClient interface
* Abstracted out rest client deserialization so different (de)serializers can be used
* Cleaned up rest client response handling
* Continued update of websocket message handling
* Use ReadonlyMemory<byte> to represent message data to prevent copying data multiple times
* Switched back to non-async websocket message handling to remove tasks overhead
* Updated package dependencies to latest versions
* Updated unit test package dependencies and updated tests accordingly
* Moved some properties used by the RestApiClient from the BaseApiClient
* Fixed issue with multiple concurrent subscribe calls in socket client
* Version 7.0.0 - 24 Feb 2024
* Full overhaul of Websocket message handling
* Abstracted out Newtonsoft.Json references in preparation of moving to System.Text.Json