@pnpm/lockfile.types 1100.0.20 → 1100.1.1

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,23 @@
1
1
  # @pnpm/lockfile-types
2
2
 
3
+ ## 1100.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - `pnpm install` now relinks workspace packages when `publishConfig.linkDirectory` changes. Frozen installs report an outdated lockfile until it is regenerated [pnpm/pnpm#14488](https://github.com/pnpm/pnpm/issues/14488).
8
+
9
+ ## 1100.1.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 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.
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies:
18
+ - @pnpm/resolving.resolver-base@1101.2.0
19
+ - @pnpm/types@1102.1.0
20
+
3
21
  ## 1100.0.20
4
22
 
5
23
  ### Patch Changes
package/lib/index.d.ts CHANGED
@@ -58,6 +58,8 @@ export interface LockfilePackageInfo {
58
58
  export interface ProjectSnapshotBase {
59
59
  dependenciesMeta?: DependenciesMeta;
60
60
  publishDirectory?: string;
61
+ /** Present only when workspace links must ignore `publishDirectory`. */
62
+ linkDirectory?: false;
61
63
  }
62
64
  export interface ProjectSnapshot extends ProjectSnapshotBase {
63
65
  specifiers: ResolvedDependencies;
@@ -79,6 +81,7 @@ export interface TarballResolution {
79
81
  type?: undefined;
80
82
  tarball: string;
81
83
  integrity?: string;
84
+ revision?: number;
82
85
  path?: string;
83
86
  /**
84
87
  * True for tarballs sourced from a git host (codeload.github.com /
@@ -138,6 +141,7 @@ export interface VariationsResolution {
138
141
  }
139
142
  export type LockfileResolution = Resolution | VariationsResolution | {
140
143
  integrity: string;
144
+ revision?: number;
141
145
  };
142
146
  export type PackageSnapshot = LockfilePackageInfo & LockfilePackageSnapshot;
143
147
  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.1",
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.1"
38
38
  },
39
39
  "engines": {
40
40
  "node": ">=22.13"