Skip to content

build(deps): bump the patch-and-minor group across 1 directory with 22 updates - #13

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/web/patch-and-minor-6159ac7995
Closed

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/web/patch-and-minor-6159ac7995

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 3, 2026

Copy link
Copy Markdown

Bumps the patch-and-minor group with 22 updates in the /web directory:

Package From To
@ant-design/icons 6.2.2 6.3.2
@ant-design/x 2.7.0 2.9.0
@ant-design/x-markdown 2.7.0 2.9.0
@ant-design/x-sdk 2.7.0 2.9.0
antd 6.3.7 6.5.3
axios 1.16.0 1.19.0
casdoor-js-sdk 0.19.0 0.20.0
i18next 26.0.8 26.3.6
react 19.2.5 19.2.8
@types/react 19.2.14 19.2.18
react-dom 19.2.5 19.2.8
@types/react-dom 19.2.3 19.2.4
react-i18next 17.0.6 17.0.11
react-router-dom 7.14.2 7.18.2
zustand 5.0.12 5.0.14
@vitejs/plugin-react 6.0.1 6.0.5
eslint 10.3.0 10.8.0
eslint-plugin-react-refresh 0.5.2 0.5.3
globals 17.6.0 17.8.0
typescript-eslint 8.59.1 8.65.0
vite 8.0.10 8.2.0
vitest 4.1.5 4.1.10

Updates @ant-design/icons from 6.2.2 to 6.3.2

Commits

Updates @ant-design/x from 2.7.0 to 2.9.0

Changelog

Sourced from @​ant-design/x's changelog.

2.9.0

2026-07-23

@​ant-design/x

  • 🆕 Added useMobile hook, providing an SSR-safe way to detect mobile devices. #1945 by Mickey
  • 🆕 Think and ThoughtChain add a destroyOnHidden prop to automatically destroy the DOM node when content is hidden. #1985 by wryyyds7
  • 💄 Actions Feedback no longer renders Tooltip on mobile devices to avoid interaction interference. #1945 by Mickey
  • 💄 Conversations now always shows the menu icon on mobile devices (no hover state on mobile). #1945 by Mickey
  • 🐛 Improved click responsiveness for Actions, Conversations and other components on mobile by adding touch-action: manipulation to eliminate the 300ms click delay. #1945 by Mickey
  • 🐛 Fix Sources CarouselCard not syncing its carousel index when the controlled activeKey changes; the left/right buttons now jump precisely via goTo and edge-button no-ops are fixed. #1945 by Mickey
  • 🐛 Fix Sender speech input (useSpeech) not cleaning up SpeechRecognition on unmount, which caused state updates on an unmounted component. #1945 by Mickey
  • 🐛 Fix CodeHighlighter not calling registerLanguage after async language loading, which prevented syntax highlighting from working; also fix the code block background not stretching fully during horizontal scroll. #1945 by Mickey
  • 🐛 Fix Sender still showing the outer outline on focus in borderless mode. #1963 by QDyanbing
  • 🐛 Fix Sender content type slots bypassing formatResult; all slot types (including content) now honor formatResult uniformly, with the DOM text used as the input value for content slots. #1986 by wenzeyu8888-rgb
  • 🐛 Fix Suggestion popup not scrolling when there are many options; the popup now scrolls internally (overflow-y: auto) once content exceeds the max height (256px). #1983 by wenzeyu8888-rgb
  • 🐛 Fix Sender agent tag label wrapping in agent mode; it now renders inline. #1990 by cc-hearts

@​ant-design/x-markdown

  • 🐛 Fix XMarkdown performing an O(N²) code-block scan during streaming that froze the page on long content. #1972 by Div627

@​ant-design/x-sdk

  • 🐛 Fix XStream not releasing the reader lock or canceling the underlying stream on early exit (loop break / incomplete read), avoiding resource leaks and dangling read requests. #1970 by Mickey

@​ant-design/x-skill

  • 🐛 Fix the x-skill ora spinner (loader) failing to load in CJS environments; the loader instance is now cached and loaded via dynamic import, avoiding duplicate loads and initialization errors. #1980 by jay666mnj

Others

  • 📖 Improve site page title composition: separate subtitle and title with a space to avoid concatenated wording. #1959 by Mickey
  • 📖 Add a note in the FAQ recommending Antdv Next X for Vue users. #1966 by QDyanbing
  • 📖 Unify the semantic DOM heading wording on the Chinese site. #1877 by Rain120
  • 🛠 Hide the focus outline on the Component Overview search box. #1987 by QDyanbing

2.8.0

2026-06-08

@​ant-design/x

  • 🆕 Folder component adds a right-click context menu. #1919 by Mickey
  • 🐛 Fix FileCard.List scroll button state not refreshing when items update. #1914 by Ryker_Feng
  • 🐛 Fix Sender runtime-inserted slots being cleared when the slotConfig ref changes. #1900 by pikanohup
  • 🐛 Fix design token type coercion before arithmetic operations. #1910 by Div627

