Socket
Socket
Sign inDemoInstall

agentkeepalive

Package Overview
Dependencies
Maintainers
4
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

agentkeepalive - npm Package Compare versions

Comparing version 3.5.2 to 3.5.3

9

History.md
3.5.3 / 2024-05-08
==================
**fixes**
* [[`d1e789f`](http://github.com/node-modules/agentkeepalive/commit/d1e789fa83c9e636514ea297876c82d7968496cc)] - fix: use Object.assign (#117) (fengmk2 <<suqian.yf@antgroup.com>>)
**others**
* [[`1b8393d`](http://github.com/node-modules/agentkeepalive/commit/1b8393ddd9896b14e5c68cef71d01548c41d9f2a)] - chore: add latest-3 tag (fengmk2 <<fengmk2@gmail.com>>)
3.5.2 / 2018-10-19

@@ -3,0 +12,0 @@ ==================

10

lib/_http_agent.js

@@ -54,3 +54,3 @@ // Copyright Joyent, Inc. and other Node contributors.

self.options = util._extend({}, options);
self.options = Object.assign({}, options);

@@ -197,4 +197,4 @@ // don't confuse net and make it think that we're connecting to a pipe

options = util._extend({}, options);
options = util._extend(options, this.options);
options = Object.assign({}, options);
options = Object.assign(options, this.options);

@@ -255,4 +255,4 @@ if (!options.servername)

var self = this;
options = util._extend({}, options);
options = util._extend(options, self.options);
options = Object.assign({}, options);
options = Object.assign(options, self.options);

@@ -259,0 +259,0 @@ if (!options.servername)

{
"name": "agentkeepalive",
"version": "3.5.2",
"version": "3.5.3",
"description": "Missing keepalive http.Agent",

@@ -17,4 +17,3 @@ "main": "index.js",

"ci": "npm run lint && npm run cov",
"lint": "eslint lib test index.js",
"autod": "autod"
"lint": "eslint lib test index.js"
},

@@ -39,5 +38,3 @@ "repository": {

"devDependencies": {
"autod": "^3.0.1",
"egg-bin": "^1.11.1",
"egg-ci": "^1.8.0",
"eslint": "^4.19.1",

@@ -50,4 +47,4 @@ "eslint-config-egg": "^6.0.0",

},
"ci": {
"version": "4, 6, 8, 10"
"publishConfig": {
"tag": "latest-3"
},

@@ -54,0 +51,0 @@ "author": "fengmk2 <fengmk2@gmail.com> (https://fengmk2.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