This repository has been archived by the owner on Mar 11, 2022. It is now read-only.
Releases: cloudant/java-cloudant
Releases · cloudant/java-cloudant
1.2.3 (2015-10-14)
- [NEW] Added Basic Auth for HTTP proxies. Configure via
ConnectOption#setProxyUser
andConnectOptions#setProxyPassword
.
1.2.2 (2015-10-01)
- [CHANGED] Added default of 5 minutes for both connection and socket timeouts instead of waiting forever.
- [IMPROVED] Upgraded Apache HttpClient from 4.3.3 to 4.3.6.
1.2.1 (2015-09-14)
- [FIXED]
org.apache.http.conn.UnsupportedSchemeException: http protocol is not supported
when using a proxy server withhttp
and a server withhttps
.
1.2.0 (2015-09-10)
- [FIXED]
NullPointerException
when parsing{doc: null}
JSON in search or view results. - [FIXED] Fixed issue with pagination numbering when using
queryPage
with
a clustered DB. - [FIXED] Fixed issue where
queryPage
could not handle JSON values emitted from views. - [IMPROVED] Various documentation updates.
- [DEPRECATED]
com.cloudant.client.api.model.Page
setter methods.
1.1.2 (2015-08-14)
- [IMPROVED] Removed unconditional GET request when creating
Database
objects
This offered little protection to the developer while performing a hidden HTTP request. - [FIXED] Fixed issue where URL parameters would be appended rather than replaced. This could cause very
long URLs to be accidentally created.
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.
Release 1.0.1
1.0.0
1.0.0 release. Includes support for connecting to Cloudant Local
1.0.0-beta1
1.0.0-beta1