@​ant-design/x-markdown

... (truncated)

Commits
  • 13afbf4 Merge pull request #1991 from ant-design/chore/changelog-2.9.0
  • 5892920 test: update demo snapshots
  • b22ee17 Merge branch 'main' into chore/changelog-2.9.0
  • 002ec52 chore: bump version to 2.9.0
  • d6c6808 chore: merge unreleased 2.8.1 changelog into 2.9.0
  • 018276b chore: set 2.9.0 release date to 2026-07-23
  • 93c44e1 chore: add newly merged PRs to 2.9.0 changelog
  • f17d4ec Merge pull request #1980 from jay666mnj/fix-x-skill-ora-cjs
  • 3f1aa9f Merge pull request #1877 from Rain120/feature/docs-unified_semantic
  • b6cdd2b Merge branch 'main' into fix-x-skill-ora-cjs
  • Additional commits viewable in compare view

Updates @ant-design/x-markdown from 2.7.0 to 2.9.0

Changelog

Sourced from @​ant-design/x-markdown's changelog.

2.9.0

2026-07-23

@​ant-design/x

  • 🆕 Added useMobile hook, providing an SSR-safe way to detect mobile devices. #1945 by Mickey
  • 🆕 Think and ThoughtChain add a destroyOnHidden prop to automatically destroy the DOM node when content is hidden. #1985 by wryyyds7
  • 💄 Actions Feedback no longer renders Tooltip on mobile devices to avoid interaction interference. #1945 by Mickey
  • 💄 Conversations now always shows the menu icon on mobile devices (no hover state on mobile). #1945 by Mickey
  • 🐛 Improved click responsiveness for Actions, Conversations and other components on mobile by adding touch-action: manipulation to eliminate the 300ms click delay. #1945 by Mickey
  • 🐛 Fix Sources CarouselCard not syncing its carousel index when the controlled activeKey changes; the left/right buttons now jump precisely via goTo and edge-button no-ops are fixed. #1945 by Mickey
  • 🐛 Fix Sender speech input (useSpeech) not cleaning up SpeechRecognition on unmount, which caused state updates on an unmounted component. #1945 by Mickey
  • 🐛 Fix CodeHighlighter not calling registerLanguage after async language loading, which prevented syntax highlighting from working; also fix the code block background not stretching fully during horizontal scroll. #1945 by Mickey
  • 🐛 Fix Sender still showing the outer outline on focus in borderless mode. #1963 by QDyanbing
  • 🐛 Fix Sender content type slots bypassing formatResult; all slot types (including content) now honor formatResult uniformly, with the DOM text used as the input value for content slots. #1986 by wenzeyu8888-rgb
  • 🐛 Fix Suggestion popup not scrolling when there are many options; the popup now scrolls internally (overflow-y: auto) once content exceeds the max height (256px). #1983 by wenzeyu8888-rgb
  • 🐛 Fix Sender agent tag label wrapping in agent mode; it now renders inline. #1990 by cc-hearts

@​ant-design/x-markdown

  • 🐛 Fix XMarkdown performing an O(N²) code-block scan during streaming that froze the page on long content. #1972 by Div627

@​ant-design/x-sdk

  • 🐛 Fix XStream not releasing the reader lock or canceling the underlying stream on early exit (loop break / incomplete read), avoiding resource leaks and dangling read requests. #1970 by Mickey

@​ant-design/x-skill

  • 🐛 Fix the x-skill ora spinner (loader) failing to load in CJS environments; the loader instance is now cached and loaded via dynamic import, avoiding duplicate loads and initialization errors. #1980 by jay666mnj

Others

  • 📖 Improve site page title composition: separate subtitle and title with a space to avoid concatenated wording. #1959 by Mickey
  • 📖 Add a note in the FAQ recommending Antdv Next X for Vue users. #1966 by QDyanbing
  • 📖 Unify the semantic DOM heading wording on the Chinese site. #1877 by Rain120
  • 🛠 Hide the focus outline on the Component Overview search box. #1987 by QDyanbing

2.8.0

2026-06-08

@​ant-design/x

  • 🆕 Folder component adds a right-click context menu. #1919 by Mickey
  • 🐛 Fix FileCard.List scroll button state not refreshing when items update. #1914 by Ryker_Feng
  • 🐛 Fix Sender runtime-inserted slots being cleared when the slotConfig ref changes. #1900 by pikanohup
  • 🐛 Fix design token type coercion before arithmetic operations. #1910 by Div627

@​ant-design/x-markdown

... (truncated)

