Skip to content

build(deps): bump the production-dependencies group with 27 updates#292

Closed
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/npm_and_yarn/production-dependencies-9243ea0192
Closed

build(deps): bump the production-dependencies group with 27 updates#292
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/npm_and_yarn/production-dependencies-9243ea0192

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 29, 2026

Copy link
Copy Markdown
Contributor

Bumps the production-dependencies group with 27 updates:

Package From To
@ant-design/icons 6.2.3 6.3.2
@codemirror/commands 6.10.3 6.10.4
@codemirror/state 6.6.0 6.7.0
@mantine/core 9.2.1 9.4.1
@mantine/dates 9.2.1 9.4.1
@mantine/hooks 9.2.1 9.4.1
@mantine/notifications 9.2.1 9.4.1
@mlc-ai/web-llm 0.2.83 0.2.84
@tabler/icons-react 3.41.1 3.44.0
@tanstack/react-query 5.100.11 5.101.2
@tanstack/react-query-devtools 5.100.11 5.101.2
@tanstack/react-router 1.170.7 1.170.16
@yaireo/tagify 4.37.1 4.38.0
antd 6.4.3 6.5.0
axios 1.16.1 1.18.1
cron-parser 5.5.0 5.6.1
dayjs 1.11.20 1.11.21
i18next 26.3.1 26.3.3
marked 18.0.4 18.0.5
next 16.2.6 16.2.9
puppeteer-core 25.0.4 25.2.1
react 19.2.6 19.2.7
react-dom 19.2.6 19.2.7
react-draggable 4.5.0 4.7.0
semver 7.8.1 7.8.5
uuid 14.0.0 14.0.1
zustand 5.0.13 5.0.14

Updates @ant-design/icons from 6.2.3 to 6.3.2

Commits

Updates @codemirror/commands from 6.10.3 to 6.10.4

Commits

Updates @codemirror/state from 6.6.0 to 6.7.0

Commits

Updates @mantine/core from 9.2.1 to 9.4.1

Release notes

Sourced from @​mantine/core's releases.

9.4.1

What's Changed

  • [@mantine/form] Fix some functions not working correctly with react compiler (#9007)
  • [@mantine/charts] Heatmap: Fix values outside the provided domain rendering with no fill (#8982)
  • [@mantine/core] RollingNumber: Fix rendering -0 for values that round to zero (#8983)
  • [@mantine/core] Slider: Fix incorrect marks labels position in RTL layouts (#8996)
  • [@mantine/hooks] Fix use-set and use-map hooks using stale values when used with React compiler (#9008)
  • [@mantine/form] Add FormProviderProps type export (#9009)
  • [@mantine/schedule] ResourcesDayView: Fix incorrect multiday events rendering (#9014)
  • [@mantine/dates] TimePicker: Fix duration values greater than 9999 hours not working (#9002)
  • [@mantine/core] Menu: Mark non-menuitem dropdown children as presentational (#9004)
  • [@mantine/core] Collapse: Fix ref and style props not working when transitionDuration: 0 (#9013)
  • [@mantine/core] Textarea: Fix autosize not working correctly with minRows on initial render
  • [@mantine/schedule] ResourcesWeekView: Add events resizing support

New Contributors

Full Changelog: mantinedev/mantine@9.4.0...9.4.1

9.4.0 🥵

View changelog with demos on mantine.dev website

Support Mantine development

You can now sponsor Mantine development with OpenCollective. All funds are used to improve Mantine and create new features and components.

ComboboxPopover component

New ComboboxPopover component allows adding a combobox dropdown with selectable options to any button element. Unlike Select and MultiSelect, it does not render an input – you provide your own target element via ComboboxPopover.Target. Supports single and multiple selection modes with the same data format as Select.

import { useState } from 'react';
import { Button, ComboboxPopover } from '@mantine/core';
function Demo() {
const [value, setValue] = useState<string | null>(null);
return (
<ComboboxPopover
data={['React', 'Angular', 'Vue', 'Svelte']}
value={value}
onChange={setValue}
>
<ComboboxPopover.Target>
</tr></table>

... (truncated)

Commits
  • d709e0b [release] Version: 9.4.1
  • ed92b23 [@​mantine/core] RollingNumber: Fix rendering -0 for values that round to ze...
  • b41b4a4 [@​mantine/core] Slider: Fix incorrect marks labels position in RTL layouts (#...
  • 498c956 [@​mantine/core] Menu: Mark non-menuitem dropdown children as presentational...
  • aa11f2f [@​mantine/core] Collapse: Fix ref and style props not working when `trans...
  • fcfbbf3 [@​mantine/core] Textarea: Fix autosize not working correctly with minRows o...
  • 75d5ab5 [release] Version: 9.4.0
  • eb99900 Merge pull request #8992 from mantinedev/9.4
  • 6d27882 [mantine.dev] Fix typo (#8993)
  • 9bddf57 [refactor] Improve ActionIcon tests and docs
  • Additional commits viewable in compare view

Updates @mantine/dates from 9.2.1 to 9.4.1

Release notes

Sourced from @​mantine/dates's releases.

9.4.1

What's Changed

  • [@mantine/form] Fix some functions not working correctly with react compiler (#9007)
  • [@mantine/charts] Heatmap: Fix values outside the provided domain rendering with no fill (#8982)
  • [@mantine/core] RollingNumber: Fix rendering -0 for values that round to zero (#8983)
  • [@mantine/core] Slider: Fix incorrect marks labels position in RTL layouts (#8996)
  • [@mantine/hooks] Fix use-set and use-map hooks using stale values when used with React compiler (#9008)
  • [@mantine/form] Add FormProviderProps type export (#9009)
  • [@mantine/schedule] ResourcesDayView: Fix incorrect multiday events rendering (#9014)
  • [@mantine/dates] TimePicker: Fix duration values greater than 9999 hours not working (#9002)
  • [@mantine/core] Menu: Mark non-menuitem dropdown children as presentational (#9004)
  • [@mantine/core] Collapse: Fix ref and style props not working when transitionDuration: 0 (#9013)
  • [@mantine/core] Textarea: Fix autosize not working correctly with minRows on initial render
  • [@mantine/schedule] ResourcesWeekView: Add events resizing support

New Contributors

Full Changelog: mantinedev/mantine@9.4.0...9.4.1

9.4.0 🥵

View changelog with demos on mantine.dev website

Support Mantine development

You can now sponsor Mantine development with OpenCollective. All funds are used to improve Mantine and create new features and components.

ComboboxPopover component

New ComboboxPopover component allows adding a combobox dropdown with selectable options to any button element. Unlike Select and MultiSelect, it does not render an input – you provide your own target element via ComboboxPopover.Target. Supports single and multiple selection modes with the same data format as Select.

import { useState } from 'react';
import { Button, ComboboxPopover } from '@mantine/core';
function Demo() {
const [value, setValue] = useState<string | null>(null);
return (
<ComboboxPopover
data={['React', 'Angular', 'Vue', 'Svelte']}
value={value}
onChange={setValue}
>
<ComboboxPopover.Target>
</tr></table>

... (truncated)

Commits
  • d709e0b [release] Version: 9.4.1
  • 94e044a [@​mantine/dates] TimePicker: Fix duration values greater than 9999 hours not ...
  • 75d5ab5 [release] Version: 9.4.0
  • 742ccdf [core] Minor dependencies updates
  • e595eed [@​mantine/dates] DatePicker: Fix fullWidth prop being incompatible with pre...
  • 73a04e0 [release] Version: 9.3.2
  • ea9a722 [@​mantine/dates] TimePicker: Allow entering 01-09 hours over a selected 00 va...
  • b431b6a [@​mantine/dates] DatePickerPicker: Fix range presets ignoring specified time ...
  • 5c5eb3d [@​mantine/dates] TimePicker: Add closeDropdownOnPresetSelect prop support
  • 4a41832 [@​mantine/dates] TimePicker: Fix input getting stuck at maximum value when ty...
  • Additional commits viewable in compare view

Updates @mantine/hooks from 9.2.1 to 9.4.1

Release notes

Sourced from @​mantine/hooks's releases.

9.4.1

What's Changed

  • [@mantine/form] Fix some functions not working correctly with react compiler (#9007)
  • [@mantine/charts] Heatmap: Fix values outside the provided domain rendering with no fill (#8982)
  • [@mantine/core] RollingNumber: Fix rendering -0 for values that round to zero (#8983)
  • [@mantine/core] Slider: Fix incorrect marks labels position in RTL layouts (#8996)
  • [@mantine/hooks] Fix use-set and use-map hooks using stale values when used with React compiler (#9008)
  • [@mantine/form] Add FormProviderProps type export (#9009)
  • [@mantine/schedule] ResourcesDayView: Fix incorrect multiday events rendering (#9014)
  • [@mantine/dates] TimePicker: Fix duration values greater than 9999 hours not working (#9002)
  • [@mantine/core] Menu: Mark non-menuitem dropdown children as presentational (#9004)
  • [@mantine/core] Collapse: Fix ref and style props not working when transitionDuration: 0 (#9013)
  • [@mantine/core] Textarea: Fix autosize not working correctly with minRows on initial render
  • [@mantine/schedule] ResourcesWeekView: Add events resizing support

New Contributors

Full Changelog: mantinedev/mantine@9.4.0...9.4.1

9.4.0 🥵

View changelog with demos on mantine.dev website

Support Mantine development

You can now sponsor Mantine development with OpenCollective. All funds are used to improve Mantine and create new features and components.

ComboboxPopover component

New ComboboxPopover component allows adding a combobox dropdown with selectable options to any button element. Unlike Select and MultiSelect, it does not render an input – you provide your own target element via ComboboxPopover.Target. Supports single and multiple selection modes with the same data format as Select.

import { useState } from 'react';
import { Button, ComboboxPopover } from '@mantine/core';
function Demo() {
const [value, setValue] = useState<string | null>(null);
return (
<ComboboxPopover
data={['React', 'Angular', 'Vue', 'Svelte']}
value={value}
onChange={setValue}
>
<ComboboxPopover.Target>
</tr></table>

... (truncated)

Commits
  • d709e0b [release] Version: 9.4.1
  • 4f3d7d0 [@​mantine/hooks] Fix use-set and use-map hooks using stale values when used w...
  • 75d5ab5 [release] Version: 9.4.0
  • d03d4a3 [@​mantine/core] Splitter: Fix inconsistent px mode detection
  • 791ac6a [@​mantine/hooks] use-splitter: Fix incorrect handling of overflowing panels w...
  • df5b0e4 Merge branch 'master' into 9.4
  • 73a04e0 [release] Version: 9.3.2
  • ff0782e [refactor] Fix ts errors
  • c7267a2 Merge branch 'master' into 9.4
  • bb00207 [@​mantine/core] Splitter: Add option to reset on double click (#8957)
  • Additional commits viewable in compare view

Updates @mantine/notifications from 9.2.1 to 9.4.1

Release notes

Sourced from @​mantine/notifications's releases.

9.4.1

What's Changed

  • [@mantine/form] Fix some functions not working correctly with react compiler (#9007)
  • [@mantine/charts] Heatmap: Fix values outside the provided domain rendering with no fill (#8982)
  • [@mantine/core] RollingNumber: Fix rendering -0 for values that round to zero (#8983)
  • [@mantine/core] Slider: Fix incorrect marks labels position in RTL layouts (#8996)
  • [@mantine/hooks] Fix use-set and use-map hooks using stale values when used with React compiler (#9008)
  • [@mantine/form] Add FormProviderProps type export (#9009)
  • [@mantine/schedule] ResourcesDayView: Fix incorrect multiday events rendering (#9014)
  • [@mantine/dates] TimePicker: Fix duration values greater than 9999 hours not working (#9002)
  • [@mantine/core] Menu: Mark non-menuitem dropdown children as presentational (#9004)
  • [@mantine/core] Collapse: Fix ref and style props not working when transitionDuration: 0 (#9013)
  • [@mantine/core] Textarea: Fix autosize not working correctly with minRows on initial render
  • [@mantine/schedule] ResourcesWeekView: Add events resizing support

New Contributors

Full Changelog: mantinedev/mantine@9.4.0...9.4.1

9.4.0 🥵

View changelog with demos on mantine.dev website

Support Mantine development

You can now sponsor Mantine development with OpenCollective. All funds are used to improve Mantine and create new features and components.

ComboboxPopover component

New ComboboxPopover component allows adding a combobox dropdown with selectable options to any button element. Unlike Select and MultiSelect, it does not render an input – you provide your own target element via ComboboxPopover.Target. Supports single and multiple selection modes with the same data format as Select.

import { useState } from 'react';
import { Button, ComboboxPopover } from '@mantine/core';
function Demo() {
const [value, setValue] = useState<string | null>(null);
return (
<ComboboxPopover
data={['React', 'Angular', 'Vue', 'Svelte']}
value={value}
onChange={setValue}
>
<ComboboxPopover.Target>
</tr></table>

... (truncated)

Commits
  • d709e0b [release] Version: 9.4.1
  • 75d5ab5 [release] Version: 9.4.0
  • 96446c5 [@​mantine/notifications] Fix cleanNotificationsQueue clearing priority noti...
  • 742ccdf [core] Minor dependencies updates
  • df5b0e4 Merge branch 'master' into 9.4
  • 73a04e0 [release] Version: 9.3.2
  • c7267a2 Merge branch 'master' into 9.4
  • 33b8c0f [release] Version: 9.3.1
  • 9d26915 [@​mantine/notifications] Fix stale DOM nodes references not being cleaned up ...
  • 3f09946 [@​mantine/notifications] Add priority queue support
  • Additional commits viewable in compare view

Updates @mlc-ai/web-llm from 0.2.83 to 0.2.84

Commits

Updates @tabler/icons-react from 3.41.1 to 3.44.0

Release notes

Sourced from @​tabler/icons-react's releases.

Release 3.44.0

18 new icons:

  • outline/code-ai
  • outline/email-stamp
  • outline/foodsteps
  • outline/git-pull-request-conflict
  • outline/noise-reduction
  • outline/photo-alt
  • outline/pointer-2
  • outline/pointer-collaboration-2
  • outline/pointer-collaboration
  • outline/roulette
  • outline/scan-cube
  • outline/sketching
  • outline/sparkle-2
  • outline/sparkle-highlight
  • outline/sparkle
  • outline/sphere-2
  • outline/text-scan-ai
  • outline/vignette

Fixed icons: outline/air-balloon, outline/body-scan, outline/chart-sankey, outline/ear-scan, outline/grid-scan, outline/line-scan, outline/object-scan, outline/photo-scan, outline/route-scan, outline/scan-eye, outline/scan-letter-a, outline/scan-letter-t, outline/scan-position, outline/scan-traces, outline/scan, outline/text-scan-2, outline/user-scan, outline/zoom-scan

Release 3.43.0

18 new icons:

  • outline/acorn
  • outline/acrobatic
  • outline/banana
  • outline/brand-audible
  • outline/building-eiffel-tower
  • outline/car-door
  • outline/car-lifter
  • outline/chocolate
  • outline/dumbbell
  • outline/exercise-ball
  • outline/flood
  • outline/hula-hoop
  • outline/leaf-maple
  • outline/notdef
  • outline/rugby
  • outline/taiwan-dollar
  • outline/target-2
  • outline/unicycle

... (truncated)

Commits

Updates @tanstack/react-query from 5.100.11 to 5.101.2

Release notes

Sourced from @​tanstack/react-query's releases.

@​tanstack/react-query-devtools@​5.101.2

Patch Changes

@​tanstack/react-query-next-experimental@​5.101.2

Patch Changes

  • Updated dependencies []:
    • @​tanstack/react-query@​5.101.2

@​tanstack/react-query-persist-client@​5.101.2

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.101.2
    • @​tanstack/react-query@​5.101.2

@​tanstack/react-query@​5.101.2

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.101.2

@​tanstack/react-query-devtools@​5.101.1

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-devtools@​5.101.1
    • @​tanstack/react-query@​5.101.1

@​tanstack/react-query-next-experimental@​5.101.1

Patch Changes

  • Updated dependencies []:
    • @​tanstack/react-query@​5.101.1

@​tanstack/react-query-persist-client@​5.101.1

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.101.1
    • @​tanstack/react-query@​5.101.1

@​tanstack/react-query@​5.101.1

Patch Changes

... (truncated)

Changelog

Sourced from @​tanstack/react-query's changelog.

5.101.2

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.101.2

5.101.1

Patch Changes

  • Updated dependencies [9eff92e]:
    • @​tanstack/query-core@​5.101.1

5.101.0

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.101.0

5.100.14

Patch Changes

  • fix(react-query): do not go into optimistic fetching state when not subscribed (#10759)

  • Updated dependencies []:

    • @​tanstack/query-core@​5.100.14

5.100.13

Patch Changes

  • Updated dependencies [d423168]:
    • @​tanstack/query-core@​5.100.13

5.100.12

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.100.12
Commits
  • 610e8d1 ci: Version Packages (#10996)
  • 1f84256 docs: document the select typing caveat for parallel-queries hooks (#10984)
  • b809297 ci: Version Packages (#10977)
  • ccc843e test({react,preact}-query/useQueries): move type-only tests to 'useQueries.te...
  • 4154613 test({react,preact}-query/useMutation): split 'should handle conditional logi...
  • 8bb5fde test({react,preact}-query/useMutation): split 'should pass meta to mutation' ...
  • 87426a3 test(react-query): replace deprecated 'toBeCalledTimes' with 'toHaveBeenCalle...
  • feb1efd test(*): move 'vi.useRealTimers' to the end of 'afterEach' so cleanup runs un...
  • f3d8d2a ci: Version Packages (#10774)
  • 532bb29 fix(tests): disable local coverage instrumentation (#10776)
  • Additional commits viewable in compare view

Updates @tanstack/react-query-devtools from 5.100.11 to 5.101.2

Release notes

Sourced from @​tanstack/react-query-devtools's releases.

@​tanstack/react-query-devtools@​5.101.2

Patch Changes

@​tanstack/react-query-devtools@​5.101.1

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-devtools@​5.101.1
    • @​tanstack/react-query@​5.101.1

@​tanstack/react-query-devtools@​5.101.0

Patch Changes

@​tanstack/react-query-devtools@​5.100.14

Patch Changes

  • Updated dependencies [ed20b6d]:
    • @​tanstack/react-query@​5.100.14
    • @​tanstack/query-devtools@​5.100.14
Changelog

Sourced from @​tanstack/react-query-devtools's changelog.

5.101.2

Patch Changes

5.101.1

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-devtools@​5.101.1
    • @​tanstack/react-query@​5.101.1

5.101.0

Patch Changes

5.100.14

Patch Changes

  • Updated dependencies [ed20b6d]:
    • @​tanstack/react-query@​5.100.14
    • @​tanstack/query-devtools@​5.100.14

5.100.13

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-devtools@​5.100.13
    • @​tanstack/react-query@​5.100.13

5.100.12

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-devtools@​5.100.12
    • @​tanstack/react-query@​5.100.12
Commits

Updates @tanstack/react-router from 1.170.7 to 1.170.16

Release notes

Sourced from @​tanstack/react-router's releases.

@​tanstack/react-router@​1.170.16

Patch Changes

  • #7595 52db703 - Perf improvement of useMatch and derived hooks when navigating away from previous match

  • #7575 4a93cff - useMatches can skip useRef for structural sharing during SSR

  • #7600 f046b06 - Reduce Match rerenders during navigations (PR #7596)

  • #7577 689d88e - Reduce bundle size by sharing structuralSharing selector logic

  • #7627 689c5ab - Silence AbortError in renderRouterToStream, this is normal operation

@​tanstack/react-router@​1.170.15

Patch Changes

  • Updated dependencies [776d8ef]:
    • @​tanstack/router-core@​1.171.13

@​tanstack/react-router@​1.170.14

Patch Changes

  • Updated dependencies [df1076c]:
    • @​tanstack/router-core@​1.171.12
Changelog

Sourced from @​tanstack/react-router's changelog.

1.170.16

Patch Changes

  • #7595 52db703 - Perf improvement of useMatch and derived hooks when navigating away from previous match

  • #7575 4a93cff - useMatches can skip useRef for structural sharing during SSR

  • #7600 f046b06 - Reduce Match rerenders during navigations (PR #7596)

  • #7577 689d88e - Reduce bundle size by sharing structuralSharing selector logic

  • #7627 689c5ab - Silence AbortError in renderRouterToStream, this is normal operation

1.170.15

Patch Changes

  • Updated dependencies [776d8ef]:
    • @​tanstack/router-core@​1.171.13

1.170.14

Patch Changes

  • Updated dependencies [df1076c]:
    • @​tanstack/router-core@​1.171.12

1.170.13

Patch Changes

  • #7555 ac10815 - Fix search middleware composition so retainSearchParams does not restore search params that a downstream stripSearchParams removed.

  • Updated dependencies [ac10815]:

    • @​tanstack/router-core@​1.171.11

1.170.12

Patch Changes

1.170.11

Patch Changes

  • Updated dependencies [b4cd5af]:
    • @​tanstack/router-core@​1.171.9

... (truncated)

Commits

Updates @yaireo/tagify from 4.37.1 to 4.38.0

Release notes

Sourced from @​yaireo/tagify's releases.

v4.38.0

Tagify v4.38.0

Modern-browser focus, React wrapper import fixes, and two user-facing bugfixes.

Breaking changes

Internet Explorer support dropped

  • Removed tagify.polyfills.min.js and the entire src/polyfills/ tree
  • Removed the gulp polyfills task and package.json export
  • browserslist now excludes IE (not ie 11)
  • If you still load the polyfills bundle for legacy browsers, remove that script tag — Tagify targets evergreen browsers only

React wrapper packaging

  • src/react.tagify.jsxsrc/react.tagify.js (JSX-free, uses createElement)
  • Stale dist/react.tagify.jsx bundle removed
  • All @yaireo/tagify/react export paths now resolve to src/react.tagify.js
  • Removed src/react-compat-layer.js (replaced with renderToStaticMarkup from react-dom/server for safe template rendering)

Migration: Update imports if you referenced the old .jsx path directly. @yaireo/tagify/react should work without a custom JSX loader in webpack/Vite/Next.


Bug fixes

  • #1417 — Remove button stopped working when classNames.tagX had multiple space-separated classes. Detection now uses matches(classNames.tagXSelector) (first class token), consistent with other *Selector getters.
  • #1495IndexSizeError when calling the Selection API with no active range. placeCaretAfterNode now guards rangeCount before getRangeAt(0).
  • React — Wrapper failed to parse in bundlers that don't transpile node_modules JSX. Wrapper is now plain ES source consumable by any bundler without a JSX/Babel loader.

Build & tooling

  • pnpm build routes through gulp build (production build, not watch mode)
  • SWC transpilation and autoprefixer driven from shared browserslist config
  • README updated: modern-browser policy, CDN setup without polyfills bundle
  • Dependency updates (pnpm-lock.yaml)

Full Changelog: yairEO/tagify@v4.37.1...v4.38.0

Commits
  • 37bf429 4.38.0
  • bc8ed52 fixes #1417 - fix: support multiple classes on classNames.tagX for remove b...
  • 8d9744a added cursor rules file
  • 0c5024a chore: update .gitignore to include .repowise and .mcp.json files
  • 6594e3a fix(react): ship wrapper as JSX-free source and fix exports resolution
  • d2293be fixes #1495 - fix: guard Selection API calls when rangeCount is zero
  • 65b9aa3 refactor!: remove IE polyfills bundle and build pipeline
  • 315c8af fix(build): align build script and browser targets; update README for dropped IE
  • 198f52c update packages
  • 9a09097 Stop tracking local Cursor command prompts; add to .gitignore
  • See full diff in compare view

Updates antd from 6.4.3 to 6.5.0

Release notes

Sourced from antd's releases.

6.5.0

  • 🔥 Add the antd DESIGN.md design-language file and publish it at ant.design/design.md, helping AI design tools understand Ant Design visual language, component archetypes, and theme tokens. #58011 #58356 #58489 @​afc163
  • 📦 Optimi...

    Description has been truncated

Bumps the production-dependencies group with 27 updates:

| Package | From | To |
| --- | --- | --- |
| [@ant-design/icons](https://github.com/ant-design/ant-design-icons) | `6.2.3` | `6.3.2` |
| [@codemirror/commands](https://github.com/codemirror/commands) | `6.10.3` | `6.10.4` |
| [@codemirror/state](https://github.com/codemirror/state) | `6.6.0` | `6.7.0` |
| [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core) | `9.2.1` | `9.4.1` |
| [@mantine/dates](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dates) | `9.2.1` | `9.4.1` |
| [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) | `9.2.1` | `9.4.1` |
| [@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications) | `9.2.1` | `9.4.1` |
| [@mlc-ai/web-llm](https://github.com/mlc-ai/web-llm) | `0.2.83` | `0.2.84` |
| [@tabler/icons-react](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react) | `3.41.1` | `3.44.0` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.100.11` | `5.101.2` |
| [@tanstack/react-query-devtools](https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools) | `5.100.11` | `5.101.2` |
| [@tanstack/react-router](https://github.com/TanStack/router/tree/HEAD/packages/react-router) | `1.170.7` | `1.170.16` |
| [@yaireo/tagify](https://github.com/yairEO/tagify) | `4.37.1` | `4.38.0` |
| [antd](https://github.com/ant-design/ant-design) | `6.4.3` | `6.5.0` |
| [axios](https://github.com/axios/axios) | `1.16.1` | `1.18.1` |
| [cron-parser](https://github.com/harrisiirak/cron-parser) | `5.5.0` | `5.6.1` |
| [dayjs](https://github.com/iamkun/dayjs) | `1.11.20` | `1.11.21` |
| [i18next](https://github.com/i18next/i18next) | `26.3.1` | `26.3.3` |
| [marked](https://github.com/markedjs/marked) | `18.0.4` | `18.0.5` |
| [next](https://github.com/vercel/next.js) | `16.2.6` | `16.2.9` |
| [puppeteer-core](https://github.com/puppeteer/puppeteer) | `25.0.4` | `25.2.1` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.6` | `19.2.7` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.6` | `19.2.7` |
| [react-draggable](https://github.com/react-grid-layout/react-draggable) | `4.5.0` | `4.7.0` |
| [semver](https://github.com/npm/node-semver) | `7.8.1` | `7.8.5` |
| [uuid](https://github.com/uuidjs/uuid) | `14.0.0` | `14.0.1` |
| [zustand](https://github.com/pmndrs/zustand) | `5.0.13` | `5.0.14` |


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

Updates `@codemirror/commands` from 6.10.3 to 6.10.4
- [Changelog](https://github.com/codemirror/commands/blob/main/CHANGELOG.md)
- [Commits](https://github.com/codemirror/commands/commits)

Updates `@codemirror/state` from 6.6.0 to 6.7.0
- [Changelog](https://github.com/codemirror/state/blob/main/CHANGELOG.md)
- [Commits](https://github.com/codemirror/state/commits)

Updates `@mantine/core` from 9.2.1 to 9.4.1
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/9.4.1/packages/@mantine/core)

Updates `@mantine/dates` from 9.2.1 to 9.4.1
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/9.4.1/packages/@mantine/dates)

Updates `@mantine/hooks` from 9.2.1 to 9.4.1
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/9.4.1/packages/@mantine/hooks)

Updates `@mantine/notifications` from 9.2.1 to 9.4.1
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/9.4.1/packages/@mantine/notifications)

Updates `@mlc-ai/web-llm` from 0.2.83 to 0.2.84
- [Release notes](https://github.com/mlc-ai/web-llm/releases)
- [Commits](https://github.com/mlc-ai/web-llm/commits)

Updates `@tabler/icons-react` from 3.41.1 to 3.44.0
- [Release notes](https://github.com/tabler/tabler-icons/releases)
- [Commits](https://github.com/tabler/tabler-icons/commits/v3.44.0/packages/icons-react)

Updates `@tanstack/react-query` from 5.100.11 to 5.101.2
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/react-query/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/react-query@5.101.2/packages/react-query)

Updates `@tanstack/react-query-devtools` from 5.100.11 to 5.101.2
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/react-query-devtools/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/react-query-devtools@5.101.2/packages/react-query-devtools)

Updates `@tanstack/react-router` from 1.170.7 to 1.170.16
- [Release notes](https://github.com/TanStack/router/releases)
- [Changelog](https://github.com/TanStack/router/blob/main/packages/react-router/CHANGELOG.md)
- [Commits](https://github.com/TanStack/router/commits/@tanstack/react-router@1.170.16/packages/react-router)

Updates `@yaireo/tagify` from 4.37.1 to 4.38.0
- [Release notes](https://github.com/yairEO/tagify/releases)
- [Commits](yairEO/tagify@v4.37.1...v4.38.0)

Updates `antd` from 6.4.3 to 6.5.0
- [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.4.3...6.5.0)

Updates `axios` from 1.16.1 to 1.18.1
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.16.1...v1.18.1)

Updates `cron-parser` from 5.5.0 to 5.6.1
- [Release notes](https://github.com/harrisiirak/cron-parser/releases)
- [Commits](harrisiirak/cron-parser@v5.5.0...v5.6.1)

Updates `dayjs` from 1.11.20 to 1.11.21
- [Release notes](https://github.com/iamkun/dayjs/releases)
- [Changelog](https://github.com/iamkun/dayjs/blob/dev/CHANGELOG.md)
- [Commits](iamkun/dayjs@v1.11.20...v1.11.21)

Updates `i18next` from 26.3.1 to 26.3.3
- [Release notes](https://github.com/i18next/i18next/releases)
- [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/i18next@v26.3.1...v26.3.3)

Updates `marked` from 18.0.4 to 18.0.5
- [Release notes](https://github.com/markedjs/marked/releases)
- [Commits](markedjs/marked@v18.0.4...v18.0.5)

Updates `next` from 16.2.6 to 16.2.9
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v16.2.6...v16.2.9)

Updates `puppeteer-core` from 25.0.4 to 25.2.1
- [Release notes](https://github.com/puppeteer/puppeteer/releases)
- [Changelog](https://github.com/puppeteer/puppeteer/blob/main/CHANGELOG.md)
- [Commits](puppeteer/puppeteer@puppeteer-core-v25.0.4...puppeteer-core-v25.2.1)

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

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

Updates `react-draggable` from 4.5.0 to 4.7.0
- [Release notes](https://github.com/react-grid-layout/react-draggable/releases)
- [Changelog](https://github.com/react-grid-layout/react-draggable/blob/master/CHANGELOG.md)
- [Commits](react-grid-layout/react-draggable@v4.5.0...v4.7.0)

Updates `semver` from 7.8.1 to 7.8.5
- [Release notes](https://github.com/npm/node-semver/releases)
- [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md)
- [Commits](npm/node-semver@v7.8.1...v7.8.5)

Updates `uuid` from 14.0.0 to 14.0.1
- [Release notes](https://github.com/uuidjs/uuid/releases)
- [Changelog](https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md)
- [Commits](uuidjs/uuid@v14.0.0...v14.0.1)

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

---
updated-dependencies:
- dependency-name: "@ant-design/icons"
  dependency-version: 6.3.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@codemirror/commands"
  dependency-version: 6.10.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@codemirror/state"
  dependency-version: 6.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@mantine/core"
  dependency-version: 9.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@mantine/dates"
  dependency-version: 9.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@mantine/hooks"
  dependency-version: 9.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@mantine/notifications"
  dependency-version: 9.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@mlc-ai/web-llm"
  dependency-version: 0.2.84
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@tabler/icons-react"
  dependency-version: 3.44.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.101.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tanstack/react-query-devtools"
  dependency-version: 5.101.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tanstack/react-router"
  dependency-version: 1.170.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@yaireo/tagify"
  dependency-version: 4.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: antd
  dependency-version: 6.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: axios
  dependency-version: 1.18.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: cron-parser
  dependency-version: 5.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: dayjs
  dependency-version: 1.11.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: i18next
  dependency-version: 26.3.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: marked
  dependency-version: 18.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: next
  dependency-version: 16.2.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: puppeteer-core
  dependency-version: 25.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react
  dependency-version: 19.2.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: react-dom
  dependency-version: 19.2.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: react-draggable
  dependency-version: 4.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: semver
  dependency-version: 7.8.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: uuid
  dependency-version: 14.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: zustand
  dependency-version: 5.0.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jun 29, 2026
@dependabot dependabot Bot requested a review from lastsunday as a code owner June 29, 2026 18:52
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jun 29, 2026
@github-actions

Copy link
Copy Markdown

Run report for 3d0fc14d

Total time: 7m 19s | Comparison time: 20m 1s | Estimated savings: 12m 41s (63.4% faster)

Action Time Status Info
🟩 SyncWorkspace 11.8ms Passed
⬛️ SetupToolchain(node) 0ms Skipped
⬛️ SetupToolchain(pnpm) 0ms Skipped
⬛️ SetupToolchain(javascript) 0ms Skipped
⬛️ SetupEnvironment(javascript) 0.5ms Skipped
🟩 SyncProject(analysis) 1ms Passed
🟩 SyncProject(server-ui) 2ms Passed
🟩 SyncProject(extension) 1.3ms Passed
🟩 SyncProject(server-ui-e2e) 0.7ms Passed
🟩 InstallDependencies(javascript) 24s Passed
🟩 RunTask(extension:ensure-deps) 4m 21s Passed SLOW
🟩 RunTask(server-ui-e2e:ensure-deps) 4m 21s Passed SLOW
🟩 RunTask(server-ui:ensure-deps) 4m 21s Passed SLOW
🟩 RunTask(analysis:ensure-deps) 4m 21s Passed SLOW
🟩 RunTask(server-ui:test) 4.7s Passed
🟩 RunTask(server-ui:typecheck) 1.8s Passed
🟩 RunTask(analysis:build) 9.6s Passed
🟩 RunTask(server-ui:build) 24.4s Passed
🟩 RunTask(extension:build) 39.5s Passed
🟩 RunTask(extension:build-firefox) 38.5s Passed
And 3 more...
Expanded report
Action Time Status Info
🟩 RunTask(extension:test-unit) 1m 6s Passed
🟩 RunTask(server-ui-e2e:install-playwright) 1m 44s Passed
🟩 RunTask(server-ui-e2e:e2e) 49.8s Passed
Changed files
bc
package.json
pnpm-lock.yaml

@dependabot @github

dependabot Bot commented on behalf of github Jun 30, 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 Jun 30, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/production-dependencies-9243ea0192 branch June 30, 2026 15:14
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants