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

@instana/collector

Package Overview
Dependencies
Maintainers
3
Versions
267
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@instana/collector - npm Package Compare versions

Comparing version 1.86.0 to 1.87.0

src/metrics/.dependencies.js.swp

6

package.json
{
"name": "@instana/collector",
"version": "1.86.0",
"version": "1.87.0",
"description": "The Instana Node.js metrics and trace data collector",

@@ -119,3 +119,3 @@ "author": {

"dependencies": {
"@instana/core": "^1.86.0",
"@instana/core": "^1.87.0",
"bunyan": "^1.8.12",

@@ -140,3 +140,3 @@ "event-loop-lag": "^1.4.0",

},
"gitHead": "09fa6a339c6a213f102fc96fe78e6432a62078d3"
"gitHead": "3054ba9cd79922ea5d334647797175922656a946"
}

@@ -62,3 +62,7 @@ 'use strict';

fs.readFile(packageJsonPath, { encoding: 'utf8' }, function(err, contents) {
if (err) {
if (err && err.code === 'ENOENT') {
// This directory does not contain a package json. This happens for example for node_modules/.cache etc.
// We can simply ignore this.
return logger.debug('No package.json at ' + packageJsonPath + ', ignoring this directory.');
} else if (err) {
return logger.info(

@@ -65,0 +69,0 @@ 'Failed to identify version of %s dependency due to: %s. This means that you will not be ' +

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