This is an automated email from the ASF dual-hosted git repository.
vincbeck 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 8652f21c328 Stop batching major version bumps in the edge UI
Dependabot group (#70865)
8652f21c328 is described below
commit 8652f21c328749f7168b05b6c93971340213eafd
Author: Dheeraj Turaga <[email protected]>
AuthorDate: Fri Jul 31 15:16:35 2026 -0500
Stop batching major version bumps in the edge UI Dependabot group (#70865)
The edge-ui-package-updates group had no restriction on update types, so a
typescript major bump (6.x -> 7.x, which breaks vite-plugin-dts/unplugin-dts
and fails the compile-edge-assets check) kept riding along with routine
minor/patch updates, as seen in #70616 and #70848. Restrict the group to
minor/patch and ignore major updates, matching the pattern already used by
core-ui-package-updates and the v3-3-test sibling group for this same
directory.
---
.github/dependabot.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index be600ed4a09..59fbedc4737 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -166,10 +166,16 @@ updates:
edge-ui-package-updates:
patterns:
- "*"
+ update-types:
+ - "minor"
+ - "patch"
edge-ui-security-updates:
patterns:
- "*"
applies-to: security-updates
+ ignore:
+ - dependency-name: "*"
+ update-types: ["version-update:semver-major"]
- package-ecosystem: npm
cooldown: