All Versions
116
Latest Version
Avg Release Cycle
14 days
Latest Release
-
Changelog History
Page 12
Changelog History
Page 12
-
v2.1.01 Changes
- ๐ JSON parsing errors no longer just throw out of
asJson
but are captured and can be inspected viaHttpResponse::getParsingError
. This resolves the fact that most API's do not return valid JSON for non-200 status codes. - Return CompletableFuture rather that boring old Futures for all async methods.
- ๐ JSON parsing errors no longer just throw out of
-
v2.1.00 Changes
- #259 optionally flag the config to auto register the clients with shutdownhooks.
- #165 allow forcing a simple url-encoded param POST/PUT to be multipart. This adds a new method to the body interface so bumping the minor.
-
v2.0.05 Changes
- #118 enable overriding socket and connection timeouts per request
- #72 enable passing a proxy per request. Only works with simple proxies for now.
-
v2.0.04 Changes
- Disable SSL validation with
Unirest.config().verifySsl(false)
. PLEASE DO NOT DO THIS IN PRODUCTION - Disable Automatic retries with
Unirest.config().automaticRetries(false)
- Disable SSL validation with
-
v2.0.03 Changes
- ๐ Make sure the GzipInputStream gets closed.
- ๐ Support disabling compressed results which is asked for by default
java Unirest.config().requestCompression(false);
-
v2.0.02 Changes
- UnirestException is no longer checked
- Namespaces have been migrated to new io.gitgub.openunirest namespace
- ๐ Thread leak in Options fixed