Releases: go-resty/resty
Releases · go-resty/resty
v0.11 Release
This release brings following:
Feature:
- PR (@DennyLoko) #51 Request based on SRV record support (instead of Host URL)
Enhancement(s):
- #53 Added
IsProxySet()method onresty.Client - #56 Performance improvement, no more mutex and
restyis truely parallel - PR (@iRita) #60, #59 Using
http.Client.SetTimeoutfor go1.3 and above - #58 Added nil check for
RawResponse, soRetryConditionFuncimplementation at ease
Bug:
- #57 OnBeforeRequest does not change Request.RawRequest attributes
Breaking Change:
- #56 Individual Request level proxy support have been removed from
resty
v0.10 Release
This release brings following:
- Added
Request.SetContextfor go1.7 and above #44 PR #46 @ei-grad - Fix request body issue on retry #47 @jeevatkm
- Code quality improvements golint, errcheck, etc #50 @jeevatkm
- Only breaking change is HTTP methods-
- GET => MethodGet
- POST => MethodPost
- PUT => MethodPut
- DELETE => MethodDelete
- PATCH => MethodPatch
- HEAD => MethodHead
- OPTIONS => MethodOptions
- Only breaking change is HTTP methods-
v0.9 Release
This release brings following enhancements:
- Backoff Retry mechanism PR #35 #24 @keithballdotnet
- Conditional Retry on backoff mechanism PR #42 #37 @dmiller113
- Added method
SetMultiValueFormDatafor multi value form data values PR #38 @jeevatkm - Resty don't set transport's proxy settings to nil by default #39 @jeevatkm
v0.8 Release
This release brings following enhancements:
- Added method
SetMultiValueQueryParamsfor multi value query params #28 (@jeevatkm) - Added method
SetSchemefor non-http scheme option PR #30 (@aanm) - Added method
SetCloseConnectionfor optionally close connection on each request PR #31 (@aanm) - Addressed multi-goroutine data race for transport #29 (@jeevatkm)
- Code improvements
v0.7 Release
v0.6 Release
v0.5 Release
v0.4.1 Release
- Supports saving large file size too
- Introduced
Response.Size()method
v0.4 Release
v0.3 Release
- Payload support for DELETE method as per RFC7231
- Introducing
Request.SetQueryStringmethod for request query string in-addition toSetQueryParam&SetQueryParams - Codebase and godoc improvements