Skip to content

Releases: mattiasnordqvist/Web-Anchor

v6.6.1

09 Mar 17:31
Compare
Choose a tag to compare

v6.6.0

10 Oct 10:47
e0ef175
Compare
Choose a tag to compare

Updated dependencies and removed dependency on System.Net.Http. Should be referenced through standard lib.

v6.5.1

05 Apr 08:04
Compare
Choose a tag to compare

Added analyzer and updated Castle.Core

v6.4.0

13 Feb 11:40
Compare
Choose a tag to compare
  • Implemented FormUrlEncodePropertyAttribute and it's usage. #91 Thanks to @carl-berg
  • Virtualized members of IContentSerializer-implementations to allow overriding.

v6.3.0

14 Nov 13:43
Compare
Choose a tag to compare

HttpAttribute now dicatates if content should be included in request. This enables making custom http verbs that can determine themselves weather they can send content or not.

v6.2.2

13 Jun 18:15
Compare
Choose a tag to compare
  • Can now create content parameter without name
  • ApiSettings can now hold a Data-Dictionary available from the RequestTransformContext

v6.2.1

21 May 10:08
Compare
Choose a tag to compare

Fixed #86 ParameterCreatorTransformer should yield existing parameters
Also set AllowMultiple=true on AddHeaderAttribute

v6.2.0

26 Feb 12:21
Compare
Choose a tag to compare

Multipart attribute added. Thanks to @mikegoatly !

v6.1.0

08 Feb 11:51
Compare
Choose a tag to compare

TestUtils added to WebAnchor. If you have copies of FakeResponseCreator, RequestTester, TestTransformer or WebAnchorTest in your project, you can now remove them and use the ones shipped with WebAnchor.

v6.0.0

29 Jan 15:25
Compare
Choose a tag to compare

Breaking

  • No longer support for NetStandard 1.5 and NetStandard 1.6

New features

  • A default response handler for return types of just Task introduced. Throws ApiException on all but success status codes. Useful when you don't care about the response.
  • A default response handler for return types of Task<Stream> to enable download of streaming data.

Bugfixes

  • return a Task<SomeObject> is no longer awaited by framework.