All Versions
45
Latest Version
Avg Release Cycle
96 days
Latest Release
-
Changelog History
Page 4
Changelog History
Page 4
-
v1.1.2 Changes
- Avoid dependency on System.Net.Http NuGet package on .NET 4.5
-
v1.1.1 Changes
- Avoid dependency on Microsoft.Net.Http on .NET 4.5
-
v1.1.0 Changes
- Add support for .NET Core (.NET Standard 1.3) - thanks to Fazouane Marouane
-
v1.0.11 Changes
- Fix a test
-
v1.0.10 Changes
- Do encode '/' in path parameters
-
v1.0.9 Changes
- Encode space as '%20' rather than '+' in path parameters
- Don't encode '/' in path parameters
-
v1.0.8 Changes
- Fix issue where query parameters not decorated with
[Query]
would always be serialized as ToString, regardless of any[SerializationMethod]
attributes
- Fix issue where query parameters not decorated with
-
v1.0.7 Changes
- Handle null paths (e.g.
[Post]
or[Get(null)]
)
- Handle null paths (e.g.
-
v1.0.6 Changes
- Support .NET 4.0 (using Microsoft.Net.Http and Microsoft.Bcl.Async as dependencies)
- URL Encode path parameters
-
v1.0.5 Changes
- Allow custom serialization of query parameters and query maps
- Add
[SerializationMethods]
attribute, to specify the default serialization method for bodies and query parameters - Move to using a builder pattern for
RestClient
, to make specifying custom serializers/deserializations/configuration easier. The old methods are still present, but are marked as deprecated. Please upgrade to the new methods (suggested by the deprecation messages).