elasticsearch
Advanced tools
Comparing version 14.0.0 to 14.1.0
@@ -10,3 +10,3 @@ { | ||
"homepage": "http://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/index.html", | ||
"version": "14.0.0", | ||
"version": "14.1.0", | ||
"keywords": [ | ||
@@ -27,4 +27,5 @@ "elasticsearch", | ||
}, | ||
"default_api_branch": "6.0", | ||
"default_api_branch": "6.1", | ||
"supported_es_branches": [ | ||
"6.1", | ||
"6.0", | ||
@@ -43,2 +44,3 @@ "5.6", | ||
"unstable_es_branches": [ | ||
"6.2", | ||
"6.x", | ||
@@ -64,2 +66,3 @@ "master" | ||
"grunt": "^1.0.1", | ||
"grunt-aws-s3": "^2.0.0", | ||
"grunt-cli": "^1.2.0", | ||
@@ -77,3 +80,2 @@ "grunt-contrib-clean": "^1.0.0", | ||
"grunt-run": "^0.6.0", | ||
"grunt-s3": "~0.2.0-alpha.3", | ||
"grunt-saucelabs": "^8.6.2", | ||
@@ -80,0 +82,0 @@ "grunt-webpack": "^1.0.11", |
@@ -1,2 +0,2 @@ | ||
# elasticsearch.js 14.0.0 | ||
# elasticsearch.js 14.1.0 | ||
@@ -3,0 +3,0 @@ The official low-level Elasticsearch client for Node.js and the browser. |
module.exports = { | ||
'_default': require('./6_0'), | ||
'_default': require('./6_1'), | ||
'6.1': require('./6_1'), | ||
'6.0': require('./6_0'), | ||
@@ -7,5 +8,5 @@ '5.6': require('./5_6'), | ||
'5.4': require('./5_4'), | ||
'5.3': require('./5_3'), | ||
'6.x': require('./6_x'), | ||
'6.2': require('./6_2'), | ||
'master': require('./master') | ||
}; |
module.exports = { | ||
get '_default'() { return require('./6_0'); }, | ||
get '_default'() { return require('./6_1'); }, | ||
get '6.1'() { return require('./6_1'); }, | ||
get '6.0'() { return require('./6_0'); }, | ||
@@ -15,3 +16,4 @@ get '5.6'() { return require('./5_6'); }, | ||
get '6.x'() { return require('./6_x'); }, | ||
get '6.2'() { return require('./6_2'); }, | ||
get 'master'() { return require('./master'); }, | ||
}; |
@@ -96,3 +96,4 @@ /** | ||
maxFreeSockets: config.keepAliveMaxFreeSockets, | ||
freeSocketKeepAliveTimeout: config.keepAliveFreeSocketTimeout | ||
freeSocketKeepAliveTimeout: config.keepAliveFreeSocketTimeout, | ||
keepAliveTimeout: config.keepAliveFreeSocketTimeout // support agentkeepalive 2.x | ||
}; | ||
@@ -99,0 +100,0 @@ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
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
3703059
57
103931