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

hot-shots

Package Overview
Dependencies
Maintainers
1
Versions
92
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 8.3.1 to 8.3.2

4

CHANGES.md
CHANGELOG
=========
## 8.3.2 (2021-5-29)
@cmaddalozzo Close unix domain socket after unsuccessful attempts to connect
## 8.3.1 (2021-4-1)
* @dvd-z Fix date_happened to allow usage of numbers
* @bdeitte Bump y18n from 4.0.0 to 4.0.1

@@ -8,0 +10,0 @@ ## 8.3.0 (2020-12-16)

@@ -102,4 +102,10 @@ const assert = require('assert');

const socket = unixDgram.createSocket('unix_dgram');
socket.connect(udsPath);
try {
socket.connect(udsPath);
} catch (err) {
socket.close();
throw err;
}
return {

@@ -106,0 +112,0 @@ emit: socket.emit.bind(socket),

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

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

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