Commits
  • 13afbf4 Merge pull request #1991 from ant-design/chore/changelog-2.9.0
  • 5892920 test: update demo snapshots
  • b22ee17 Merge branch 'main' into chore/changelog-2.9.0
  • 002ec52 chore: bump version to 2.9.0
  • d6c6808 chore: merge unreleased 2.8.1 changelog into 2.9.0
  • 018276b chore: set 2.9.0 release date to 2026-07-23
  • 93c44e1 chore: add newly merged PRs to 2.9.0 changelog
  • f17d4ec Merge pull request #1980 from jay666mnj/fix-x-skill-ora-cjs
  • 3f1aa9f Merge pull request #1877 from Rain120/feature/docs-unified_semantic
  • b6cdd2b Merge branch 'main' into fix-x-skill-ora-cjs
  • Additional commits viewable in compare view

Updates @ant-design/x-sdk from 2.7.0 to 2.9.0

Changelog

Sourced from @​ant-design/x-sdk's changelog.

2.9.0

2026-07-23

@​ant-design/x

  • 🆕 Added useMobile hook, providing an SSR-safe way to detect mobile devices. #1945 by Mickey
  • 🆕 Think and ThoughtChain add a destroyOnHidden prop to automatically destroy the DOM node when content is hidden. #1985 by wryyyds7
  • 💄 Actions Feedback no longer renders Tooltip on mobile devices to avoid interaction interference. #1945 by Mickey
  • 💄 Conversations now always shows the menu icon on mobile devices (no hover state on mobile). #1945 by Mickey
  • 🐛 Improved click responsiveness for Actions, Conversations and other components on mobile by adding touch-action: manipulation to eliminate the 300ms click delay. #1945 by Mickey
  • 🐛 Fix Sources CarouselCard not syncing its carousel index when the controlled activeKey changes; the left/right buttons now jump precisely via goTo and edge-button no-ops are fixed. #1945 by Mickey
  • 🐛 Fix Sender speech input (useSpeech) not cleaning up SpeechRecognition on unmount, which caused state updates on an unmounted component. #1945 by Mickey
  • 🐛 Fix CodeHighlighter not calling registerLanguage after async language loading, which prevented syntax highlighting from working; also fix the code block background not stretching fully during horizontal scroll. #1945 by Mickey
  • 🐛 Fix Sender still showing the outer outline on focus in borderless mode. #1963 by QDyanbing
  • 🐛 Fix Sender content type slots bypassing formatResult; all slot types (including content) now honor formatResult uniformly, with the DOM text used as the input value for content slots. #1986 by wenzeyu8888-rgb
  • 🐛 Fix Suggestion popup not scrolling when there are many options; the popup now scrolls internally (overflow-y: auto) once content exceeds the max height (256px). #1983 by wenzeyu8888-rgb
  • 🐛 Fix Sender agent tag label wrapping in agent mode; it now renders inline. #1990 by cc-hearts

@​ant-design/x-markdown

  • 🐛 Fix XMarkdown performing an O(N²) code-block scan during streaming that froze the page on long content. #1972 by Div627

@​ant-design/x-sdk

  • 🐛 Fix XStream not releasing the reader lock or canceling the underlying stream on early exit (loop break / incomplete read), avoiding resource leaks and dangling read requests. #1970 by Mickey

@​ant-design/x-skill

  • 🐛 Fix the x-skill ora spinner (loader) failing to load in CJS environments; the loader instance is now cached and loaded via dynamic import, avoiding duplicate loads and initialization errors. #1980 by jay666mnj

Others

  • 📖 Improve site page title composition: separate subtitle and title with a space to avoid concatenated wording. #1959 by Mickey
  • 📖 Add a note in the FAQ recommending Antdv Next X for Vue users. #1966 by QDyanbing
  • 📖 Unify the semantic DOM heading wording on the Chinese site. #1877 by Rain120
  • 🛠 Hide the focus outline on the Component Overview search box. #1987 by QDyanbing

2.8.0

2026-06-08

@​ant-design/x

  • 🆕 Folder component adds a right-click context menu. #1919 by Mickey
  • 🐛 Fix FileCard.List scroll button state not refreshing when items update. #1914 by Ryker_Feng
  • 🐛 Fix Sender runtime-inserted slots being cleared when the slotConfig ref changes. #1900 by pikanohup
  • 🐛 Fix design token type coercion before arithmetic operations. #1910 by Div627

@​ant-design/x-markdown

... (truncated)

Commits
  • 13afbf4 Merge pull request #1991 from ant-design/chore/changelog-2.9.0
  • 5892920 test: update demo snapshots
  • b22ee17 Merge branch 'main' into chore/changelog-2.9.0
  • 002ec52 chore: bump version to 2.9.0
  • d6c6808 chore: merge unreleased 2.8.1 changelog into 2.9.0
  • 018276b chore: set 2.9.0 release date to 2026-07-23
  • 93c44e1 chore: add newly merged PRs to 2.9.0 changelog
  • f17d4ec Merge pull request #1980 from jay666mnj/fix-x-skill-ora-cjs
  • 3f1aa9f Merge pull request #1877 from Rain120/feature/docs-unified_semantic
  • b6cdd2b Merge branch 'main' into fix-x-skill-ora-cjs
  • Additional commits viewable in compare view

