Releases: feinoujc/Mandrill.net
Releases · feinoujc/Mandrill.net
v7.1.2
v7.1.1
v6.0.0
v4.0.0
Update to .net core RC2
- add targets for netplatform1.1, netplatform1.3
- remove targets and other stuff for DNX
- update build scripts to use dotnet cli
- update dependencies for RC2
v3.0.0
v2.2.0
v2.0.22
- Build, package and test pipeline built for AppVeyor
- .NET Core support
- updated test framework to NUnit 3
- Breaking change: MandrillMergeVar content is now of type dynamic to fully support handlebar template content of any type
- Fixed bug where Headers in inbound webhook header dictionary was case sensitive
- Added support for exports api (374df94 thanks @ericthornton)
v1.0.1
Breaking changes:
- MandrillEventLocation.Latitude and Longitude properties are nullable
- Obsolete
MandrillMessage.AddGlobalMergeVars(string name, IEnumerable<Dictionary<string, string>> content)
removed. Replaced withAddGlobalMergeVars(string name, IEnumerable<Dictionary<string, object>> content)
- MandrillMessage.Headers now of type
Dictionary<string, object>
. MIME headers can have array of values (internally this will serialize asJArray
- Synchronous methods added to API interfaces, instead of extension methods. Asynchronous wrapper approach replaced with true blocking implementation to avoid deadlocks and other issues with wrapping asynchronous methods. Internally using HttpWebRequest instead of HttpClient now, to fully support blocking synchronous api calls.
refactored to use some C# 6 features