This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 0eef0fed140 Ignore shadow-gradle-plugin and jsonschema2pojo bumps 
(#71712)
0eef0fed140 is described below

commit 0eef0fed140954fc68de52d0ddf4a331e1aa10c4
Author: Tzu-ping Chung <[email protected]>
AuthorDate: Thu Aug 20 23:05:06 2026 +0800

    Ignore shadow-gradle-plugin and jsonschema2pojo bumps (#71712)
    
    * Ignore shadow-gradle-plugin bumps in Dependabot
    
    com.gradleup.shadow:shadow-gradle-plugin is pinned to 9.1.0 as the last
    release supporting Java 11. The existing ignore rule only skips major
    bumps, so Dependabot kept proposing 9.2+ minor/patch upgrades. Ignore
    those too until the Java version requirement is dropped.
    
    * Also ignore jsonschema2pojo
---
 .github/dependabot.yml | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index 3a1444167f4..b297d4d0a7e 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -99,6 +99,17 @@ updates:
       - dependency-name: "*"
         update-types:
           - version-update:semver-major
+      # Pinned to the last release that supports Java 11. Ignore minor/patch
+      # bumps too, not just majors, until the SDK's Java 11 support requirement
+      # is dropped. See also: java-sdk/sdk/build.gradle.kts
+      - dependency-name: "com.gradleup.shadow:shadow-gradle-plugin"
+        update-types:
+          - version-update:semver-minor
+          - version-update:semver-patch
+      - dependency-name: "org.jsonschema2pojo"
+        update-types:
+          - version-update:semver-minor
+          - version-update:semver-patch
 
   - package-ecosystem: npm
     cooldown:

Reply via email to