Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

elasticsearch

Package Overview
Dependencies
Maintainers
3
Versions
128
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

elasticsearch - npm Package Compare versions

Comparing version 16.4.0 to 16.5.0

src/lib/apis/7_5.js

7

package.json

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc