elasticsearch
Advanced tools
Comparing version 16.4.0 to 16.5.0
@@ -10,3 +10,3 @@ { | ||
"homepage": "https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/16.x/index.html", | ||
"version": "16.4.0", | ||
"version": "16.5.0", | ||
"keywords": [ | ||
@@ -33,4 +33,5 @@ "elasticsearch", | ||
}, | ||
"default_api_branch": "7.3", | ||
"default_api_branch": "7.4", | ||
"supported_es_branches": [ | ||
"7.4", | ||
"7.3", | ||
@@ -44,3 +45,3 @@ "7.2", | ||
"unstable_es_branches": [ | ||
"7.4", | ||
"7.5", | ||
"7.x", | ||
@@ -47,0 +48,0 @@ "master" |
@@ -1,2 +0,2 @@ | ||
# elasticsearch.js 16.4.0 | ||
# elasticsearch.js 16.5.0 | ||
@@ -52,3 +52,3 @@ --- | ||
Elasticsearch.js provides support for, and is regularly tested against, Elasticsearch releases 0.90.12 and greater. We also test against the latest changes in several branches in the Elasticsearch repository. To tell the client which version of Elastisearch you are using, and therefore the API it should provide, set the `apiVersion` config param. [More info](https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/16.x/configuration.html#config-options) | ||
Elasticsearch.js provides support for, and is regularly tested against, Elasticsearch releases 0.90.12 and greater. We also test against the latest changes in several branches in the Elasticsearch repository. To tell the client which version of Elasticsearch you are using, and therefore the API it should provide, set the `apiVersion` config param. [More info](https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/16.x/configuration.html#config-options) | ||
@@ -55,0 +55,0 @@ ## Examples |
module.exports = { | ||
'_default': require('./7_3'), | ||
'_default': require('./7_4'), | ||
'7.4': require('./7_4'), | ||
'7.3': require('./7_3'), | ||
@@ -7,6 +8,5 @@ '7.2': require('./7_2'), | ||
'7.0': require('./7_0'), | ||
'6.8': require('./6_8'), | ||
'7.4': require('./7_4'), | ||
'7.5': require('./7_5'), | ||
'7.x': require('./7_x'), | ||
'master': require('./master') | ||
}; |
module.exports = { | ||
get '_default'() { return require('./7_3'); }, | ||
get '_default'() { return require('./7_4'); }, | ||
get '7.4'() { return require('./7_4'); }, | ||
get '7.3'() { return require('./7_3'); }, | ||
@@ -9,5 +10,5 @@ get '7.2'() { return require('./7_2'); }, | ||
get '5.6'() { return require('./5_6'); }, | ||
get '7.4'() { return require('./7_4'); }, | ||
get '7.5'() { return require('./7_5'); }, | ||
get '7.x'() { return require('./7_x'); }, | ||
get 'master'() { return require('./master'); }, | ||
}; |
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
2716096
57
74789