Updates antd from 6.3.7 to 6.5.3

Release notes

Sourced from antd's releases.

6.5.3

  • Input
    • 🐞 Fix Input.OTP using type="text" when mask is a string while preserving explicit type values. #58835 @​QDyanbing
    • 🐞 Fix Input.OTP displaying the original value when mask is true. #58805 @​cyphercodes
    • 💄 Fix Input.TextArea resize handle rendering as a dot on touch devices. #58812 @​pupuking723
  • Typography
    • ⚡️ Improve Typography ellipsis tooltip performance in large lists. #58806 @​lkxdsb
    • 🐞 Fix Typography editable textarea font size not matching the edited content. #58551 @​gaurav0107
  • 🐞 Fix DatePicker.RangePicker submitting unconfirmed partial values on blur when using showTime and allowEmpty. #58803 @​zombieJ
  • 🐞 Fix Form.Item useStatus returning stale errors and warnings when the validation status remains unchanged. #58815 @​afc163
  • 🐞 Fix Slider triggering onFocus and onBlur callbacks multiple times. #58711 @​QDyanbing
  • 🐞 Fix Spin standalone indicators being mispositioned when nested in another Spin. #58801 @​QDyanbing
  • 🐞 Fix Table controlled filter dropdown selections not updating while open. #58816 @​afc163
  • 🐞 Fix Upload default download links allowing newly opened tabs to access the opener page. #58817 @​afc163
  • 💄 Fix incomplete Icon base styles when theme.zeroRuntime or CSS layers are enabled. #58763 @​QDyanbing
  • 💄 Fix Select suffix icons and selected content overlapping the clear icon with custom theme colors. #58581 @​QDyanbing
  • 💄 Fix Tabs third-party <svg> icons not vertically aligning with labels. #58847 @​mohamedkhaled4053

  • Input
    • 🐞 修复 Input.OTP 使用字符串 mask 时仍采用 type="text" 的问题,并保留显式 type 配置。#58835 @​QDyanbing
    • 🐞 修复 Input.OTP 的 masktrue 时仍显示原始值的问题。#58805 @​cyphercodes
    • 💄 修复 Input.TextArea 调整大小手柄在触摸设备上显示为小圆点的问题。#58812 @​pupuking723
  • Typography
    • ⚡️ 优化 Typography 省略提示在大列表中的渲染性能。#58806 @​lkxdsb
    • 🐞 修复 Typography 可编辑文本框字号与被编辑内容不一致的问题。#58551 @​gaurav0107
  • 🐞 修复 DatePicker.RangePicker 使用 showTimeallowEmpty 时失焦会提交未确认部分值的问题。#58803 @​zombieJ
  • 🐞 修复 Form.Item useStatus 在校验状态未变化时返回旧错误和警告内容的问题。#58815 @​afc163
  • 🐞 修复 Slider 的 onFocusonBlur 回调被重复触发的问题。#58711 @​QDyanbing
  • 🐞 修复 Spin 独立加载指示器嵌套使用时定位错乱的问题。#58801 @​QDyanbing
  • 🐞 修复 Table 受控筛选面板保持打开时选中项未同步更新的问题。#58816 @​afc163
  • 🐞 修复 Upload 默认下载打开的新页面可访问来源页面的问题。#58817 @​afc163
  • 💄 修复启用 theme.zeroRuntime 或 CSS layer 时 Icon 基础样式不完整的问题。#58763 @​QDyanbing
  • 💄 修复 Select 自定义主题色下后缀图标或选中内容与清除图标重叠的问题。#58581 @​QDyanbing
  • 💄 修复 Tabs 中第三方 <svg> 图标与标签文字垂直方向未对齐的问题。#58847 @​mohamedkhaled4053

