mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	feat: wait for deps to be somewhat stable (#2768)
## About the changes Some dependency updates we receive are recent releases with a low adoption rate. It's fine to be early adopters but this can also introduce unintended bugs. This PR adds a 7 days grace period before we consider a dependency as ready to be upgraded. It doesn't guarantee its stability but it improves it. Ideally, I'd like to also use adoption and confidence to automatically merge or delay the creation of the PR, but I haven't found a way of doing that It also protects us from: > npm packages less than 72 hours (3 days) old can be unpublished Documentation: https://docs.renovatebot.com/configuration-options/#stabilitydays ### Examples  
This commit is contained in:
		
							parent
							
								
									29be130757
								
							
						
					
					
						commit
						711c867ccc
					
				| @ -4,7 +4,9 @@ | ||||
|     { | ||||
|       "matchUpdateTypes": ["minor", "patch"], | ||||
|       "matchPackagePatterns": ["*"], | ||||
|       "automerge": true | ||||
|       "automerge": true, | ||||
|       "stabilityDays": 7, | ||||
|       "internalChecksFilter": "strict" | ||||
|     } | ||||
|   ] | ||||
| } | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user