Socket
Socket
Sign inDemoInstall

@google-cloud/debug-agent

Package Overview
Dependencies
213
Maintainers
1
Versions
55
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 7.0.0 to 7.1.0

7

build/src/agent/firebase-controller.js

@@ -107,6 +107,9 @@ "use strict";

// This MUST be consistent across all debuggee instances.
this.debuggeeId = crypto
.createHash('md5')
// TODO: JSON.stringify may provide different strings if labels are added
// in different orders.
const debuggeeHash = crypto
.createHash('sha1')
.update(JSON.stringify(debuggee))
.digest('hex');
this.debuggeeId = `d-${debuggeeHash.substring(0, 8)}`;
debuggee.id = this.debuggeeId;

@@ -113,0 +116,0 @@ const debuggeeRef = this.db.ref(`cdbg/debuggees/${this.debuggeeId}`);

{
"name": "@google-cloud/debug-agent",
"version": "7.0.0",
"version": "7.1.0",
"author": "Google Inc.",

@@ -64,3 +64,3 @@ "description": "Stackdriver Debug Agent for Node.js",

"@types/console-log-level": "^1.4.0",
"@types/estree": "0.0.52",
"@types/estree": "1.0.0",
"@types/extend": "^3.0.0",

@@ -79,3 +79,3 @@ "@types/mocha": "^9.0.0",

"gts": "^3.1.0",
"linkinator": "^2.0.0",
"linkinator": "^4.0.0",
"mocha": "^9.2.2",

@@ -82,0 +82,0 @@ "mv": "^2.1.1",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc