From 31ff2711e91117df87dbe2fc8c44da7a6057ff73 Mon Sep 17 00:00:00 2001 From: Mikael Korpela Date: Thu, 27 Nov 2025 16:54:43 +0200 Subject: [PATCH] PNPM config: exclude wp and woo packages from minimum age limit --- pnpm-workspace.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 31969eca12bb..75538e34f6a5 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -25,8 +25,10 @@ ignoreWorkspaceCycles: true # Package compromise avoidance: let new releases age a day, and don't allow trust downgrades unless explicitly excepted. minimumReleaseAge: 1440 minimumReleaseAgeExclude: - # Calypso packages and other Automattic-controlled things. We'll often want to immediately update these after releasing them. + # Packages we often want to immediately update after releasing them. - '@automattic/*' + - '@woocommerce/*' + - '@wordpress/*' trustPolicy: no-downgrade trustPolicyExclude: # https://github.com/paulmillr/chokidar/issues/1440