6.5.2

  • 💄 Fix Button, Collapse, ColorPicker, Layout, Select, Space.Addon, Tree, and Typography borders not respecting the global lineWidth and lineType Design Tokens. #58740 #58741 #58742 #58743 #58745 #58755 @​li-jia-nan @​QDyanbing
  • 🐞 Fix BorderBeam, Checkbox, and Switch reduced-motion styles causing Lightning CSS minification failures. #58707 @​QDyanbing
  • Tag
    • 💄 Fix Tag missing spacing and incorrect vertical alignment for bare <svg> icons from third-party icon libraries. #58723 @​mohamedkhaled4053
    • 🐞 Fix Tag navigation being triggered when clicking the close icon with both href and closable set. #58720 @​QDyanbing
  • 🐞 Fix Input.OTP dropping root DOM event handlers including onPointerDown, onAnimationEnd, onTransitionEnd, and onScrollEnd. #58697 react-component/util#794 @​aojunhao123
  • 🐞 Fix Form triggering a hook-order warning in React 19 when using the UMD development build. #58417 @​biubiukam
  • 💄 Fix Table missing the top border when a bordered nested table is wrapped by Tabs or custom content. #58746 @​QDyanbing
  • 🐞 Fix Input.Search custom enterButton not respecting the component's disabled and loading states. #58726 @​QDyanbing
  • 🐞 Fix Transfer custom action buttons passed through actions not preserving their own disabled state. #58718 @​QDyanbing
  • 🐞 Fix Tree rootStyle being ignored, and deprecate it in favor of styles.root. #58709 @​QDyanbing
  • 🐞 Fix Grid Col ignoring numeric 0 for the flex prop in regular and responsive configurations. #58719 @​QDyanbing
  • 🐞 Fix InputNumber not displaying suffix when Form feedback is enabled. #58703 @​QDyanbing
  • ⌨️ Fix Splitter percentage-based aria-valuemin and aria-valuemax values before container measurement, and prevent lazy drag previews from exceeding bounds next to zero-sized panels. #58702 @​QDyanbing

... (truncated)

Changelog

Sourced from antd's changelog.

6.5.3

2026-07-31

  • Input
    • 🐞 Fix Input.OTP using type="text" when mask is a string while preserving explicit type values. #58835 @​QDyanbing
    • 🐞 Fix Input.OTP displaying the original value when mask is true. #58805 @​cyphercodes
    • 💄 Fix Input.TextArea resize handle rendering as a dot on touch devices. #58812 @​pupuking723
  • Typography
    • ⚡️ Improve Typography ellipsis tooltip performance in large lists. #58806 @​lkxdsb
    • 🐞 Fix Typography editable textarea font size not matching the edited content. #58551 @​gaurav0107
  • 🐞 Fix DatePicker.RangePicker submitting unconfirmed partial values on blur when using showTime and allowEmpty. #58803 @​zombieJ
  • 🐞 Fix Form.Item useStatus returning stale errors and warnings when the validation status remains unchanged. #58815 @​afc163
  • 🐞 Fix Slider triggering onFocus and onBlur callbacks multiple times. #58711 @​QDyanbing
  • 🐞 Fix Spin standalone indicators being mispositioned when nested in another Spin. #58801 @​QDyanbing
  • 🐞 Fix Table controlled filter dropdown selections not updating while open. #58816 @​afc163
  • 🐞 Fix Upload default download links allowing newly opened tabs to access the opener page. #58817 @​afc163
  • 💄 Fix incomplete Icon base styles when theme.zeroRuntime or CSS layers are enabled. #58763 @​QDyanbing
  • 💄 Fix Select suffix icons and selected content overlapping the clear icon with custom theme colors. #58581 @​QDyanbing
  • 💄 Fix Tabs third-party <svg> icons not vertically aligning with labels. #58847 @​mohamedkhaled4053

6.5.2

2026-07-24

  • 💄 Fix Button, Collapse, ColorPicker, Layout, Select, Space.Addon, Tree, and Typography borders not respecting the global lineWidth and lineType Design Tokens. #58740 #58741 #58742 #58743 #58745 #58755 @​li-jia-nan @​QDyanbing
  • 🐞 Fix BorderBeam, Checkbox, and Switch reduced-motion styles causing Lightning CSS minification failures. #58707 @​QDyanbing
  • Tag
    • 💄 Fix Tag missing spacing and incorrect vertical alignment for bare <svg> icons from third-party icon libraries. #58723 @​mohamedkhaled4053
    • 🐞 Fix Tag navigation being triggered when clicking the close icon with both href and closable set. #58720 @​QDyanbing
  • 🐞 Fix Input.OTP dropping root DOM event handlers including onPointerDown, onAnimationEnd, onTransitionEnd, and onScrollEnd. #58697 react-component/util#794 @​aojunhao123
  • 🐞 Fix Form triggering a hook-order warning in React 19 when using the UMD development build. #58417 @​biubiukam
  • 💄 Fix Table missing the top border when a bordered nested table is wrapped by Tabs or custom content. #58746 @​QDyanbing
  • 🐞 Fix Input.Search custom enterButton not respecting the component's disabled and loading states. #58726 @​QDyanbing
  • 🐞 Fix Transfer custom action buttons passed through actions not preserving their own disabled state. #58718 @​QDyanbing
  • 🐞 Fix Tree rootStyle being ignored, and deprecate it in favor of styles.root. #58709 @​QDyanbing
  • 🐞 Fix Grid Col ignoring numeric 0 for the flex prop in regular and responsive configurations. #58719 @​QDyanbing
  • 🐞 Fix InputNumber not displaying suffix when Form feedback is enabled. #58703 @​QDyanbing
  • ⌨️ Fix Splitter percentage-based aria-valuemin and aria-valuemax values before container measurement, and prevent lazy drag previews from exceeding bounds next to zero-sized panels. #58702 @​QDyanbing
  • 📖 Fix the ant.design homepage theme preview resetting the selected theme during rerenders. #58687 @​meet-student
  • 📝 Correct Anchor offsetTop default value to 0 in the Chinese documentation. #58710 @​dogledogle

