From 09a7fbb56afc716349fb6e2b98b9e2e5031d35f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?JB=20Onofr=C3=A9?= Date: Tue, 8 Sep 2026 15:07:10 +0200 Subject: [PATCH] ci(dependabot): ignore major updates for json-schema-validator com.networknt:json-schema-validator 3.x introduced breaking package changes vs 1.x, which broke the salesforce converter build when Dependabot bumped it (see PR #366). Restrict Dependabot to minor and patch updates for this dependency. --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d6d7ae9f..2dbdfec3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -67,3 +67,7 @@ updates: maven-dependencies: patterns: - "*" + ignore: + # 2.x/3.x introduced breaking package/API changes; only allow minor/patch updates + - dependency-name: "com.networknt:json-schema-validator" + update-types: ["version-update:semver-major"]