Skip to content

chore(deps): bump the js-major group across 1 directory with 11 updates - #6934

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/ui/js-major-2c9fbcf436
Closed

chore(deps): bump the js-major group across 1 directory with 11 updates#6934
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/ui/js-major-2c9fbcf436

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 1, 2026

Copy link
Copy Markdown
Contributor

Bumps the js-major group with 11 updates in the /ui directory:

Package From To
@dagrejs/dagre 1.1.8 3.1.1
antd 5.29.3 6.6.2
@apidevtools/json-schema-ref-parser 15.4.0 16.0.1
@eslint/js 9.39.4 10.0.1
@orval/core 7.21.0 8.27.0
@types/node 24.2.1 26.4.1
cssnano 8.0.2 9.0.2
eslint 9.39.4 10.9.1
orval 7.21.0 8.27.0
tailwindcss 3.4.19 4.3.3
typescript 5.9.3 7.0.2

Updates @dagrejs/dagre from 1.1.8 to 3.1.1

Release notes

Sourced from @​dagrejs/dagre's releases.

v2.0.0

What's Changed

Updated the dependencies to remove or replace Bower, Karma, JSHint and dependent libraries.

The old IIFE style library, for loading as a script tag and including dagre in the global namespace is available in the dagre[.min].js files.

A new import style library is available at dagre.esm.js

Full Changelog: dagrejs/dagre@v1.1.8...v2.0.0

Commits
  • c3ed080 Bumping the version and building for release
  • dd45fd4 Merge pull request #516 from dagrejs/modules
  • fc85d69 Fixing github tests
  • a32accc Fixing github tests
  • a35171b Setting the type module in package.json
  • 63b699c Using the latest graphlib
  • 2609a9e Merge pull request #515 from hmcelik/fix/layout-state-leak
  • f8dddcd test: cover isolated dynamic layout state
  • 62809ca fix: scope remembered layout to input graph
  • a471bce Fixing the scripts and bumping the version to the next pre
  • Additional commits viewable in compare view

Updates antd from 5.29.3 to 6.6.2

Release notes

Sourced from antd's releases.

