elasticsearch
Advanced tools
Comparing version 15.3.0 to 15.3.1
@@ -10,3 +10,3 @@ { | ||
"homepage": "http://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/index.html", | ||
"version": "15.3.0", | ||
"version": "15.3.1", | ||
"keywords": [ | ||
@@ -13,0 +13,0 @@ "elasticsearch", |
@@ -1,2 +0,2 @@ | ||
# elasticsearch.js 15.3.0 | ||
# elasticsearch.js 15.3.1 | ||
@@ -3,0 +3,0 @@ The official low-level Elasticsearch client for Node.js and the browser. |
@@ -22,2 +22,3 @@ /** | ||
var zlib = require('zlib'); | ||
var INVALID_PATH_REGEX = /[^\u0021-\u00ff]/ | ||
@@ -170,2 +171,7 @@ /** | ||
if (INVALID_PATH_REGEX.test(reqParams.path) === true) { | ||
cb(new TypeError('ERR_UNESCAPED_CHARACTERS: ' + reqParams.path)) | ||
return function () {} | ||
} | ||
request = this.hand.request(reqParams, function (_incoming) { | ||
@@ -172,0 +178,0 @@ incoming = _incoming; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4738790
132622