Socket
Socket
Sign inDemoInstall

rollbar

Package Overview
Dependencies
Maintainers
3
Versions
151
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rollbar - npm Package Compare versions

Comparing version 0.4.3 to 0.4.4

3

CHANGELOG.md
# Change Log
**0.4.4**
- Fix a bug when `req.socket` was undefined. ([#33](https://github.com/rollbar/node_rollbar/pull/33))
**0.4.3**

@@ -4,0 +7,0 @@ - Support HTTP proxies. ([#32](https://github.com/rollbar/node_rollbar/pull/32))

2

lib/notifier.js

@@ -264,3 +264,3 @@ var http = require('http');

var host = headers.host || '<no host>';
var proto = req.protocol || req.socket ? (req.socket.encrypted ? 'https' : 'http') : 'http';
var proto = req.protocol || (req.socket && req.socket.encrypted) ? 'https' : 'http';
var reqUrl = proto + '://' + host + (req.url || '');

@@ -267,0 +267,0 @@ var parsedUrl = url.parse(reqUrl, true);

@@ -13,3 +13,3 @@ {

],
"version": "0.4.3",
"version": "0.4.4",
"repository": "git://github.com/rollbar/node_rollbar.git",

@@ -16,0 +16,0 @@ "author": "Rollbar, Inc. <support@rollbar.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