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

rusackas pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 9086ae8e6c6 feat(ci): only bump patch version for Storybook-related 
deps until React 18 (#37749)
9086ae8e6c6 is described below

commit 9086ae8e6c6ca78b1206e2e00e39b968f79fe830
Author: Đỗ Trọng Hải <[email protected]>
AuthorDate: Sat Feb 7 04:29:32 2026 +0700

    feat(ci): only bump patch version for Storybook-related deps until React 18 
(#37749)
    
    Signed-off-by: hainenber <[email protected]>
---
 .github/dependabot.yml | 24 +++++++++++++++++++++++-
 1 file changed, 23 insertions(+), 1 deletion(-)

diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index c01258ea8b9..e16684121f0 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -9,9 +9,12 @@ updates:
 
   - package-ecosystem: "npm"
     ignore:
-      # not until React >= 18.0.0
+      # TODO: remove below entries until React >= 18.0.0
       - dependency-name: "storybook"
+        update-types: ["version-update:semver-major", 
"version-update:semver-minor"]
       - dependency-name: "@storybook*"
+        update-types: ["version-update:semver-major", 
"version-update:semver-minor"]
+      - dependency-name: "eslint-plugin-storybook"
       # remark-gfm v4+ requires react-markdown v9+, which needs React 18
       - dependency-name: "remark-gfm"
       - dependency-name: "react-markdown"
@@ -23,6 +26,14 @@ updates:
       # See 
https://github.com/apache/superset/pull/37384#issuecomment-3793991389
       # TODO: remove the plugin once Lodash usage has been migrated to a more 
readily tree-shakeable alternative
       - dependency-name: "@swc/plugin-transform-imports"
+    groups:
+      storybook:
+        applies-to: version-updates
+        patterns:
+          - "@storybook*"
+          - "storybook"
+        update-types:
+          - "patch"
     directory: "/superset-frontend/"
     schedule:
       interval: "daily"
@@ -355,6 +366,17 @@ updates:
 
   - package-ecosystem: "npm"
     directory: "/superset-frontend/packages/superset-ui-demo/"
+    ignore:
+      # TODO: remove below entries until React >= 18.0.0
+      - dependency-name: "@storybook*"
+        update-types: ["version-update:semver-major", 
"version-update:semver-minor"]
+    groups:
+      storybook:
+        applies-to: version-updates
+        patterns:
+          - "@storybook*"
+        update-types:
+          - "patch"
     schedule:
       interval: "daily"
     labels:

Reply via email to