This repository has been archived by the owner on Mar 11, 2022. It is now read-only.
1.1.0 (2015-07-31)
- [BREAKING CHANGE] Hostname verification and certificate chain
validation are now enabled by default. To disable these additional
checks when the client connects to the database,
setSSLAuthenticationDisabled(true)
can be called on theConnectOptions
object before you pass it to theCloudantClient
constructor. - [NEW] New API for specifying the SSLSocketFactory. This can used to
enhance security in specific environments. To set this SSLSocketFactory,
call thesetAuthenticatedModeSSLSocketFactory
method on the
ConnectOptions
object before you pass it to theCloudantClient
constructor. - [NEW] New API for deleting databases,
CloudantClient.deleteDB(String name)
- [FIX] Fixed querying of next/previous page in a descending view.
- [FIX] Fixed handling of non-ASCII characters when the platform's
default charset is not UTF-8. - [FIX] Fixed encoding of
+
,=
and&
characters when they are used
in the query part of a URL. - [IMPROVED] Changed the default number of connections per host to 6.
- [NEW] use_index option now available for
FindByIndex
. - [IMPROVED] Use Cloudant API V2 for permissions.
- [NEW] Added user-agent header to requests.
- [Deprecated] Deprecated
CloudantClient.deleteDB(String name, String confirm)
API.