@pnpm/installing.package-requester 1101.0.6 → 1101.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/packageRequester.js +3 -1
- package/package.json +17 -17
package/lib/packageRequester.js
CHANGED
|
@@ -103,7 +103,7 @@ async function resolveAndFetch(ctx, wantedDependency, options) {
|
|
|
103
103
|
: undefined,
|
|
104
104
|
}), { priority: options.downloadPriority });
|
|
105
105
|
let { manifest } = resolveResult;
|
|
106
|
-
const { latest, resolvedVia, publishedAt, normalizedBareSpecifier, alias, } = resolveResult;
|
|
106
|
+
const { latest, resolvedVia, publishedAt, normalizedBareSpecifier, alias, policyViolation, } = resolveResult;
|
|
107
107
|
// Check if the integrity has changed between the current and newly resolved package
|
|
108
108
|
// Use 'in' check to safely access integrity from any resolution type that has it
|
|
109
109
|
const previousResolution = options.currentPkg?.resolution;
|
|
@@ -157,6 +157,7 @@ async function resolveAndFetch(ctx, wantedDependency, options) {
|
|
|
157
157
|
updated,
|
|
158
158
|
publishedAt,
|
|
159
159
|
alias,
|
|
160
|
+
policyViolation,
|
|
160
161
|
},
|
|
161
162
|
};
|
|
162
163
|
}
|
|
@@ -218,6 +219,7 @@ async function resolveAndFetch(ctx, wantedDependency, options) {
|
|
|
218
219
|
updated,
|
|
219
220
|
publishedAt,
|
|
220
221
|
alias,
|
|
222
|
+
policyViolation,
|
|
221
223
|
},
|
|
222
224
|
fetching: fetchResult.fetching,
|
|
223
225
|
filesIndexFile: fetchResult.filesIndexFile,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/installing.package-requester",
|
|
3
|
-
"version": "1101.0.
|
|
3
|
+
"version": "1101.0.8",
|
|
4
4
|
"description": "Concurrent downloader of npm-compatible packages",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pnpm",
|
|
@@ -35,23 +35,23 @@
|
|
|
35
35
|
"ramda": "npm:@pnpm/ramda@0.28.1",
|
|
36
36
|
"semver": "^7.7.2",
|
|
37
37
|
"ssri": "13.0.1",
|
|
38
|
-
"@pnpm/
|
|
39
|
-
"@pnpm/deps.path": "1100.0.3",
|
|
38
|
+
"@pnpm/deps.path": "1100.0.4",
|
|
40
39
|
"@pnpm/error": "1100.0.0",
|
|
41
|
-
"@pnpm/fetching.pick-fetcher": "1100.0.
|
|
40
|
+
"@pnpm/fetching.pick-fetcher": "1100.0.8",
|
|
42
41
|
"@pnpm/fs.graceful-fs": "1100.1.0",
|
|
43
|
-
"@pnpm/hooks.types": "1100.0.
|
|
44
|
-
"@pnpm/
|
|
42
|
+
"@pnpm/hooks.types": "1100.0.8",
|
|
43
|
+
"@pnpm/resolving.resolver-base": "1100.3.0",
|
|
44
|
+
"@pnpm/core-loggers": "1100.1.1",
|
|
45
|
+
"@pnpm/store.cafs": "1100.1.6",
|
|
46
|
+
"@pnpm/types": "1101.1.1",
|
|
47
|
+
"@pnpm/fetching.fetcher-base": "1100.1.5",
|
|
45
48
|
"@pnpm/store.index": "1100.1.0",
|
|
46
|
-
"@pnpm/
|
|
47
|
-
"@pnpm/
|
|
48
|
-
"@pnpm/store.controller-types": "1100.0.7",
|
|
49
|
-
"@pnpm/core-loggers": "1100.0.2",
|
|
50
|
-
"@pnpm/resolving.resolver-base": "1100.1.3"
|
|
49
|
+
"@pnpm/config.package-is-installable": "1100.0.6",
|
|
50
|
+
"@pnpm/store.controller-types": "1100.1.1"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
53
|
"@pnpm/logger": ">=1001.0.0 <1002.0.0",
|
|
54
|
-
"@pnpm/worker": "^1100.1.
|
|
54
|
+
"@pnpm/worker": "^1100.1.7"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@jest/globals": "30.3.0",
|
|
@@ -63,13 +63,13 @@
|
|
|
63
63
|
"delay": "^7.0.0",
|
|
64
64
|
"normalize-path": "^3.0.0",
|
|
65
65
|
"tempy": "3.0.0",
|
|
66
|
-
"@pnpm/installing.
|
|
67
|
-
"@pnpm/
|
|
66
|
+
"@pnpm/installing.package-requester": "1101.0.8",
|
|
67
|
+
"@pnpm/store.cafs-types": "1100.0.1",
|
|
68
68
|
"@pnpm/logger": "1100.0.0",
|
|
69
|
+
"@pnpm/store.create-cafs-store": "1100.0.9",
|
|
70
|
+
"@pnpm/installing.client": "1100.2.0",
|
|
69
71
|
"@pnpm/test-fixtures": "1100.0.0",
|
|
70
|
-
"@pnpm/testing.mock-agent": "1100.0.
|
|
71
|
-
"@pnpm/store.cafs-types": "1100.0.1",
|
|
72
|
-
"@pnpm/store.create-cafs-store": "1100.0.7"
|
|
72
|
+
"@pnpm/testing.mock-agent": "1100.0.6"
|
|
73
73
|
},
|
|
74
74
|
"engines": {
|
|
75
75
|
"node": ">=22.13"
|