@pnpm/lockfile.types 1100.0.20 → 1100.1.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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @pnpm/lockfile-types
2
2
 
3
+ ## 1100.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 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.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies:
12
+ - @pnpm/resolving.resolver-base@1101.2.0
13
+ - @pnpm/types@1102.1.0
14
+
3
15
  ## 1100.0.20
4
16
 
5
17
  ### Patch Changes
package/lib/index.d.ts CHANGED
@@ -79,6 +79,7 @@ export interface TarballResolution {
79
79
  type?: undefined;
80
80
  tarball: string;
81
81
  integrity?: string;
82
+ revision?: number;
82
83
  path?: string;
83
84
  /**
84
85
  * True for tarballs sourced from a git host (codeload.github.com /
@@ -138,6 +139,7 @@ export interface VariationsResolution {
138
139
  }
139
140
  export type LockfileResolution = Resolution | VariationsResolution | {
140
141
  integrity: string;
142
+ revision?: number;
141
143
  };
142
144
  export type PackageSnapshot = LockfilePackageInfo & LockfilePackageSnapshot;
143
145
  export interface Dependencies {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/lockfile.types",
3
- "version": "1100.0.20",
3
+ "version": "1100.1.0",
4
4
  "description": "Types for the pnpm-lock.yaml lockfile",
5
5
  "keywords": [
6
6
  "pnpm",
@@ -30,11 +30,11 @@
30
30
  ],
31
31
  "dependencies": {
32
32
  "@pnpm/patching.types": "1100.0.1",
33
- "@pnpm/resolving.resolver-base": "1101.1.1",
34
- "@pnpm/types": "1102.0.0"
33
+ "@pnpm/resolving.resolver-base": "1101.2.0",
34
+ "@pnpm/types": "1102.1.0"
35
35
  },
36
36
  "devDependencies": {
37
- "@pnpm/lockfile.types": "1100.0.20"
37
+ "@pnpm/lockfile.types": "1100.1.0"
38
38
  },
39
39
  "engines": {
40
40
  "node": ">=22.13"