New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@google-cloud/compute

Package Overview
Dependencies
Maintainers
1
Versions
85
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@google-cloud/compute - npm Package Compare versions

Comparing version 2.4.3 to 2.4.4-candidate.0

2

package.json
{
"name": "@google-cloud/compute",
"description": "Google Compute Engine Client Library for Node.js",
"version": "2.4.3",
"version": "2.4.4-candidate.0",
"license": "Apache-2.0",

@@ -6,0 +6,0 @@ "author": "Google Inc.",

@@ -652,9 +652,13 @@ /*!

body.disks = body.disks || [];
body.disks.push({
autoDelete: true,
boot: true,
initializeParams: {
sourceImage: image.selfLink,
},
});
// Only push an additional disk configuration if the disk provided
// is not bootable:
if (body.disks.length === 0 || !body.disks[0].boot) {
body.disks.unshift({
autoDelete: true,
boot: true,
initializeParams: {
sourceImage: image.selfLink,
},
});
}
self.createVM(name, body, callback);

@@ -661,0 +665,0 @@ });

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