@pnpm/resolving.npm-resolver 1102.1.4 → 1102.1.5

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @pnpm/npm-resolver
2
2
 
3
+ ## 1102.1.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Recover from a metadata cache entry that disappears (concurrent cache cleanup, antivirus) after the registry has already answered the conditional request with `304 Not Modified`. The metadata is re-requested once without cache validators instead of failing the install with `ERR_PNPM_CACHE_MISSING_AFTER_304`.
8
+
9
+ - Fixed an out-of-memory regression when workspace projects concurrently resolve a package with large registry metadata [pnpm/pnpm#13077](https://github.com/pnpm/pnpm/issues/13077).
10
+
11
+ - Fixed `pnpm update` rewriting exact version pins that use the `=` operator (for example `=3.5.1`) to a caret range (`^3.5.1`). Exact pins are now preserved and written back as the bare version. See pnpm/pnpm#12745.
12
+
3
13
  ## 1102.1.4
4
14
 
5
15
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/resolving.npm-resolver",
3
- "version": "1102.1.4",
3
+ "version": "1102.1.5",
4
4
  "description": "Resolver for npm-hosted packages",
5
5
  "keywords": [
6
6
  "pnpm",
@@ -69,7 +69,7 @@
69
69
  "@jest/globals": "30.4.1",
70
70
  "@pnpm/logger": "1100.0.0",
71
71
  "@pnpm/network.fetch": "1100.1.6",
72
- "@pnpm/resolving.npm-resolver": "1102.1.4",
72
+ "@pnpm/resolving.npm-resolver": "1102.1.5",
73
73
  "@pnpm/test-fixtures": "1100.0.0",
74
74
  "@pnpm/testing.mock-agent": "1101.0.6",
75
75
  "@types/normalize-path": "^3.0.2",