From f7d5c8cdbd7f5235a87f7c71a8a0c33053225402 Mon Sep 17 00:00:00 2001 From: Ashley Harrison Date: Tue, 7 Jun 2022 14:21:22 +0100 Subject: [PATCH] ignore deps blocked by react 18 for now (#50300) --- .github/renovate.json5 | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index b3909642552..af4bf894380 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -29,7 +29,16 @@ "systemjs", "copy-webpack-plugin", // try to upgrade with newer yarn release. Not working with 3.1.1 "ts-loader", // we should remove ts-loader and use babel-loader instead - "ora" // we should bump this once we move to esm modules + "ora", // we should bump this once we move to esm modules + + // dep updates blocked by React 18 + "@testing-library/react", + "@types/react", + "@types/react-dom", + "@types/react-test-renderer", + "react", + "react-dom", + "react-test-renderer" ], "ignorePaths": ["packages/grafana-toolkit/package.json", "emails/**", "plugins-bundled/**", "**/mocks/**"], "labels": ["area/frontend", "dependencies"],