From e1c0f457966ab79c7a8774ec9bd0b34458067305 Mon Sep 17 00:00:00 2001 From: Maria Hutt Date: Tue, 11 Jun 2024 10:40:46 -0700 Subject: [PATCH] fix(playwright): bump packages upon new release (#29596) Issue number: N/A --------- ## What is the current behavior? Renovate updates the Playwright packages. It's important that the Playwright within Docker and within core are the same version. However, the Playwright version within core does not update when Docker does. ## What is the new behavior? - Added a `bump` to the Renovate config, this should allow Playwright within core to update regardless if the new version satisfies the range. ## Does this introduce a breaking change? - [ ] Yes - [x] No ## Other information I was unable to test it locally since it will only trigger when the code is within `main`. --- renovate.json5 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/renovate.json5 b/renovate.json5 index aebf2bac00..96c4c9b2c6 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -27,7 +27,8 @@ groupName: "playwright", matchFileNames: [ "core/package.json" - ] + ], + "rangeStrategy": "bump" }, { matchDatasources: ["docker"],