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

elastic-apm-node

Package Overview
Dependencies
Maintainers
2
Versions
162
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

elastic-apm-node - npm Package Compare versions

Comparing version 1.5.1 to 1.5.2

.vscode/launch.json

3

CHANGELOG.md

@@ -0,1 +1,4 @@

# 1.5.2 - 2018/5/11
* fix(express): string errors should not be reported
# 1.5.1 - 2018/5/10

@@ -2,0 +5,0 @@ * fix: don't throw if span callsites can't be collected

2

lib/instrumentation/modules/express.js

@@ -34,3 +34,3 @@ 'use strict'

return function (err, req, res, next) {
if ((isError(err) || typeof err === 'string') && !err[reportedSymbol]) {
if (isError(err) && !err[reportedSymbol]) {
err[reportedSymbol] = true

@@ -37,0 +37,0 @@ agent.captureError(err, { request: req })

{
"name": "elastic-apm-node",
"version": "1.5.1",
"version": "1.5.2",
"description": "The official Elastic APM agent for Node.js",

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

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