From 562a6c06d3270596c7f293de3219d341b15bcbcd Mon Sep 17 00:00:00 2001 From: Philippe Serhal Date: Fri, 15 May 2026 08:09:00 -0400 Subject: [PATCH] chore(renovate): unset `minimumReleaseAge` for framework In the base Renovate config here we're now setting a `minimumReleaseAge`: https://github.com/netlify/renovate-config/pull/109. In this repo however we have a very specific setup for Remix/RR7 framework bumps to provide immediate early warning of incompatibilities with new releases, including unstable releases. So, opt out of `minimumReleaseAge` just for those. --- renovate.json5 | 1 + 1 file changed, 1 insertion(+) diff --git a/renovate.json5 b/renovate.json5 index 741317428..5d1d1914d 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -21,6 +21,7 @@ matchPackageNames: ['@angular/**', 'zone.js', '@angular-devkit/**'], // Override the schedule to get immediate PRs. schedule: null, + minimumReleaseAge: null, // Apply a unique label so we can trigger additional workflows for these PRs. addLabels: ['bump-framework-in-fixtures'], // Bump even if the release isn't tagged as `latest`.