From 636fa91ee9297bea0d336e5ed48d10cb71a6d5e7 Mon Sep 17 00:00:00 2001 From: Vitaly Rtishchev Date: Tue, 28 Jul 2026 17:52:30 +0300 Subject: [PATCH] Add `minimumReleaseAge` to Renovate config Yarn 4.17 defaults `npmMinimalAgeGate` to `1d`, so any npm version published less than 24h ago is quarantined at the resolution step and `yarn` exits with YN0016. Renovate had no age filter, so it regularly proposed versions younger than the gate, breaking both the lockfile update and CI for the whole grouped PR. Co-Authored-By: Claude Opus 5 --- renovate.json | 1 + 1 file changed, 1 insertion(+) diff --git a/renovate.json b/renovate.json index 259b13a..cc908e9 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,7 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "schedule": ["before 5am on sunday"], + "minimumReleaseAge": "3 days", "separateMajorMinor": true, "automergeType": "pr", "platformAutomerge": true,