Docs: Fix link in changelog (#797)

The changelog had a link to `/current/configuration.html` which isn't in
the current version of the docs anymore. This changes the link from a
fully qualified link to an in-book link.

(cherry picked from commit ba6912cb82)
This commit is contained in:
Nik Everett
2019-03-28 15:13:05 -04:00
committed by spalger
parent 027956bac1
commit 4e0f785e89

View File

@ -212,7 +212,7 @@ const client = new elasticsearch.Client({
=== 1.5 (Feb 6 2014)
* Switched out `keepaliveagent` dependency with `forever-agent`, which is used in the ever popular `request` module, and is much simpler
* The option to use keep-alive is now all or nothing. `maxKeepAliveTime` and `maxKeepAliveRequests` config parameters have been replaced by `keepAlive`, which will keeps at least `minSockets` connections open forever. See: http://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/configuration.html
* The option to use keep-alive is now all or nothing. `maxKeepAliveTime` and `maxKeepAliveRequests` config parameters have been replaced by `keepAlive`, which will keeps at least `minSockets` connections open forever. See: <<configuration>>
* Closing the client with `keepAlive` turned on will allow the process to exit. https://github.com/elastic/elasticsearch-js/issues/40
* Fixed a bug that caused invalid param/type errors to not be reported properly, in the browser builds that use promises
* added the cat.threadPool to the master/1.0/1.x apis