From cc94dd4690a7284aeeee30ba0bd9609d8401a588 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Charv=C3=A1t?= Date: Tue, 6 Jun 2023 11:53:46 +0200 Subject: [PATCH] chore: Set renovate configuration to limit dependencies to cats-effect v2 --- renovate.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/renovate.json b/renovate.json index f45d8f1..1cb3e78 100644 --- a/renovate.json +++ b/renovate.json @@ -1,5 +1,15 @@ { "extends": [ "config:base" + ], + "packageRules": [ + { + "matchPackagePrefixes": ["org.http4s:http4s-"], + "allowedVersions": "/^0\\.22\\.[0-9]+$/" + }, + { + "matchPackagePrefixes": ["org.typelevel:cats-effect"], + "allowedVersions": "/^2\\.[0-9]+\\.[0-9]+$/" + } ] }