version 1.5.0
This commit is contained in:
@ -1,5 +1,10 @@
|
|||||||
# elasticsearch-js changelog
|
# elasticsearch-js changelog
|
||||||
|
|
||||||
|
## 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 `forever`, which will keep connections open "forever". See: http://www.elasticsearch.org/guide/en/elasticsearch/client/javascript-api/current/configuration.html#configuration
|
||||||
|
- Closing the client with `forever` turned on will allow the process to exit. #40
|
||||||
|
|
||||||
## 1.4 (Jan 30 2014)
|
## 1.4 (Jan 30 2014)
|
||||||
- The trace log messages will now diaplay the actual host connected to (without auth info) unless they are being written to a bash script
|
- The trace log messages will now diaplay the actual host connected to (without auth info) unless they are being written to a bash script
|
||||||
- API Updated with latest changes awaiting 1.0 release
|
- API Updated with latest changes awaiting 1.0 release
|
||||||
|
|||||||
@ -37,7 +37,7 @@ bower install elasticsearch
|
|||||||
|
|
||||||
### Download
|
### Download
|
||||||
|
|
||||||
- v1.4.0: [zip](https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-1.4.0.zip), [tar.gz](https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-1.4.0.tar.gz)
|
- v1.5.0: [zip](https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-1.5.0.zip), [tar.gz](https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-1.5.0.tar.gz)
|
||||||
- master: [zip](https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-master.zip), [tar.gz](https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-master.tar.gz)
|
- master: [zip](https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-master.zip), [tar.gz](https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-master.tar.gz)
|
||||||
|
|
||||||
## Docs
|
## Docs
|
||||||
|
|||||||
@ -30,7 +30,7 @@ bower install elasticsearch
|
|||||||
|
|
||||||
==== Download
|
==== Download
|
||||||
|
|
||||||
* v1.4.0: https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-1.4.0.zip[zip], https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-1.4.0.tar.gz[tar.gz]
|
* v1.5.0: https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-1.5.0.zip[zip], https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-1.5.0.tar.gz[tar.gz]
|
||||||
* master: https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-master.zip[zip], https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-master.tar.gz[tar.gz]
|
* master: https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-master.zip[zip], https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-master.tar.gz[tar.gz]
|
||||||
|
|
||||||
==== Angular Build (elasticsearch.angular.js)
|
==== Angular Build (elasticsearch.angular.js)
|
||||||
|
|||||||
@ -7,7 +7,7 @@
|
|||||||
"description": "The official low-level Elasticsearch client for Node.js and the browser.",
|
"description": "The official low-level Elasticsearch client for Node.js and the browser.",
|
||||||
"main": "src/elasticsearch.js",
|
"main": "src/elasticsearch.js",
|
||||||
"homepage": "http://www.elasticsearch.org/guide/en/elasticsearch/client/javascript-api/current/index.html",
|
"homepage": "http://www.elasticsearch.org/guide/en/elasticsearch/client/javascript-api/current/index.html",
|
||||||
"version": "1.4.0",
|
"version": "1.5.0",
|
||||||
"browser": {
|
"browser": {
|
||||||
"./src/lib/connectors/index.js": "./src/lib/connectors/browser_index.js",
|
"./src/lib/connectors/index.js": "./src/lib/connectors/browser_index.js",
|
||||||
"./src/lib/loggers/index.js": "./src/lib/loggers/browser_index.js",
|
"./src/lib/loggers/index.js": "./src/lib/loggers/browser_index.js",
|
||||||
|
|||||||
Reference in New Issue
Block a user