6.6.2

  • ♿ Improve Progress, Steps, and Tooltip accessibility by avoiding redundant SVG announcements, triggering Steps item onClick on keyboard activation, and preserving existing Tooltip aria-describedby relationships. #59139 @​github-actions
  • 🐞 Fix numeric 0 content rendering across Alert, Empty, Card, Tag, Breadcrumb, Segmented, FloatButton, Form.Item, and Statistic. #59117 #59094 #59079 #59101 @​bhumin18 @​QDyanbing @​dogledogle
  • 🤖 Fix Alert global closable and Select and AutoComplete onPopupVisibleChange type definitions incorrectly exposing unsupported callbacks or props. #59100 #59142 @​QDyanbing
  • Menu
    • ⌨️ Fix duplicate Menu popup IDs across multiple instances. #59048 @​zombieJ
    • 🐞 Fix Menu horizontal submenus unexpectedly closing when the pointer moves from an item to its popup. #59088 @​EmilyyyLiu
    • 🐞 Fix Menu icons continuing to move after an inline menu finishes collapsing. #59085 @​QDyanbing
  • Transfer
    • 🐞 Fix Transfer select-all checkbox remaining enabled when all search results are disabled. #59121 @​QDyanbing
    • 🐞 Fix Transfer rendering no items after filtered data is restored from an empty result. #59074 @​biubiukam
  • Table
    • 🐞 Fix Table sortable columns not invoking custom onKeyDown handlers for keys other than Enter. #59078 @​QDyanbing
    • 🐞 Fix Table triggering filterDropdownProps.onOpenChange(false) twice when closing the built-in filter dropdown. #59023 @​thlovey
  • Tree
    • 🐞 Fix Tree.DirectoryTree failing to expand or select nodes when expandedKeys or selectedKeys is explicitly undefined. #59076 @​giaBaoJS
    • 🐞 Fix Tree.DirectoryTree Shift range selection when starting from a node whose key is numeric 0. #59029 @​QDyanbing
  • List
  • 🐞 Fix Checkbox.Group disabled={false} failing to override the global disabled state for JSX children. #59109 @​QDyanbing
  • 🐞 Fix Upload leaving hidden canvas elements in the DOM after generating GIF previews. #59137 @​dogledogle
  • 🐞 Fix Notification close buttons unintentionally submitting enclosing forms. #59126 @​nrps9909
  • 🐞 Fix Drawer header action area not rendering when only the extra prop is provided. #59089 @​dogledogle
  • 🐞 Fix Grid Row retaining stale align and justify classes after the props are removed or responsive breakpoints stop matching. #59066 @​QDyanbing
  • 🐞 Fix Tag.CheckableTag local style being overridden by ConfigProvider tag.style. #59087 @​QDyanbing
  • ♿ Improve Steps accessibility by hiding decorative panel arrows from assistive technology. #59105 @​nrps9909
  • ♿ Improve Skeleton.Image accessibility by hiding its decorative placeholder graphic from assistive technology. #59107 @​nrps9909
  • 🐞 Fix Descriptions resetting item state after reordering an item with key: 0. #59064 @​QDyanbing
  • 🐞 Fix Cascader and Cascader.Panel showing the default empty state when notFoundContent is null. #59028 @​QDyanbing
  • 🐞 Fix Watermark throwing an error when content is undefined. #59077 @​VamoBao
  • 📖 Fix component LLMs links on website mirrors and local deployments. #59062 @​QDyanbing

  • ♿ 优化 Progress、Steps 和 Tooltip 的无障碍体验,避免进度条 SVG 被重复朗读,确保键盘激活 Steps 项目时触发 onClick,并保留 Tooltip 已有的 aria-describedby 关联。#59139 @​github-actions
  • 🐞 修复 Alert、Empty、Card、Tag、Breadcrumb、Segmented、FloatButton、Form.Item 和 Statistic 无法正确渲染数值 0 内容的问题。#59117 #59094 #59079 #59101 @​bhumin18 @​QDyanbing @​dogledogle
  • 🤖 修复 Alert 全局 closable、Select 和 AutoComplete 的 onPopupVisibleChange 类型定义错误暴露不支持回调或属性的问题。#59100 #59142 @​QDyanbing
  • Menu
    • ⌨️ 修复多个 Menu 实例之间弹层 ID 重复的问题。#59048 @​zombieJ
    • 🐞 修复 Menu 横向模式下鼠标从菜单项移向子菜单弹层时子菜单意外关闭的问题。#59088 @​EmilyyyLiu
    • 🐞 修复 Menu 内联菜单收缩完成后图标仍继续位移的问题。#59085 @​QDyanbing
  • Transfer
    • 🐞 修复 Transfer 搜索结果全部为禁用项时“全选”复选框仍可用的问题。#59121 @​QDyanbing
    • 🐞 修复 Transfer 从空过滤结果恢复数据后不显示列表项的问题。#59074 @​biubiukam
  • Table
    • 🐞 修复 Table 可排序列不触发非 Enter 键自定义 onKeyDown 回调的问题。#59078 @​QDyanbing
    • 🐞 修复 Table 关闭内置筛选面板时重复触发 filterDropdownProps.onOpenChange(false) 的问题。#59023 @​thlovey
  • Tree
    • 🐞 修复 Tree.DirectoryTree 的 expandedKeysselectedKeys 显式传入 undefined 时无法展开或选择的问题。#59076 @​giaBaoJS
    • 🐞 修复 Tree.DirectoryTree 从 key 为数值 0 的节点开始时 Shift 范围选择失效的问题。#59029 @​QDyanbing
  • List

... (truncated)

Changelog

Sourced from antd's changelog.

6.6.2

