Skip to content

Commit 25c8a9e

Browse files
committed
deps: node-gyp@12.4.0
1 parent 847cdf8 commit 25c8a9e

7 files changed

Lines changed: 15 additions & 15 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "12.3.0"
2+
".": "12.4.0"
33
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.22.1"
2+
".": "0.22.2"
33
}

node_modules/node-gyp/gyp/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "gyp-next"
7-
version = "0.22.1"
7+
version = "0.22.2"
88
authors = [
99
{ name="Node.js contributors", email="ryzokuken@disroot.org" },
1010
]
1111
description = "A fork of the GYP build system for use in the Node.js projects"
1212
readme = "README.md"
13-
license = { file="LICENSE" }
13+
license = "BSD-3-Clause"
14+
license-files = ["LICENSE"]
1415
requires-python = ">=3.9"
15-
dependencies = ["packaging>=24.0", "setuptools>=69.5.1"]
16+
dependencies = ["packaging>=24.0", "setuptools>=77.0.3"]
1617
classifiers = [
1718
"Development Status :: 3 - Alpha",
1819
"Environment :: Console",
1920
"Intended Audience :: Developers",
20-
"License :: OSI Approved :: BSD License",
2121
"Natural Language :: English",
2222
"Programming Language :: Python",
2323
"Programming Language :: Python :: 3",

node_modules/node-gyp/lib/download.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const { Readable } = require('stream')
2-
const { EnvHttpProxyAgent } = require('undici')
2+
const { Agent, EnvHttpProxyAgent, RetryAgent, fetch } = require('undici')
33
const { promises: fs } = require('graceful-fs')
44
const log = require('./log')
55

@@ -48,7 +48,7 @@ async function createDispatcher (gyp) {
4848
const env = process.env
4949
const hasProxyEnv = env.http_proxy || env.HTTP_PROXY || env.https_proxy || env.HTTPS_PROXY
5050
if (!gyp.opts.proxy && !gyp.opts.cafile && !hasProxyEnv) {
51-
return undefined
51+
return new RetryAgent(new Agent(), { maxRetries: 3 })
5252
}
5353

5454
const opts = {}
@@ -69,7 +69,7 @@ async function createDispatcher (gyp) {
6969
if (gyp.opts.noproxy) {
7070
opts.noProxy = gyp.opts.noproxy
7171
}
72-
return new EnvHttpProxyAgent(opts)
72+
return new RetryAgent(new EnvHttpProxyAgent(opts), { maxRetries: 3 })
7373
}
7474

7575
async function readCAFile (filename) {

node_modules/node-gyp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"bindings",
1212
"gyp"
1313
],
14-
"version": "12.3.0",
14+
"version": "12.4.0",
1515
"installVersion": 11,
1616
"author": "Nathan Rajlich <nathan@tootallnate.net> (http://tootallnate.net)",
1717
"repository": {

package-lock.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
"minipass": "^7.1.3",
124124
"minipass-pipeline": "^1.2.4",
125125
"ms": "^2.1.2",
126-
"node-gyp": "^12.3.0",
126+
"node-gyp": "^12.4.0",
127127
"nopt": "^9.0.0",
128128
"npm-audit-report": "^7.0.0",
129129
"npm-install-checks": "^8.0.0",
@@ -8577,9 +8577,9 @@
85778577
}
85788578
},
85798579
"node_modules/node-gyp": {
8580-
"version": "12.3.0",
8581-
"resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-12.3.0.tgz",
8582-
"integrity": "sha512-QNcUWM+HgJplcPzBvFBZ9VXacyGZ4+VTOb80PwWR+TlVzoHbRKULNEzpRsnaoxG3Wzr7Qh7BYxGDU3CbKib2Yg==",
8580+
"version": "12.4.0",
8581+
"resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-12.4.0.tgz",
8582+
"integrity": "sha512-OMcPNvqTCFUnNaBlmdgq+lfNqY7gTiSmNRDjY3uAXRyudeKZEZxu3CLtjMQrx4zZxCX2b/mpNqTtwuCJgXhHkw==",
85838583
"inBundle": true,
85848584
"license": "MIT",
85858585
"dependencies": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
"minipass": "^7.1.3",
9292
"minipass-pipeline": "^1.2.4",
9393
"ms": "^2.1.2",
94-
"node-gyp": "^12.3.0",
94+
"node-gyp": "^12.4.0",
9595
"nopt": "^9.0.0",
9696
"npm-audit-report": "^7.0.0",
9797
"npm-install-checks": "^8.0.0",

0 commit comments

Comments
 (0)