6.5.1

2026-07-13

  • 💄 Fix AutoComplete custom input background color being applied twice in the filled variant. #58669 @​QDyanbing
  • 🐞 Fix Avatar, List, Pagination, Steps, and Table not responding to breakpoint changes after responsive configuration is enabled dynamically. #58654 @​li-jia-nan
  • ⌨️ Fix Button, Checkbox, Switch, Splitter, and BorderBeam pseudo-element transitions and animations so they respect prefers-reduced-motion. #58685 @​li-jia-nan
  • 🐞 Fix Button icon vertical alignment when used in Card extra. #58584 @​zombieJ

... (truncated)

Commits

Updates axios from 1.16.0 to 1.19.0

Release notes

Sourced from axios's releases.

v1.19.0 - July 22, 2026

This release raises the form-data security floor, adds configuration and type-system capabilities, and fixes NO_PROXY matching, interceptor errors, progress reporting, and serialization edge cases.

🔒 Security Fixes

  • Multipart Form Data: Raised the form-data dependency floor to ^4.0.6, preventing fresh installations from resolving versions affected by the CRLF injection vulnerability GHSA-hmw2-7cc7-3qxx (GHSA-hmw2-7cc7-3qxx). (#11028)

🚀 New Features

  • Configuration Extensibility: Preserved own-enumerable symbol-keyed fields through mergeConfig and added a generic params type across public TypeScript declarations, responses, errors, adapters, and serializers. (#11043, #11081)
  • Header Parameter Parsing: Added the opt-in AxiosHeaders.parseParameters() parser for quote-aware, RFC-style HTTP parameter parsing while preserving legacy parsing behavior. (#11051)
  • HTTP Status Codes: Added the missing Cloudflare 520 WebServerReturnsAnUnknownError status and matching ESM/CJS declarations. (#11067)

🐛 Bug Fixes

  • Form Data Conversion: Limited formDataToJSON path splitting to dot and bracket notation, preserving literal punctuation in keys, and removed browser-facing Buffer.from usage from toFormData to avoid unnecessary polyfills. (#11006, #11018)
  • Proxy Bypass: Canonicalized IPv4 shorthand, octal, and hexadecimal forms during NO_PROXY matching and honored * entries within comma- or space-separated bypass lists. (#11029, #11053)
  • Cancellation: Propagated already-aborted input signals immediately when composing abort signals. (#11035)
  • Header Handling: Preserved empty first values for duplicate singleton headers and made AxiosHeaders#getSetCookie() consistently return arrays for present values. (#11036, #11037)
  • URL Handling: Included normalized, safely redacted offending URLs in malformed-protocol errors and removed repeated trailing slashes when combining base URLs. (#11024, #11038)
  • Progress Events: Clamped malformed negative progress values to zero and ensured final Node.js download progress events are delivered before streamed responses close. (#11039, #11040)
  • Error and JSON Serialization: Serialized Set values as arrays in JSON-compatible snapshots and synthesized useful AxiosError messages from otherwise-empty AggregateError instances. (#11044, #11059)
  • Content-Length Enforcement: Corrected base64 data: URL size estimation so maxContentLength is enforced consistently by the HTTP and Fetch adapters. (#11061)
  • Synchronous Interceptors: Prevented requests from being dispatched after synchronous request interceptors fail unless their paired rejection handler resolves successfully. (#11071)

🔧 Maintenance & Chores

  • Dependencies: Updated development and test tooling, the docs fixture's Axios version, and GitHub Actions integrations including Checkout, Setup Node, Setup Deno, and Zizmor. (#11031, #11055, #11056, #11058, #11079, #11080, #11088, #11089, #11090)
  • Build Outputs: Limited sourcemap generation to published minified bundles, removing broken map references from non-minified builds. (#11054)
  • Form Data Internals: Centralized FormData header handling and made the Node.js adapter tolerate getHeaders() returning undefined under the content-only policy. (#11062)
  • Developer Experience: Ignored common local AI-tooling directories and fixed a constant-reassignment crash when the development sandbox serves its root path. (#11032, #11073)
  • Documentation: Updated sponsor information, clarified that baseURL is not a path-security boundary, scoped provenance claims to attested releases, and corrected the configuration-defaults documentation. (#11041, #11068, #11076, #11078)
  • Publishing: Simplified v1 publishing to use the npm version bundled with Node.js 26 and updated package metadata for the 1.19.0 release. (#11083, #11095)

🌟 New Contributors

We are thrilled to welcome our new contributors. Thank you for helping improve Axios:

... (truncated)

Changelog

Sourced from axios's changelog.

v1.19.0 — July 22, 2026

This release raises the form-data security floor, adds configuration and type-system capabilities, and fixes NO_PROXY matching, interceptor errors, progress reporting, and serialization edge cases.

🔒 Security Fixes

  • Multipart Form Data: Raised the form-data dependency floor to ^4.0.6, preventing fresh installations from resolving versions affected by the CRLF injection vulnerability GHSA-hmw2-7cc7-3qxx (GHSA-hmw2-7cc7-3qxx). (#11028)

🚀 New Features

  • Configuration Extensibility: Preserved own-enumerable symbol-keyed fields through mergeConfig and added a generic params type across public TypeScript declarations, responses, errors, adapters, and serializers. (#11043, #11081)
  • Header Parameter Parsing: Added the opt-in AxiosHeaders.parseParameters() parser for quote-aware, RFC-style HTTP parameter parsing while preserving legacy parsing behavior. (#11051)
  • HTTP Status Codes: Added the missing Cloudflare 520 WebServerReturnsAnUnknownError status and matching ESM/CJS declarations. (#11067)

🐛 Bug Fixes

  • Form Data Conversion: Limited formDataToJSON path splitting to dot and bracket notation, preserving literal punctuation in keys, and removed browser-facing Buffer.from usage from toFormData to avoid unnecessary polyfills. (#11006, #11018)

  • Proxy Bypass: Canonicalized IPv4 shorthand, octal, and hexadecimal forms during NO_PROXY matching and honored * entries within comma- or space-separated bypass lists. (#11029, #11053)

  • Cancellation: Propagated already-aborted input signals immediately when composing abort signals. (#11035)

  • Header Handling: Preserved empty first values for duplicate singleton headers and made AxiosHeaders#getSetCookie() consistently return arrays for present values. (#11036, #11037)

  • URL Handling: Included normalized, safely redacted offending URLs in malformed-protocol errors and removed repeated trailing slashes when combining base URLs. (#11008, #11038)

  • Progress Events: Clamped malformed negative progress values to zero and ensured final Node.js download progress events are delivered before streamed responses close. (#11039, #11040)

  • Error and JSON Serialization: Serialized Set values as arrays in JSON-compatible snapshots and syn...

    Description has been truncated

…2 updates

Bumps the patch-and-minor group with 22 updates in the /web directory:

| Package | From | To |
| --- | --- | --- |
| [@ant-design/icons](https://github.com/ant-design/ant-design-icons) | `6.2.2` | `6.3.2` |
| [@ant-design/x](https://github.com/ant-design/x) | `2.7.0` | `2.9.0` |
| [@ant-design/x-markdown](https://github.com/ant-design/x) | `2.7.0` | `2.9.0` |
| [@ant-design/x-sdk](https://github.com/ant-design/x) | `2.7.0` | `2.9.0` |
| [antd](https://github.com/ant-design/ant-design) | `6.3.7` | `6.5.3` |
| [axios](https://github.com/axios/axios) | `1.16.0` | `1.19.0` |
| [casdoor-js-sdk](https://github.com/casdoor/casdoor-js-sdk) | `0.19.0` | `0.20.0` |
| [i18next](https://github.com/i18next/i18next) | `26.0.8` | `26.3.6` |
| [react](https://github.com/react/react/tree/HEAD/packages/react) | `19.2.5` | `19.2.8` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.14` | `19.2.18` |
| [react-dom](https://github.com/react/react/tree/HEAD/packages/react-dom) | `19.2.5` | `19.2.8` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.2.3` | `19.2.4` |
| [react-i18next](https://github.com/i18next/react-i18next) | `17.0.6` | `17.0.11` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `7.14.2` | `7.18.2` |
| [zustand](https://github.com/pmndrs/zustand) | `5.0.12` | `5.0.14` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `6.0.1` | `6.0.5` |
| [eslint](https://github.com/eslint/eslint) | `10.3.0` | `10.8.0` |
| [eslint-plugin-react-refresh](https://github.com/ArnaudBarre/eslint-plugin-react-refresh) | `0.5.2` | `0.5.3` |
| [globals](https://github.com/sindresorhus/globals) | `17.6.0` | `17.8.0` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.59.1` | `8.65.0` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.0.10` | `8.2.0` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.5` | `4.1.10` |



Updates `@ant-design/icons` from 6.2.2 to 6.3.2
- [Commits](https://github.com/ant-design/ant-design-icons/commits)

Updates `@ant-design/x` from 2.7.0 to 2.9.0
- [Release notes](https://github.com/ant-design/x/releases)
- [Changelog](https://github.com/ant-design/x/blob/main/CHANGELOG.en-US.md)
- [Commits](ant-design/x@2.7.0...2.9.0)

Updates `@ant-design/x-markdown` from 2.7.0 to 2.9.0
- [Release notes](https://github.com/ant-design/x/releases)
- [Changelog](https://github.com/ant-design/x/blob/main/CHANGELOG.en-US.md)
- [Commits](ant-design/x@2.7.0...2.9.0)

Updates `@ant-design/x-sdk` from 2.7.0 to 2.9.0
- [Release notes](https://github.com/ant-design/x/releases)
- [Changelog](https://github.com/ant-design/x/blob/main/CHANGELOG.en-US.md)
- [Commits](ant-design/x@2.7.0...2.9.0)

Updates `antd` from 6.3.7 to 6.5.3
- [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@6.3.7...6.5.3)

Updates `axios` from 1.16.0 to 1.19.0
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.16.0...v1.19.0)

Updates `casdoor-js-sdk` from 0.19.0 to 0.20.0
- [Release notes](https://github.com/casdoor/casdoor-js-sdk/releases)
- [Commits](casdoor/casdoor-js-sdk@v0.19.0...v0.20.0)

Updates `i18next` from 26.0.8 to 26.3.6
- [Release notes](https://github.com/i18next/i18next/releases)
- [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/i18next@v26.0.8...v26.3.6)

Updates `react` from 19.2.5 to 19.2.8
- [Release notes](https://github.com/react/react/releases)
- [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/react/react/commits/v19.2.8/packages/react)

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

Updates `react-dom` from 19.2.5 to 19.2.8
- [Release notes](https://github.com/react/react/releases)
- [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/react/react/commits/v19.2.8/packages/react-dom)

Updates `@types/react-dom` from 19.2.3 to 19.2.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `react-i18next` from 17.0.6 to 17.0.11
- [Changelog](https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/react-i18next@v17.0.6...v17.0.11)

Updates `react-router-dom` from 7.14.2 to 7.18.2
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/react-router-dom@7.18.2/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.18.2/packages/react-router-dom)

Updates `zustand` from 5.0.12 to 5.0.14
- [Release notes](https://github.com/pmndrs/zustand/releases)
- [Commits](pmndrs/zustand@v5.0.12...v5.0.14)

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

Updates `@types/react-dom` from 19.2.3 to 19.2.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `@vitejs/plugin-react` from 6.0.1 to 6.0.5
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/plugin-react@6.0.5/packages/plugin-react)

Updates `eslint` from 10.3.0 to 10.8.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v10.3.0...v10.8.0)

Updates `eslint-plugin-react-refresh` from 0.5.2 to 0.5.3
- [Release notes](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/releases)
- [Changelog](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/blob/main/CHANGELOG.md)
- [Commits](ArnaudBarre/eslint-plugin-react-refresh@v0.5.2...v0.5.3)

Updates `globals` from 17.6.0 to 17.8.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v17.6.0...v17.8.0)

Updates `typescript-eslint` from 8.59.1 to 8.65.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.65.0/packages/typescript-eslint)

Updates `vite` from 8.0.10 to 8.2.0
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/create-vite@8.2.0/packages/vite)

Updates `vitest` from 4.1.5 to 4.1.10
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.10/packages/vitest)

---
updated-dependencies:
- dependency-name: "@ant-design/icons"
  dependency-version: 6.3.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@ant-design/x"
  dependency-version: 2.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@ant-design/x-markdown"
  dependency-version: 2.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@ant-design/x-sdk"
  dependency-version: 2.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: antd
  dependency-version: 6.5.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: axios
  dependency-version: 1.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: casdoor-js-sdk
  dependency-version: 0.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: i18next
  dependency-version: 26.3.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: react
  dependency-version: 19.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: "@types/react"
  dependency-version: 19.2.18
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: react-dom
  dependency-version: 19.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: "@types/react-dom"
  dependency-version: 19.2.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: react-i18next
  dependency-version: 17.0.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: react-router-dom
  dependency-version: 7.18.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: zustand
  dependency-version: 5.0.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: "@types/react"
  dependency-version: 19.2.18
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: "@types/react-dom"
  dependency-version: 19.2.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: "@vitejs/plugin-react"
  dependency-version: 6.0.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: eslint
  dependency-version: 10.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: eslint-plugin-react-refresh
  dependency-version: 0.5.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: globals
  dependency-version: 17.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: typescript-eslint
  dependency-version: 8.65.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: vite
  dependency-version: 8.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: vitest
  dependency-version: 4.1.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 3, 2026
@dependabot @github

dependabot Bot commented on behalf of github Aug 10, 2026

Copy link
Copy Markdown
Author

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

@dependabot dependabot Bot closed this Aug 10, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/web/patch-and-minor-6159ac7995 branch August 10, 2026 20:28
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 javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants