http-aws-es
Advanced tools
Comparing version 3.1.1 to 3.1.3
@@ -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 |
@@ -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", |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
8694
0