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

@baiducloud/sdk

Package Overview
Dependencies
Maintainers
5
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@baiducloud/sdk - npm Package Compare versions

Comparing version 1.0.0-rc.34 to 1.0.0-rc.35

4

CHANGELOG.md
# CHANGELOG
## 1.0.0-rc.35(2022-05-05)
- BOSClient: Just keep an array of all of buffers and concat at the end.
## 1.0.0-rc.34(2021-12-15)

@@ -4,0 +8,0 @@

2

package.json
{
"name": "@baiducloud/sdk",
"version": "1.0.0-rc.34",
"version": "1.0.0-rc.35",
"description": "Baidu Cloud Engine JavaScript SDK",

@@ -5,0 +5,0 @@ "main": "./index.js",

@@ -536,3 +536,3 @@ /**

}).then(function (response) {
response.body = outputStream.store;
response.body = Buffer.concat(outputStream);
return response;

@@ -539,0 +539,0 @@ });

@@ -31,3 +31,3 @@ /**

this.store = new Buffer('');
this.store = [];
}

@@ -38,3 +38,3 @@ util.inherits(WMStream, stream.Writable);

var buffer = Buffer.isBuffer(chunk) ? chunk : new Buffer(chunk, enc);
this.store = Buffer.concat([this.store, buffer]);
this.store.push(buffer);

@@ -41,0 +41,0 @@ cb();

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