From afbb90b91f9b67467cd194ffa8002b84937824e2 Mon Sep 17 00:00:00 2001 From: Spencer Alger Date: Fri, 7 Feb 2014 13:45:22 -0700 Subject: [PATCH] version 1.5.2 --- CHANGELOG.md | 1 + README.md | 2 +- docs/about.asciidoc | 2 +- package.json | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af6c25b92..1468e4e53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ - 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.elasticsearch.org/guide/en/elasticsearch/client/javascript-api/current/configuration.html#configuration - Closing the client with `keepAlive` turned on will allow the process to exit. https://github.com/elasticsearch/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. ## 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 diff --git a/README.md b/README.md index 4b9d19451..ad80a140f 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ bower install elasticsearch ### Download - - v1.5.1: [zip](https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-1.5.1.zip), [tar.gz](https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-1.5.1.tar.gz) + - v1.5.2: [zip](https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-1.5.2.zip), [tar.gz](https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-1.5.2.tar.gz) ## Docs diff --git a/docs/about.asciidoc b/docs/about.asciidoc index 20f7c5dfc..fdec64e1f 100644 --- a/docs/about.asciidoc +++ b/docs/about.asciidoc @@ -30,7 +30,7 @@ bower install elasticsearch ==== Download - * v1.5.1: https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-1.5.1.zip[zip], https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-1.5.1.tar.gz[tar.gz] + * v1.5.2: https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-1.5.2.zip[zip], https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-1.5.2.tar.gz[tar.gz] ==== Angular Build (elasticsearch.angular.js) diff --git a/package.json b/package.json index b7752f1f4..96cf57bd3 100644 --- a/package.json +++ b/package.json @@ -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": "1.5.1", + "version": "1.5.2", "browser": { "./src/lib/connectors/index.js": "./src/lib/connectors/browser_index.js", "./src/lib/loggers/index.js": "./src/lib/loggers/browser_index.js",