Merge branch '3.1' of https://github.com/elasticsearch/elasticsearch-js
This commit is contained in:
@ -6,6 +6,7 @@ scripts/scratch*
|
|||||||
test/integration/yaml_suite/log
|
test/integration/yaml_suite/log
|
||||||
.aws-config.json
|
.aws-config.json
|
||||||
.idea
|
.idea
|
||||||
|
.esvm
|
||||||
|
|
||||||
## generated files
|
## generated files
|
||||||
test/integration/yaml_suite/yaml_tests*.json
|
test/integration/yaml_suite/yaml_tests*.json
|
||||||
|
|||||||
@ -3,6 +3,8 @@
|
|||||||
## 3.1 (Jan 6 2015)
|
## 3.1 (Jan 6 2015)
|
||||||
- Added HTTPS/SSL configuration options and related errors
|
- Added HTTPS/SSL configuration options and related errors
|
||||||
- `client.scroll()` requests made without a body will use the `scrollId` param as the body to prevent #113 & #174
|
- `client.scroll()` requests made without a body will use the `scrollId` param as the body to prevent #113 & #174
|
||||||
|
- Updated bluebird to `v2.8.2` - [bluebird changelog](https://github.com/petkaantonov/bluebird/blob/master/changelog.md)
|
||||||
|
- Added specific error message for 504 errors [#182](https://github.com/elasticsearch/elasticsearch-js/pull/182)
|
||||||
|
|
||||||
## 3.0 (Nov 7 2014)
|
## 3.0 (Nov 7 2014)
|
||||||
- Added apiVersion `"1.4"`, which is now the default
|
- Added apiVersion `"1.4"`, which is now the default
|
||||||
|
|||||||
@ -34,10 +34,10 @@ Check out the [Browser Builds](http://www.elasticsearch.org/guide/en/elasticsear
|
|||||||
</tr><tr>
|
</tr><tr>
|
||||||
<td>download:</td>
|
<td>download:</td>
|
||||||
<td align="center">
|
<td align="center">
|
||||||
<a href="https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-3.1.1.zip">zip</a>
|
<a href="https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-3.1.3.zip">zip</a>
|
||||||
</td>
|
</td>
|
||||||
<td align="center">
|
<td align="center">
|
||||||
<a href="https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-3.1.1.tar.gz">tar.gz</a>
|
<a href="https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-3.1.3.tar.gz">tar.gz</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
@ -14,7 +14,7 @@ bower install elasticsearch
|
|||||||
---------
|
---------
|
||||||
|
|
||||||
=== Download
|
=== Download
|
||||||
* v3.1.1: https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-3.1.1.zip[zip], https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-3.1.1.tar.gz[tar.gz]
|
* v3.1.3: https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-3.1.3.zip[zip], https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-3.1.3.tar.gz[tar.gz]
|
||||||
|
|
||||||
|
|
||||||
=== Angular Build
|
=== Angular Build
|
||||||
|
|||||||
@ -15,7 +15,7 @@ Params can either be URL string, or an object with the following properties
|
|||||||
Default ::: `"localhost"`
|
Default ::: `"localhost"`
|
||||||
|
|
||||||
`port`::
|
`port`::
|
||||||
`Number` -- The port number to use for this host
|
`Number` -- The port number to use for this host. Note the default of 9200 is only true if the params are passed as an object. If a string, then default port is evaluated based on the protocol (`80` for http, `443` for https).
|
||||||
|
|
||||||
Default ::: `9200`
|
Default ::: `9200`
|
||||||
|
|
||||||
@ -102,4 +102,4 @@ var client = new elasticsearch.Client({
|
|||||||
return selection;
|
return selection;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
-----
|
-----
|
||||||
|
|||||||
@ -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": "3.1.1",
|
"version": "3.1.3",
|
||||||
"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",
|
||||||
@ -96,4 +96,4 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=0.8 <0.11"
|
"node": ">=0.8 <0.11"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user