Comparing version 9.2.0 to 9.3.0
CHANGELOG | ||
========= | ||
## 9.3.0 (2022-10-23) | ||
* @albert-mirzoyan add stream property type to ClientOptions | ||
* @bdeitte Upgrade unix-dgram to support Node 18 | ||
## 9.2.0 (2022-7-30) | ||
@@ -5,0 +9,0 @@ * @hjr3 Add udpSocketOptions to control how UDP socket is created |
{ | ||
"name": "hot-shots", | ||
"description": "Node.js client for StatsD, DogStatsD, and Telegraf", | ||
"version": "9.2.0", | ||
"version": "9.3.0", | ||
"author": "Steve Ivy", | ||
@@ -16,3 +16,4 @@ "types": "./types.d.ts", | ||
"metrics", | ||
"telegraf" | ||
"telegraf", | ||
"backend" | ||
], | ||
@@ -39,7 +40,7 @@ "repository": { | ||
"optionalDependencies": { | ||
"unix-dgram": "2.0.x" | ||
"unix-dgram": "2.x" | ||
}, | ||
"devDependencies": { | ||
"eslint": "5.9.x", | ||
"mocha": "6.2.x", | ||
"eslint": "5.x", | ||
"mocha": "6.x", | ||
"nyc": "15.x" | ||
@@ -46,0 +47,0 @@ }, |
@@ -295,3 +295,3 @@ # hot-shots | ||
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. | ||
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](https://github.com/bnoordhuis/node-unix-dgram). | ||
@@ -298,0 +298,0 @@ ## Name |
import dgram = require("dgram"); | ||
import stream = require("stream"); | ||
@@ -23,2 +24,3 @@ declare module "hot-shots" { | ||
socket?: dgram.Socket; | ||
stream?: stream.Writable; | ||
suffix?: string; | ||
@@ -25,0 +27,0 @@ telegraf?: boolean; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
90855
1612