@dnlup/agent-11
Advanced tools
Comparing version 1.0.1 to 1.0.2
@@ -5,2 +5,9 @@ # Changelog | ||
### [1.0.2](https://github.com/dnlup/agent-11/compare/v1.0.1...v1.0.2) (2020-12-01) | ||
### Bug Fixes | ||
* handle port number 0 ([a50c2d0](https://github.com/dnlup/agent-11/commit/a50c2d00bee663b0b7c73859609b9fc6cc6a57d0)) | ||
### [1.0.1](https://github.com/dnlup/agent-11/compare/v1.0.0...v1.0.1) (2020-11-30) | ||
@@ -7,0 +14,0 @@ |
@@ -99,3 +99,3 @@ 'use strict' | ||
key += url.hostname | ||
if (url.port) { | ||
if (typeof url.port === 'string' || typeof url.port === 'number') { | ||
key += ':' | ||
@@ -102,0 +102,0 @@ key += url.port |
{ | ||
"name": "@dnlup/agent-11", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "A simple undici pool manager", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
11905