Releases: sketch7/FluentlyHttpClient
1.4.0: feat(middleware): logging detailed + per request config (#11)
* feat(middleware): logging detailed + per request config * update comment * add more tests for merged logging options + minor refactoring when getting options * update changelogs
1.1.0: Feature/beyond 1.0 enhancements (#5)
Features
-
request builder: implement
WithItem
which allows to set custom items that can be used to share data within the scope of request, response, and middleware. -
request builder: add
WithUserAgent
extension. -
request builder: add validation for request when 'GET' and has body content, to not be allowed. As it will blow up the underlying HttpClient.
-
request: add
Formatters
which can be useful for middleware. -
message state: extract interface
IFluentHttpMessageState
, which bothFluentHttpRequest
andFluentHttpResponse
implements.
This will allow sharing implementations for extensions methods acrossFluentHttpRequest
andFluentHttpResponse
related toItems
. -
header builder: extract interface
IFluentHttpHeaderBuilder
, which bothFluentHttpClientBuilder
andFluentHttpRequestBuilder
implements.
This will allow sharing implementations for extensions methods acrossFluentHttpClientBuilder
andFluentHttpRequestBuilder
related toHeaders
. -
http client builder: formatter JSON is now configured with camelcase property names by default.
-
http client builder: now shares request builder headers extensions such as
WithUserAgent
andWithBearerAuthentication
. -
http client builder: implement
ConfigureDefaults
which enables to configure defaults for newly created http clients. -
logger middleware: add extension method
UseLogging
. -
consts: add constants for headers and auth schemes
HeaderTypes
andAuthSchemeTypes
1.0.0
Features
-
http client factory:
Remove
now disposesIFluentHttpClient
. -
http client builder: implement
WithFormatters
to be able to configure formatters. -
http client: implement
IDisposable
in order to dispose underlyingHttpClient
. -
request builder: implement
ReturnAsString
,ReturnAsStream
andReturnAsByteArray
. -
request:
Method
andUri
has now also setters. -
request: Add
Items
in order to share state across requests/response. -
response:
StatusCode
andReasonPhrase
has now also setters. -
response:
Items
now are shared with request. -
response: Expose
Content
fromMessage
. -
middleware: Now supports arguments via
UseMiddleware<T>(args)
. -
timer middleware: Now supports options, for configure
WarnThreshold
. -
timer middleware: Add extension method
UseTimer
for convience.
Code Refactoring
-
http client builder: Rename
AddMiddleware
toUseMiddleware
. -
http client builder:
UseMiddleware<T>
, is now constrained withIFluentHttpMiddleware
. -
request: Rename
Url
toUri
.
0.3.0
Features
-
http client factory: validate options on
Add
, in order to have better errors. -
http client factory: add default options to reduce the amount of config required (when not specified).
-
http client factory:
Add
now returns newly createdFluentHttpClient
. -
http client factory: implement
WithRequestBuilderDefaults
additional hook in order customizeFluentHttpRequestBuilder
on creation. -
http client factory: implement
WithMessageHandler
in order to replace the HTTP stack for the HTTP client. -
http client factory: implement
Add
withFluentHttpClientOptions
. -
http client factory: extract interface
IFluentHttpClientFactory
fromFluentHttpClientFactory
. -
http client builder: add new method
AddMiddleware(Type)
. -
http client builder: align naming with request builder.
-
request builder: implement
WithSuccessStatus
to specify or not whether to throw or not when request is not successful. -
request builder: implement
WithCancellationToken
to be able to cancel http request. -
request builder: Http method now defaults as
Get
. -
http client: implement
Patch
andDelete
methods. -
http client: extract interface
IFluentHttpClient
fromFluentHttpClient
.
BREAKING CHANGES
IFluentHttpResponse
has been removed and addedFluentHttpResponse
instead. In addition, most ofFluentHttpResponse<T>
method has been changed withFluentHttpResponse
.
Most of the changes should only effect the internals, apart from middlewares.- Now requests created by
FluentHttpRequestBuilder
won't throw unless specified when request is not succeeded. FluentHttpClientFactory.Add
now returns the newFluentHttpClient
instance instead ofFluentHttpClientFactory
.FluentHttpClientBuilder
methods naming alignmentSetBaseUrl
=>WithBaseUrl
SetTimeout
=>WithTimeout
AddHeader
=>WithHeader
AddHeaders
=>WithHeaders
AddHeaders
=>WithHeaders
- Middleware related has been moved to
FluentlyHttpClient.Middleware
namespace, this effects:LoggerHttpMiddleware
TimerHttpMiddleware
IFluentHttpMiddleware
IFluentHttpMiddlewareRunner
FluentHttpClientFactory
usages now is changed withIFluentHttpClientFactory
FluentHttpClient
usages now is changed withIFluentHttpClient
0.2.1
Features
-
request builder: validate request on
Build
, in order to have better errors. -
request builder: implement query string
WithQueryParams
. -
request builder: implement headers
WithHeader
,WithHeaders
andWithBearerAuthentication
. -
http client: implement
Send
method withFluentHttpRequest
. -
http client builder: implement
AddHeaders
which accepts a dictionary. -
http client builder:
AddHeader
now replaces, instead of throwing when already defined.