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

http-aws-es

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

http-aws-es - npm Package Compare versions

Comparing version 3.1.1 to 3.1.3

4

CHANGELOG.md

@@ -0,1 +1,4 @@

### 3.1.2
* Fix unicode issue. [#43][43]
### 3.1.1

@@ -23,2 +26,3 @@ * Fix DELETEs with request body e.g. `clearScroll()`. [#19][19] [#41][41]

[43]: https://github.com/TheDeveloper/http-aws-es/issues/43
[41]: https://github.com/TheDeveloper/http-aws-es/pull/41

@@ -25,0 +29,0 @@ [19]: https://github.com/TheDeveloper/http-aws-es/issues/19

6

connector.js

@@ -105,3 +105,3 @@ 'use strict';

return cancel;
return cancel;
}

@@ -130,4 +130,4 @@

let contentLength = Buffer.isBuffer(body)
? body.byteLength()
: body.length;
? body.length
: Buffer.byteLength(body);
request.headers['Content-Length'] = contentLength;

@@ -134,0 +134,0 @@ request.body = body;

{
"name": "http-aws-es",
"version": "3.1.1",
"version": "3.1.3",
"description": "Use the elasticsearch-js client with Amazon ES",

@@ -5,0 +5,0 @@ "repository": "https://github.com/TheDeveloper/http-aws-es",

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