From 49a46e0181d306a881fbcf13b8062698b221e88f Mon Sep 17 00:00:00 2001 From: Nano Taboada <87288+nanotaboada@users.noreply.github.com> Date: Wed, 14 Jan 2026 07:15:15 -0300 Subject: [PATCH] chore: group related packages in Dependabot config - Add entity-framework group for Microsoft.EntityFrameworkCore.* - Add aspnetcore group for Microsoft.AspNetCore.* - Add fluentvalidation group for FluentValidation.* This prevents dependency conflicts by ensuring related packages update together in a single PR instead of separate PRs. --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 8e8ddeb..91cf388 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,6 +9,7 @@ updates: commit-message: include: scope prefix: "chore(deps): " + # Pin AutoMapper to 14.x line to avoid commercial v15.x upgrades ignore: - dependency-name: "AutoMapper" update-types: ["version-update:semver-major"] @@ -16,6 +17,15 @@ updates: serilog: patterns: - "Serilog*" + entity-framework: + patterns: + - "Microsoft.EntityFrameworkCore*" + aspnetcore: + patterns: + - "Microsoft.AspNetCore*" + fluentvalidation: + patterns: + - "FluentValidation*" - package-ecosystem: "nuget" directory: "/test/Dotnet.Samples.AspNetCore.WebApi.Tests" @@ -24,6 +34,7 @@ updates: commit-message: include: scope prefix: "chore(deps): " + # Pin AutoMapper to 14.x line to avoid commercial v15.x upgrades ignore: - dependency-name: "AutoMapper" update-types: ["version-update:semver-major"] @@ -31,6 +42,9 @@ updates: xunit: patterns: - "xunit*" + entity-framework: + patterns: + - "Microsoft.EntityFrameworkCore*" - package-ecosystem: "github-actions" directory: "/"