-
Notifications
You must be signed in to change notification settings - Fork 1
Changes in v3
Aaron Sherber edited this page Feb 20, 2018
·
6 revisions
Although v2 of this library worked fine for most uses, there were some issues with the architecture, and it lacked a proper test suite. v3, which is coming soon, adds in unit and integration tests, squashes some bugs, adds .NET Standard 2.0 compatibility, and makes some other significant changes. Many of these are breaking changes, although since the overall design remains the same, it shouldn't be very complicated to transition. Among the visible changes are:
- All library options are now fully async. Non-async methods have been removed.
- The file format for saved configuration has been changed from XML to JSON.
-
MailmanClientused to be a descendant ofRestClientand made exposed all of that class's public properties. It now has aRestClientas a private field and exposes (and delegates) only certain properties, likeAuthenticatorandProxy.