Socket
Socket
Sign inDemoInstall

hot-shots

Package Overview
Dependencies
Maintainers
1
Versions
90
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hot-shots - npm Package Compare versions

Comparing version 6.8.6 to 6.8.7

5

CHANGES.md
CHANGELOG
=========
## 6.8.6 (2019-1-28)
## 6.8.7 (2020-2-10)
* @mrknmc Fix TyperError when increment call without a callback argument
## 6.8.6 (2020-1-28)
* @ericmustin callback is not properly passed bytes argument

@@ -6,0 +9,0 @@

7

lib/statsd.js

@@ -362,3 +362,8 @@ const util = require('util'),

if (!this.socket) {
return callback(new Error('Socket not created properly. Check previous errors for details.'));
const error = 'Socket not created properly. Check previous errors for details.';
if (callback) {
return callback(new Error(error));
} else {
return console.error(error);
}
}

@@ -365,0 +370,0 @@

{
"name": "hot-shots",
"description": "Node.js client for StatsD, DogStatsD, and Telegraf",
"version": "6.8.6",
"version": "6.8.7",
"author": "Steve Ivy",

@@ -6,0 +6,0 @@ "types": "./types.d.ts",

@@ -260,2 +260,8 @@ # hot-shots

## Package versioning and security
Versions will attempt to follow semantic versioning, with major changes only coming in major versions.
npm publishing is possible by one person, [bdeitte](https://github.com/bdeitte), who has two-factor authentication enabled for publishes. Publishes only contain one additional library, unix-dgram.
## Name

@@ -262,0 +268,0 @@

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