Skip to content

Commit 65ccb9f

Browse files
authored
chore: add minimum release age and vulnerability alerts to renovate config (cypress-io#1776)
Add a 7-day minimum release age for all dependencies to avoid pulling in potentially unstable new releases. Exempt the cypress package from this cooldown so updates are available immediately. Enable OSV vulnerability alerts and bypass the cooldown period for vulnerability fixes so they are addressed without delay.
1 parent 5130fef commit 65ccb9f

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

renovate.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@
1414
],
1515
"prConcurrentLimit": 5,
1616
"prHourlyLimit": 1,
17+
"minimumReleaseAge": "7 days",
18+
"osvVulnerabilityAlerts": true,
19+
"vulnerabilityAlerts": {
20+
"minimumReleaseAge": "0 days"
21+
},
1722
"rangeStrategy": "bump",
1823
"lockFileMaintenance": {
1924
"enabled": true
@@ -71,6 +76,10 @@
7176
"matchDepTypes": ["uses-with"],
7277
"matchPackageNames": ["pnpm"],
7378
"enabled": false
79+
},
80+
{
81+
"matchPackageNames": ["cypress"],
82+
"minimumReleaseAge": "0 days"
7483
}
7584
]
7685
}

0 commit comments

Comments
 (0)