2026-08-28

  • ♿ Improve Progress, Steps, and Tooltip accessibility by avoiding redundant SVG announcements, triggering Steps item onClick on keyboard activation, and preserving existing Tooltip aria-describedby relationships. #59139 @​github-actions
  • 🐞 Fix numeric 0 content rendering across Alert, Empty, Card, Tag, Breadcrumb, Segmented, FloatButton, Form.Item, and Statistic. #59117 #59094 #59079 #59101 @​bhumin18 @​QDyanbing @​dogledogle
  • 🤖 Fix Alert global closable and Select and AutoComplete onPopupVisibleChange type definitions incorrectly exposing unsupported callbacks or props. #59100 #59142 @​QDyanbing
  • Menu
    • ⌨️ Fix duplicate Menu popup IDs across multiple instances. #59048 @​zombieJ
    • 🐞 Fix Menu horizontal submenus unexpectedly closing when the pointer moves from an item to its popup. #59088 @​EmilyyyLiu
    • 🐞 Fix Menu icons continuing to move after an inline menu finishes collapsing. #59085 @​QDyanbing
  • Transfer
    • 🐞 Fix Transfer select-all checkbox remaining enabled when all search results are disabled. #59121 @​QDyanbing
    • 🐞 Fix Transfer rendering no items after filtered data is restored from an empty result. #59074 @​biubiukam
  • Table
    • 🐞 Fix Table sortable columns not invoking custom onKeyDown handlers for keys other than Enter. #59078 @​QDyanbing
    • 🐞 Fix Table triggering filterDropdownProps.onOpenChange(false) twice when closing the built-in filter dropdown. #59023 @​thlovey
  • Tree
    • 🐞 Fix Tree.DirectoryTree failing to expand or select nodes when expandedKeys or selectedKeys is explicitly undefined. #59076 @​giaBaoJS
    • 🐞 Fix Tree.DirectoryTree Shift range selection when starting from a node whose key is numeric 0. #59029 @​QDyanbing
  • List
  • 🐞 Fix Checkbox.Group disabled={false} failing to override the global disabled state for JSX children. #59109 @​QDyanbing
  • 🐞 Fix Upload leaving hidden canvas elements in the DOM after generating GIF previews. #59137 @​dogledogle
  • 🐞 Fix Notification close buttons unintentionally submitting enclosing forms. #59126 @​nrps9909
  • 🐞 Fix Drawer header action area not rendering when only the extra prop is provided. #59089 @​dogledogle
  • 🐞 Fix Grid Row retaining stale align and justify classes after the props are removed or responsive breakpoints stop matching. #59066 @​QDyanbing
  • 🐞 Fix Tag.CheckableTag local style being overridden by ConfigProvider tag.style. #59087 @​QDyanbing
  • ♿ Improve Steps accessibility by hiding decorative panel arrows from assistive technology. #59105 @​nrps9909
  • ♿ Improve Skeleton.Image accessibility by hiding its decorative placeholder graphic from assistive technology. #59107 @​nrps9909
  • 🐞 Fix Descriptions resetting item state after reordering an item with key: 0. #59064 @​QDyanbing
  • 🐞 Fix Cascader and Cascader.Panel showing the default empty state when notFoundContent is null. #59028 @​QDyanbing
  • 🐞 Fix Watermark throwing an error when content is undefined. #59077 @​VamoBao
  • 📖 Fix component LLMs links on website mirrors and local deployments. #59062 @​QDyanbing

6.6.1

2026-08-17

  • ♿ Improve localized accessible names for Upload actions and Modal and Notification close buttons. #58953 #58957 @​nrps9909
  • 🌐 Improve Traditional Chinese terminology across localized components and use Taiwan-preferred week wording in DatePicker. #58947 #58951 @​nrps9909
  • 🐞 Fix Upload dropping newly added files when async onRemove resolves. #58814 @​afc163
  • 🐞 Fix Anchor triggering duplicate onChange callbacks on scroll when using getCurrentAnchor. #58834 @​nikzanda
  • Form
    • 🐞 Fix Form height fluctuation during rapid validation state changes. #59008 @​waterWang
    • 🐞 Fix Form vertical layout labelCol.offset being overridden by label margins. #58981 @​nikzanda
    • ♿ Improve Form complex-control guidance so labels can be explicitly associated with nested controls. #59001 @​nrps9909
    • 📝 Correct Form.Item required documentation to clarify that validation rules infer the required state when unset. #58989 @​QDyanbing
  • Listy

... (truncated)

