Releases: proyecto26/RestClient
Releases · proyecto26/RestClient
Release 2.6.2
Added
- Add a progress reporting callback by @lyze237 (#153).
- Add support for PATCH verb by @neegool (#185).
- Add solution to make network call on main thread by @maifeeulasad (#190).
- Add support for UPM package by @benukhanov, @tonygiang and @Hermesiss (#198).
Changed
Fixed
- Handle HTTP NO CONTENT status code (204) to prevent null reference exceptions by @L-Naej and @StevenGarberg (#188).
Removed
v2.6.1
Fixed
- Only retry when there is a network error by @aang521 (e8b6706).
- Fix new obsoletion warning in unity 2019.3 by @extrawurst (6b8e92d).
v2.6.0
v2.5.9
Release 2.5.7
Includes:
- Code refactoring
- Add default content type option to be able to disable JSON by default
Release 2.5.2
Includes:
- Add the missing properties of the UnityWebRequest system.
- Fix access modifiers from the
ResponseHelper
class in order to get access to theUnityWebRequest
object created and have more control from the code. - Add validations of the
content-type
to support WWWForm data.
Release 2.4.1
Includes:
- Add
ContentType
property from theRequestHelper
class to modify the content type of the request - Add
Retries
andRetrySecondsDelay
properties fromRequestHelper
class to retry a request - Add
EnableDebug
andRetryCallback
properties fromRequestHelper
class to debug the requests
Release 2.2.0
Includes:
- Add
BodyRaw
property from theRequestHelper
class to send raw data directly
Release 2.1.1
Includes:
- Fix exception when DownloadHandler is used to download large files
Release 2.1.0
Includes:
- Add Support for a specific DownloadHandler