fix: pnpm outdated --long (#10058)

close #10040
This commit is contained in:
Zoltan Kochan
2025-10-09 16:18:46 +02:00
committed by GitHub
parent 50a47b0b63
commit 39b728a1be
2 changed files with 7 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
---
"@pnpm/outdated": patch
"pnpm": patch
---
`pnpm outdated --long` should work [#10040](https://github.com/pnpm/pnpm/issues/10040).

View File

@@ -24,7 +24,7 @@ export function createManifestGetter (
const { resolve } = createResolver({
...opts,
authConfig: opts.rawConfig,
filterMetadata: Boolean(opts.minimumReleaseAge),
filterMetadata: false, // We need all the data from metadata for "outdated --long" to work.
strictPublishedByCheck: Boolean(opts.minimumReleaseAge),
})