Skip to content

Commit f7a5200

Browse files
committedFeb 21, 2023
deps: pacote@15.1.1
1 parent a60b34e commit f7a5200

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed
 

‎node_modules/pacote/lib/fetcher.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ class FetcherBase {
425425
return ((mode | m) & ~this.umask) | exe | 0o600
426426
}
427427

428-
[_tarxOptions] ({ cwd, uid, gid }) {
428+
[_tarxOptions] ({ cwd }) {
429429
const sawIgnores = new Set()
430430
return {
431431
cwd,
@@ -460,9 +460,9 @@ class FetcherBase {
460460
log.warn('tar', code, msg)
461461
log.silly('tar', code, msg, data)
462462
},
463-
uid,
464-
gid,
465463
umask: this.umask,
464+
// always ignore ownership info from tarball metadata
465+
preserveOwner: false,
466466
}
467467
}
468468
}

‎node_modules/pacote/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pacote",
3-
"version": "15.1.0",
3+
"version": "15.1.1",
44
"description": "JavaScript package downloader",
55
"author": "GitHub Inc.",
66
"bin": {

‎package-lock.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
"npm-user-validate": "^2.0.0",
134134
"npmlog": "^7.0.1",
135135
"p-map": "^4.0.0",
136-
"pacote": "^15.1.0",
136+
"pacote": "^15.1.1",
137137
"parse-conflict-json": "^3.0.0",
138138
"proc-log": "^3.0.0",
139139
"qrcode-terminal": "^0.12.0",
@@ -9870,9 +9870,9 @@
98709870
}
98719871
},
98729872
"node_modules/pacote": {
9873-
"version": "15.1.0",
9874-
"resolved": "https://registry.npmjs.org/pacote/-/pacote-15.1.0.tgz",
9875-
"integrity": "sha512-FFcjtIl+BQNfeliSm7MZz5cpdohvUV1yjGnqgVM4UnVF7JslRY0ImXAygdaCDV0jjUADEWu4y5xsDV8brtrTLg==",
9873+
"version": "15.1.1",
9874+
"resolved": "https://registry.npmjs.org/pacote/-/pacote-15.1.1.tgz",
9875+
"integrity": "sha512-eeqEe77QrA6auZxNHIp+1TzHQ0HBKf5V6c8zcaYZ134EJe1lCi+fjXATkNiEEfbG+e50nu02GLvUtmZcGOYabQ==",
98769876
"inBundle": true,
98779877
"dependencies": {
98789878
"@npmcli/git": "^4.0.0",

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
"npm-user-validate": "^2.0.0",
103103
"npmlog": "^7.0.1",
104104
"p-map": "^4.0.0",
105-
"pacote": "^15.1.0",
105+
"pacote": "^15.1.1",
106106
"parse-conflict-json": "^3.0.0",
107107
"proc-log": "^3.0.0",
108108
"qrcode-terminal": "^0.12.0",

0 commit comments

Comments
 (0)
Please sign in to comment.