Skip to content

Commit edd4cb5

Browse files
committed
docs: add links to 10.16 release page
1 parent ed5e1d7 commit edd4cb5

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

blog/releases/10.16.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,12 @@ date: 2025-09-12
1111

1212
There have been several incidents recently where popular packages were successfully attacked. To reduce the risk of installing a compromised version, we are introducing a new setting that delays the installation of newly released dependencies. In most cases, such attacks are discovered quickly and the malicious versions are removed from the registry within an hour.
1313

14-
The new setting is called `minimumReleaseAge`. It specifies the number of minutes that must pass after a version is published before pnpm will install it. For example, setting `minimumReleaseAge: 1440` ensures that only packages released at least one day ago can be installed.
14+
The new setting is called [`minimumReleaseAge`]. It specifies the number of minutes that must pass after a version is published before pnpm will install it. For example, setting `minimumReleaseAge: 1440` ensures that only packages released at least one day ago can be installed.
1515

16-
If you set `minimumReleaseAge` but need to disable this restriction for certain dependencies, you can list them under the `minimumReleaseAgeExclude` setting. For instance, with the following configuration pnpm will always install the latest version of webpack, regardless of its release time:
16+
If you set `minimumReleaseAge` but need to disable this restriction for certain dependencies, you can list them under the [`minimumReleaseAgeExclude`] setting. For instance, with the following configuration pnpm will always install the latest version of webpack, regardless of its release time:
17+
18+
[`minimumReleaseAge`]: /settings#minimumreleaseage
19+
[`minimumReleaseAgeExclude`]: /settings#minimumreleaseageexclude
1720

1821
```yaml
1922
minimumReleaseAgeExclude:
@@ -24,7 +27,9 @@ Related issue: [#9921](https://github.com/pnpm/pnpm/issues/9921).
2427
2528
### Advanced dependency filtering with finder functions
2629
27-
Added support for `finders` [#9946](https://github.com/pnpm/pnpm/pull/9946).
30+
Added support for [`finders`].
31+
32+
[`finders`]: /finders
2833

2934
In the past, `pnpm list` and `pnpm why` could only search for dependencies by **name** (and optionally version). For example:
3035

@@ -99,6 +104,8 @@ Every matched package will also print out the license from its `package.json`:
99104
license: MIT
100105
```
101106

107+
Related PR: [#9946](https://github.com/pnpm/pnpm/pull/9946).
108+
102109
## Patch Changes
103110

104111
- Fix deprecation warning printed when executing pnpm with Node.js 24 [#9529](https://github.com/pnpm/pnpm/issues/9529).

0 commit comments

Comments
 (0)