Merge branch '2.4'

Conflicts:
	scripts/_utils.sh
This commit is contained in:
Spencer Alger
2014-10-01 08:57:55 -07:00
5 changed files with 6 additions and 5 deletions

View File

@ -2,6 +2,7 @@
## 2.4 (Jul 30 2014)
- Added apiVersion `"1.3"`, which is now the default
- Angular connector (when used with Basic Auth) no longer modifies Angular's default headers.
## 2.3 (Jul 11 2014)
- Added support for Node 0.11

View File

@ -34,10 +34,10 @@ Check out the [Browser Builds](http://www.elasticsearch.org/guide/en/elasticsear
</tr><tr>
<td>download:</td>
<td align="center">
<a href="https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-2.4.0.zip">zip</a>
<a href="https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-2.4.3.zip">zip</a>
</td>
<td align="center">
<a href="https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-2.4.0.tar.gz">tar.gz</a>
<a href="https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-2.4.3.tar.gz">tar.gz</a>
</td>
</tr>
</table>

View File

@ -12,7 +12,7 @@ client.search({
q: 'title:test'
}, function getMoreUntilDone(error, response) {
// collect the title from each response
response.hits.hists.forEach(function (hit) {
response.hits.hits.forEach(function (hit) {
allTitles.push(hit.fields.title);
});

View File

@ -14,7 +14,7 @@ bower install elasticsearch
---------
=== Download
* v2.4.0: https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-2.4.0.zip[zip], https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-2.4.0.tar.gz[tar.gz]
* v2.4.3: https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-2.4.3.zip[zip], https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-2.4.3.tar.gz[tar.gz]
=== Angular Build

View File

@ -7,7 +7,7 @@
"description": "The official low-level Elasticsearch client for Node.js and the browser.",
"main": "src/elasticsearch.js",
"homepage": "http://www.elasticsearch.org/guide/en/elasticsearch/client/javascript-api/current/index.html",
"version": "2.4.0",
"version": "2.4.3",
"browser": {
"./src/lib/connectors/index.js": "./src/lib/connectors/browser_index.js",
"./src/lib/loggers/index.js": "./src/lib/loggers/browser_index.js",