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 15.5.0 to 16.0.0

.backportrc.json

17

package.json

@@ -10,3 +10,3 @@ {

"homepage": "http://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/index.html",
"version": "15.5.0",
"version": "16.0.0",
"keywords": [

@@ -33,17 +33,7 @@ "elasticsearch",

},
"default_api_branch": "6.7",
"default_api_branch": "7.0",
"supported_es_branches": [
"7.0",
"6.7",
"6.6",
"6.5",
"6.4",
"6.3",
"6.2",
"6.1",
"6.0",
"5.6",
"2.4",
"1.7",
"0.90"
"5.6"
],

@@ -65,2 +55,3 @@ "unstable_es_branches": [

"babel-loader": "^8.0.0-beta",
"backport": "^3.0.2",
"blanket": "^1.2.3",

@@ -67,0 +58,0 @@ "bluebird": "^2.9.14",

@@ -1,2 +0,2 @@

# elasticsearch.js 15.5.0
# elasticsearch.js 16.0.0

@@ -3,0 +3,0 @@ The official low-level Elasticsearch client for Node.js and the browser.

module.exports = {
'_default': require('./7_0'),
'7.0': require('./7_0'),
'_default': require('./6_7'),
'6.7': require('./6_7'),
'6.6': require('./6_6'),
'6.5': require('./6_5'),
'6.4': require('./6_4'),
'5.6': require('./5_6'),
'6.8': require('./6_8'),

@@ -9,0 +7,0 @@ '7.1': require('./7_1'),

module.exports = {
get '_default'() { return require('./7_0'); },
get '7.0'() { return require('./7_0'); },
get '_default'() { return require('./6_7'); },
get '6.7'() { return require('./6_7'); },
get '6.6'() { return require('./6_6'); },
get '6.5'() { return require('./6_5'); },
get '6.4'() { return require('./6_4'); },
get '6.3'() { return require('./6_3'); },
get '6.2'() { return require('./6_2'); },
get '6.1'() { return require('./6_1'); },
get '6.0'() { return require('./6_0'); },
get '5.6'() { return require('./5_6'); },
get '2.4'() { return require('./2_4'); },
get '1.7'() { return require('./1_7'); },
get '0.90'() { return require('./0_90'); },
get '6.8'() { return require('./6_8'); },

@@ -17,0 +7,0 @@ get '7.1'() { return require('./7_1'); },

@@ -40,2 +40,3 @@ /**

self.requestTimeout = config.hasOwnProperty('requestTimeout') ? config.requestTimeout : 30000;
self.pingTimeout = config.hasOwnProperty('pingTimeout') ? config.pingTimeout : 3000;

@@ -207,2 +208,8 @@ if (config.hasOwnProperty('defer')) {

const pingRequest = params.path === '/' && params.method === 'HEAD';
if (pingRequest) {
const requestParam = params.hasOwnProperty('requestTimeout') && params.requestTimeout;
requestTimeout = requestParam || this.pingTimeout;
}
params.req = {

@@ -209,0 +216,0 @@ method: params.method,

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

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

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