🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

node-gyp

Package Overview
Dependencies
Maintainers
3
Versions
161
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-gyp - npm Package Compare versions

Comparing version
12.3.0
to
12.4.0
+1
-1
.release-please-manifest.json
{
".": "12.3.0"
".": "12.4.0"
}
{
".": "0.22.1"
".": "0.22.2"
}

@@ -7,3 +7,3 @@ [build-system]

name = "gyp-next"
version = "0.22.1"
version = "0.22.2"
authors = [

@@ -14,5 +14,6 @@ { name="Node.js contributors", email="ryzokuken@disroot.org" },

readme = "README.md"
license = { file="LICENSE" }
license = "BSD-3-Clause"
license-files = ["LICENSE"]
requires-python = ">=3.9"
dependencies = ["packaging>=24.0", "setuptools>=69.5.1"]
dependencies = ["packaging>=24.0", "setuptools>=77.0.3"]
classifiers = [

@@ -22,3 +23,2 @@ "Development Status :: 3 - Alpha",

"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",

@@ -25,0 +25,0 @@ "Programming Language :: Python",

const { Readable } = require('stream')
const { EnvHttpProxyAgent } = require('undici')
const { Agent, EnvHttpProxyAgent, RetryAgent, fetch } = require('undici')
const { promises: fs } = require('graceful-fs')

@@ -51,3 +51,3 @@ const log = require('./log')

if (!gyp.opts.proxy && !gyp.opts.cafile && !hasProxyEnv) {
return undefined
return new RetryAgent(new Agent(), { maxRetries: 3 })
}

@@ -73,3 +73,3 @@

}
return new EnvHttpProxyAgent(opts)
return new RetryAgent(new EnvHttpProxyAgent(opts), { maxRetries: 3 })
}

@@ -76,0 +76,0 @@

@@ -14,3 +14,3 @@ {

],
"version": "12.3.0",
"version": "12.4.0",
"installVersion": 11,

@@ -17,0 +17,0 @@ "author": "Nathan Rajlich <nathan@tootallnate.net> (http://tootallnate.net)",

Sorry, the diff of this file is too big to display