From 9ed245466beff24d34bcf724187e6e3be2b98798 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Contreras=20Guill=C3=A9n?= Date: Wed, 11 Feb 2026 13:26:09 +0100 Subject: [PATCH] fix: revert spring-cloud to 2025.0.1 and add dependabot strategic ignores MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Spring Cloud 2025.1.x targets Spring Boot 4.x — incompatible with 3.5.10. Revert to 2025.0.1 (Spring Boot 3.5.x train). Add dependabot ignore rules for strategic dependencies that must only be upgraded manually: Spring Boot, Spring Cloud, gRPC, Protobuf, AWS SDK, Spring Cloud AWS/Azure/GCP. --- .github/dependabot.yml | 11 +++++++++++ pom.xml | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c673eaf..0b6cb00 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -11,6 +11,17 @@ updates: update-types: - "minor" - "patch" + ignore: + # Strategic dependencies — upgrade manually to ensure cross-module compatibility + - dependency-name: "org.springframework.boot:*" + - dependency-name: "org.springframework.cloud:*" + - dependency-name: "org.springframework.cloud:spring-cloud-dependencies" + - dependency-name: "io.grpc:*" + - dependency-name: "com.google.protobuf:*" + - dependency-name: "software.amazon.awssdk:*" + - dependency-name: "io.awspring.cloud:*" + - dependency-name: "com.azure.spring:*" + - dependency-name: "com.google.cloud:*" - package-ecosystem: "github-actions" directory: "/" schedule: diff --git a/pom.xml b/pom.xml index 1404940..a8d8b01 100644 --- a/pom.xml +++ b/pom.xml @@ -55,7 +55,7 @@ 3.5.10 - 2025.1.1 + 2025.0.1 2.8.15