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

bugsnag

Package Overview
Dependencies
Maintainers
4
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bugsnag - npm Package Compare versions

Comparing version 1.6.0 to 1.6.1

4

CHANGELOG.md
Changelog
=========
1.6.1
-----
- Support for hostname on more recent versions of express
1.6.0

@@ -5,0 +9,0 @@ -----

2

lib/request_info.js

@@ -6,3 +6,3 @@ function requestInfo (req) {

var port = !portNumber || portNumber === 80 || portNumber === 443 ? '' : ':' + portNumber;
var full_url = req.protocol + "://" + req.host + port + req.url;
var full_url = req.protocol + "://" + (req.hostname || req.host) + port + req.url;
var request = {

@@ -9,0 +9,0 @@ url: full_url,

{
"name": "bugsnag",
"description": "Bugsnag notifier for node.js scripts",
"version": "1.6.0",
"version": "1.6.1",
"main": "./lib/bugsnag.js",

@@ -6,0 +6,0 @@ "homepage": "http://bugsnag.com",

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