@pnpm/resolving.resolver-base 1101.1.1 → 1101.2.0
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/CHANGELOG.md +13 -0
- package/lib/index.d.ts +2 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @pnpm/resolver-base
|
|
2
2
|
|
|
3
|
+
## 1101.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Added explicit registry revision selection with `<version>+rN` and `pnpm update --patches` for refreshing revision artifacts without changing package versions. Registry-backed lockfile policy checks recognize historical revisions, and pnpr now preserves safe revision histories from upstream registries.
|
|
8
|
+
|
|
9
|
+
- Added support for registry replacement tarballs using standard integrity values, explicit revision fields, registry routing from the `registries` setting, non-redirecting integrity-addressed URLs, canonical safe-integer revision numbers, and pnpr proxying for immutable upstream revision artifacts.
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies:
|
|
14
|
+
- @pnpm/types@1102.1.0
|
|
15
|
+
|
|
3
16
|
## 1101.1.1
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/lib/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export interface TarballResolution {
|
|
|
7
7
|
type?: undefined;
|
|
8
8
|
tarball: string;
|
|
9
9
|
integrity?: string;
|
|
10
|
+
revision?: number;
|
|
10
11
|
path?: string;
|
|
11
12
|
/**
|
|
12
13
|
* True for tarballs sourced from a git host (codeload.github.com /
|
|
@@ -241,6 +242,7 @@ export interface ResolveOptions {
|
|
|
241
242
|
preferWorkspacePackages?: boolean;
|
|
242
243
|
workspacePackages?: WorkspacePackages;
|
|
243
244
|
update?: false | 'compatible' | 'latest';
|
|
245
|
+
updatePatches?: boolean;
|
|
244
246
|
/**
|
|
245
247
|
* True only when this specific package matches the user's update target
|
|
246
248
|
* (e.g. `pnpm up <name>`). Unlike `update`, this is false for unrelated
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/resolving.resolver-base",
|
|
3
|
-
"version": "1101.
|
|
3
|
+
"version": "1101.2.0",
|
|
4
4
|
"description": "Types for pnpm-compatible resolvers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pnpm",
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
"!*.map"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@pnpm/types": "1102.
|
|
31
|
+
"@pnpm/types": "1102.1.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@jest/globals": "30.4.1",
|
|
35
|
-
"@pnpm/resolving.resolver-base": "1101.
|
|
35
|
+
"@pnpm/resolving.resolver-base": "1101.2.0"
|
|
36
36
|
},
|
|
37
37
|
"engines": {
|
|
38
38
|
"node": ">=22.13"
|