Commits
  • 1cb3762 docs: add changelog for 6.6.2 (#59143)
  • fa0c357 fix(Transfer): disable select all for disabled search results (#59121)
  • a06ff88 fix(Select): exclude internal popup visibility callback (#59142)
  • bebea8a chore: upgrade deps (#59139)
  • e315024 fix(Upload): avoid leaving canvas after GIF preview (#59137)
  • d58fe29 docs(react): capitalize JavaScript in introduce.en-US.md (#59122)
  • 5845bc8 fix(Notification): upgrade non-submitting close controls (#59126)
  • dc4490a fix(Grid): clear stale row alignment classes (#59066)
  • 807f237 fix(Card, Tag, Breadcrumb, Segmented, FloatButton): render numeric zero for c...
  • e8fbc23 fix(Table): preserve custom header keydown events (#59078)
  • Additional commits viewable in compare view

Updates @apidevtools/json-schema-ref-parser from 15.4.0 to 16.0.1

Release notes

Sourced from @​apidevtools/json-schema-ref-parser's releases.

v16.0.1

16.0.1 (2026-08-26)

Bug Fixes

  • exclude paths before resolving references (#431) (cdc9aa3)

v16.0.0

16.0.0 (2026-08-14)

  • chore!: require Node.js 22 and update dependencies (117061b)

BREAKING CHANGES

  • Node.js versions before 22.19.0 are no longer supported.

v15.5.2

15.5.2 (2026-08-14)

Bug Fixes

v15.5.1

15.5.1 (2026-07-30)

Bug Fixes

  • harden reference resolution and HTTP safety (e8190c1)

v15.5.0

15.5.0 (2026-07-09)

Bug Fixes

  • stabilize cross-platform CI (8bfeec2)

Features

  • handle cyclic reference chains safely (09959ba)
Commits
  • cdc9aa3 fix: exclude paths before resolving references (#431)
  • 117061b chore!: require Node.js 22 and update dependencies
  • cc2fc04 fix: decode %3F back to "?" in toFileSystemPath (#427) (#428)
  • e8190c1 fix: harden reference resolution and HTTP safety
  • cb0c2de Bump dependencies and migrate to Oxlint and Oxfmt (#426)
  • a8e6b4d test: allow time for deep reference chain
  • 8bfeec2 fix: stabilize cross-platform CI
  • 09959ba feat: handle cyclic reference chains safely
  • See full diff in compare view

Updates @eslint/js from 9.39.4 to 10.0.1

Release notes

Sourced from @​eslint/js's releases.

v10.0.1

Bug Fixes

  • c87d5bd fix: update eslint (#20531) (renovate[bot])
  • d841001 fix: update minimatch to 10.2.1 to address security vulnerabilities (#20519) (루밀LuMir)
  • 04c2147 fix: update error message for unused suppressions (#20496) (fnx)
  • 38b089c fix: update dependency @​eslint/config-array to ^0.23.1 (#20484) (renovate[bot])

Documentation

  • 5b3dbce docs: add AI acknowledgement section to templates (#20431) (루밀LuMir)
  • 6f23076 docs: toggle nav in no-JS mode (#20476) (Tanuj Kanti)
  • b69cfb3 docs: Update README (GitHub Actions Bot)

Chores

  • e5c281f chore: updates for v9.39.3 release (Jenkins)
  • 8c3832a chore: update @​typescript-eslint/parser to ^8.56.0 (#20514) (Milos Djermanovic)
  • 8330d23 test: add tests for config-api (#20493) (Milos Djermanovic)
  • 37d6e91 chore: remove eslint v10 prereleases from eslint-config-eslint deps (#20494) (Milos Djermanovic)
  • da7cd0e refactor: cleanup error message templates (#20479) (Francesco Trotta)
  • 84fb885 chore: package.json update for @​eslint/js release (Jenkins)
  • 1f66734 chore: add eslint to peerDependencies of @eslint/js (#20467) (Milos Djermanovic)

v10.0.0

Breaking Changes

  • f9e54f4 feat!: estimate rule-tester failure location (#20420) (ST-DDT)
  • a176319 feat!: replace chalk with styleText and add color to ResultsMeta (#20227) (루밀LuMir)
  • c7046e6 feat!: enable JSX reference tracking (#20152) (Pixel998)
  • fa31a60 feat!: add name to configs (#20015) (Kirk Waiblinger)
  • 3383e7e fix!: remove deprecated SourceCode methods (#20137) (Pixel998)
  • 501abd0 feat!: update dependency minimatch to v10 (#20246) (renovate[bot])
  • ca4d3b4 fix!: stricter rule tester assertions for valid test cases (#20125) (唯然)
  • 96512a6 fix!: Remove deprecated rule context methods (#20086) (Nicholas C. Zakas)
  • c69fdac feat!: remove eslintrc support (#20037) (Francesco Trotta)
  • 208b5cc feat!: Use ScopeManager#addGlobals() (#20132) (Milos Djermanovic)
  • a2ee188 fix!: add uniqueItems: true in no-invalid-regexp option (#20155) (Tanuj Kanti)
  • a89059d feat!: Program range span entire source text (#20133) (Pixel998)
  • 39a6424 fix!: assert 'text' is a string across all RuleFixer methods (#20082) (Pixel998)
  • f28fbf8 fix!: Deprecate "always" and "as-needed" options of the radix rule (#20223) (Milos Djermanovic)
  • aa3fb2b fix!: tighten func-names schema (#20119) (Pixel998)
  • f6c0ed0 feat!: report eslint-env comments as errors (#20128) (Francesco Trotta)
  • 4bf739f fix!: remove deprecated LintMessage#nodeType and TestCaseError#type (#20096) (Pixel998)
  • 523c076 feat!: drop support for jiti < 2.2.0 (#20016) (michael faith)
  • 454a292 feat!: update eslint:recommended configuration (#20210) (Pixel998)
  • 4f880ee feat!: remove v10_* and inactive unstable_* flags (#20225) (sethamus)
  • f18115c feat!: no-shadow-restricted-names report globalThis by default (#20027) (sethamus)
  • c6358c3 feat!: Require Node.js ^20.19.0 || ^22.13.0 || >=24 (#20160) (Milos Djermanovic)

Features

  • bff9091 feat: handle Array.fromAsync in array-callback-return (#20457) (Francesco Trotta)
  • 290c594 feat: add self to no-implied-eval rule (#20468) (sethamus)
  • 43677de feat: fix handling of function and class expression names in no-shadow (#20432) (Milos Djermanovic)

... (truncated)

Commits
  • 84fb885 chore: package.json update for @​eslint/js release
  • 1f66734 chore: add eslint to peerDependencies of @eslint/js (#20467)
  • f3fbc2f chore: set @eslint/js version to 10.0.0 to skip releasing it (#20466)
  • b4b3127 chore: package.json update for @​eslint/js release
  • 0b14059 chore: package.json update for @​eslint/js release
  • fa31a60 feat!: add name to configs (#20015)
  • 1e2cad5 chore: package.json update for @​eslint/js release
  • 454a292 feat!: update eslint:recommended configuration (#20210)
  • c6358c3 feat!: Require Node.js ^20.19.0 || ^22.13.0 || >=24 (#20160)
  • See full diff in compare view

Updates @orval/core from 7.21.0 to 8.27.0

Release notes

Sourced from @​orval/core's releases.

Release v8.27.0

What's Changed

New Contributors

Full Changelog: orval-labs/orval@v8.26.0...v8.27.0

Release v8.26.0

What's Changed

Full Changelog: orval-labs/orval@v8.25.0...v8.26.0

Release v8.25.0

What's Changed

... (truncated)

Commits
  • 6e08ae8 chore(release): bump version to v8.27.0 (#3920)
  • 36d9b82 feat(core): add namingConvention.properties for schema property name conversi...
  • 15f2c72 fix(types): avoid repeating discriminator parent fields in each oneOf variant...
  • 84ca420 feat(core): add component schema prefix option for type/interface names (#264...
  • 9b2e53a fix(core): handle unevaluatedProperties like additionalProperties (#2156) (#3...
  • ae85df8 feat(query): add options mutator hook control (#3908)
  • 2de2e74 feat: pass zod schema to custom fetch response implementation (#3226)
  • 581c3a1 fix(core): don't look up tag buckets on Object.prototype (#3902)
  • 2066f37 fix(core): keep the null branch on a nullable enum spelled as anyOf (#3900) (...
  • 19a29a9 chore(release): bump version to v8.26.0 (#3894)
  • Additional commits viewable in compare view

Updates @types/node from 24.2.1 to 26.4.1

Commits

Updates cssnano from 8.0.2 to 9.0.2

Release notes

Sourced from cssnano's releases.

v9.0.2

What's Changed

Full Changelog: https://github.com/cssnano/cssnano/compare/cssnano@9.0.1...cssnano@9.0.2

v9.0.1

What's Changed

Full Changelog: https://github.com/cssnano/cssnano/compare/cssnano@9.0.0...cssnano@9.0.1

v9.0.0

What's Changed

Breaking changes

Probably backward-compatible for most users. Some changes to configuration loading documented in migration guide.

Bug fixes

Full Changelog: https://github.com/cssnano/cssnano/compare/cssnano@8.0.10...cssnano@9.0.0

v8.0.10

What's Changed

Full Changelog: https://github.com/cssnano/cssnano/compare/cssnano@8.0.9...cssnano@8.0.10

v8.0.9

Bug fixes

Bug fixes coming by way of updating colordx and svgo to the latest release.

Full Changelog: https://github.com/cssnano/cssnano/compare/cssnano@8.0.8...cssnano@8.0.9

v8.0.8

What's Changed

Bug Fixes

... (truncated)

Commits
  • c14c19d Publish cssnano 9.0.2
  • 8e84f80 chore: update postcss-calc to latest version
  • b2642b4 chore: move browserslist version to catalog
  • 5358f81 chore: update browser data
  • a8a9c55 fix(cssnano-preset-default): update postcss-calc
  • 901bbcc chore: update pnpm to 11.25
  • 0a9a7fc docs: update branch names in README
  • 9f8cf3e chore: update development deps
  • ec55a36 test: use resolve to check packages
  • cdce13c test: add package manifest check
  • Additional commits viewable in compare view

Updates eslint from 9.39.4 to 10.9.1

Release notes

Sourced from eslint's releases.

v10.9.1

Bug Fixes

  • 1e641c9 fix: no-loss-of-precision false positive with trailing decimal point (#21251) (Aleksandr Shoronov)

Documentation

  • ad74a8d docs: add deprecation steps for EOL package versions (#21248) (Francesco Trotta)

Chores

  • 3c3ae53 chore: update ecosystem plugins (#21249) (ESLint Bot)<...

    Description has been truncated

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file; mainly used by Dependabot javascript Pull requests that update Javascript code labels Sep 1, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner September 1, 2026 05:26
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file; mainly used by Dependabot javascript Pull requests that update Javascript code labels Sep 1, 2026
@netlify

netlify Bot commented Sep 1, 2026

Copy link
Copy Markdown

Deploy Preview for docs-kargo-io ready!

Name Link
🔨 Latest commit 8185d5d
🔍 Latest deploy log https://app.netlify.com/projects/docs-kargo-io/deploys/6a9b2e9aab55250009a51083
😎 Deploy Preview https://deploy-preview-6934.docs.kargo.io
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@kargo-governance-bot kargo-governance-bot Bot added needs/area Issue or PR needs to be labeled to indicate what parts of the code base are affected needs/kind Issue or PR needs to be labeled to clarify its nature needs/priority Priority has not yet been determined; a good signal that maintainers aren't fully committed labels Sep 1, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/ui/js-major-2c9fbcf436 branch 2 times, most recently from 76b6fe2 to cf85c49 Compare September 1, 2026 13:37
Bumps the js-major group with 11 updates in the /ui directory:

| Package | From | To |
| --- | --- | --- |
| [@dagrejs/dagre](https://github.com/dagrejs/dagre) | `1.1.8` | `3.1.1` |
| [antd](https://github.com/ant-design/ant-design) | `5.29.3` | `6.6.2` |
| [@apidevtools/json-schema-ref-parser](https://github.com/APIDevTools/json-schema-ref-parser) | `15.4.0` | `16.0.1` |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.39.4` | `10.0.1` |
| [@orval/core](https://github.com/orval-labs/orval/tree/HEAD/packages/core) | `7.21.0` | `8.27.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.2.1` | `26.4.1` |
| [cssnano](https://github.com/cssnano/cssnano) | `8.0.2` | `9.0.2` |
| [eslint](https://github.com/eslint/eslint) | `9.39.4` | `10.9.1` |
| [orval](https://github.com/orval-labs/orval) | `7.21.0` | `8.27.0` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `3.4.19` | `4.3.3` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `7.0.2` |



Updates `@dagrejs/dagre` from 1.1.8 to 3.1.1
- [Release notes](https://github.com/dagrejs/dagre/releases)
- [Changelog](https://github.com/dagrejs/dagre/blob/master/changelog.md)
- [Commits](dagrejs/dagre@v1.1.8...v3.1.1)

Updates `antd` from 5.29.3 to 6.6.2
- [Release notes](https://github.com/ant-design/ant-design/releases)
- [Changelog](https://github.com/ant-design/ant-design/blob/master/CHANGELOG.en-US.md)
- [Commits](ant-design/ant-design@5.29.3...6.6.2)

Updates `@apidevtools/json-schema-ref-parser` from 15.4.0 to 16.0.1
- [Release notes](https://github.com/APIDevTools/json-schema-ref-parser/releases)
- [Commits](APIDevTools/json-schema-ref-parser@v15.4.0...v16.0.1)

Updates `@eslint/js` from 9.39.4 to 10.0.1
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](https://github.com/eslint/eslint/commits/v10.0.1/packages/js)

Updates `@orval/core` from 7.21.0 to 8.27.0
- [Release notes](https://github.com/orval-labs/orval/releases)
- [Commits](https://github.com/orval-labs/orval/commits/v8.27.0/packages/core)

Updates `@types/node` from 24.2.1 to 26.4.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `cssnano` from 8.0.2 to 9.0.2
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/cssnano@8.0.2...cssnano@9.0.2)

Updates `eslint` from 9.39.4 to 10.9.1
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.39.4...v10.9.1)

Updates `orval` from 7.21.0 to 8.27.0
- [Release notes](https://github.com/orval-labs/orval/releases)
- [Commits](orval-labs/orval@v7.21.0...v8.27.0)

Updates `tailwindcss` from 3.4.19 to 4.3.3
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.3/packages/tailwindcss)

Updates `typescript` from 5.9.3 to 7.0.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v7.0.2)

---
updated-dependencies:
- dependency-name: "@apidevtools/json-schema-ref-parser"
  dependency-version: 16.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js-major
- dependency-name: "@dagrejs/dagre"
  dependency-version: 3.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: js-major
- dependency-name: "@eslint/js"
  dependency-version: 10.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js-major
- dependency-name: "@orval/core"
  dependency-version: 8.26.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js-major
- dependency-name: "@types/node"
  dependency-version: 26.4.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js-major
- dependency-name: antd
  dependency-version: 6.6.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: js-major
- dependency-name: cssnano
  dependency-version: 9.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js-major
- dependency-name: eslint
  dependency-version: 10.9.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js-major
- dependency-name: orval
  dependency-version: 8.26.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js-major
- dependency-name: tailwindcss
  dependency-version: 4.3.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js-major
- dependency-name: typescript
  dependency-version: 7.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/ui/js-major-2c9fbcf436 branch from cf85c49 to 8185d5d Compare September 4, 2026 20:48
@dependabot @github

dependabot Bot commented on behalf of github Sep 8, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Sep 8, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/ui/js-major-2c9fbcf436 branch September 8, 2026 22:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file; mainly used by Dependabot javascript Pull requests that update Javascript code needs/area Issue or PR needs to be labeled to indicate what parts of the code base are affected needs/kind Issue or PR needs to be labeled to clarify its nature needs/priority Priority has not yet been determined; a good signal that maintainers aren't fully committed

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants