Skip to content

build(deps): bump the production-dependencies group with 25 updates#254

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

build(deps): bump the production-dependencies group with 25 updates#254
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/npm_and_yarn/production-dependencies-83f5026ee2

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the production-dependencies group with 25 updates:

Package From To
@ant-design/icons 6.2.3 6.2.5
@electric-sql/pglite 0.4.5 0.5.1
@electric-sql/pglite-tools 0.3.5 0.4.1
@mantine/core 9.2.1 9.3.1
@mantine/dates 9.2.1 9.3.1
@mantine/hooks 9.2.1 9.3.1
@mantine/notifications 9.2.1 9.3.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.0
@tanstack/react-query-devtools 5.100.11 5.101.0
@tanstack/react-router 1.170.7 1.170.15
axios 1.16.1 1.17.0
dayjs 1.11.20 1.11.21
marked 18.0.4 18.0.5
next 16.2.6 16.2.9
puppeteer-core 25.0.4 25.1.0
react 19.2.6 19.2.7
react-dom 19.2.6 19.2.7
react-draggable 4.5.0 4.6.0
react-router 7.15.1 7.17.0
react-router-dom 7.15.1 7.17.0
semver 7.8.1 7.8.4
swiper 12.1.4 12.2.0
zustand 5.0.13 5.0.14

Updates @ant-design/icons from 6.2.3 to 6.2.5

Commits

Updates @electric-sql/pglite from 0.4.5 to 0.5.1

Release notes

Sourced from @​electric-sql/pglite's releases.

@​electric-sql/pglite@​0.5.1

Patch Changes

  • 930e2d0: fix PGlite version; redeploy external extensions

@​electric-sql/pglite-prepopulatedfs@​0.5.1

Patch Changes

  • Updated dependencies [930e2d0]
    • @​electric-sql/pglite@​0.5.1

@​electric-sql/pglite@​0.5.0

Minor Changes

  • 93d50aa: Upgrade to Postgres 18.3; move other extensions to their own npm packages;
Changelog

Sourced from @​electric-sql/pglite's changelog.

0.5.1

Patch Changes

  • 930e2d0: fix PGlite version; redeploy external extensions

0.5.0

Minor Changes

  • 93d50aa: Upgrade to Postgres 18.3; move other extensions to their own npm packages;

0.4.6

Patch Changes

  • 2aa4d1a: Allow parsing of nulls in arrays #997
  • 2095d4e: Add ICU support.
  • e937669: Restore process.exitCode
  • 54ed6dc: new API method copyToFs() and new param postgresqlconf
  • 817d073: restore exit code
Commits

Updates @electric-sql/pglite-tools from 0.3.5 to 0.4.1

Release notes

Sourced from @​electric-sql/pglite-tools's releases.

@​electric-sql/pglite-tools@​0.4.1

Patch Changes

  • Updated dependencies [930e2d0]
    • @​electric-sql/pglite@​0.5.1
Changelog

Sourced from @​electric-sql/pglite-tools's changelog.

0.4.1

Patch Changes

  • Updated dependencies [930e2d0]
    • @​electric-sql/pglite@​0.5.1

0.4.0

Minor Changes

  • 93d50aa: Upgrade to Postgres 18.3; move other extensions to their own npm packages;

0.3.6

Patch Changes

  • Updated dependencies [2aa4d1a]
  • Updated dependencies [2095d4e]
  • Updated dependencies [e937669]
  • Updated dependencies [54ed6dc]
  • Updated dependencies [817d073]
    • @​electric-sql/pglite@​0.4.6
Commits

Updates @mantine/core from 9.2.1 to 9.3.1

Release notes

Sourced from @​mantine/core's releases.

9.3.1

What's Changed

  • [@mantine/notifications] Fix stale DOM nodes references not being cleaned up when notifications is closed (#8955)
  • [@mantine/dates] DateInput: Add presets support (#8954)
  • [@mantine/core] Collapse: Fix keepMounted prop not being set correctly (#8949)
  • [@mantine/core] Menu: Add controlled state support for Menu.Sub opened state
  • [@mantine/schedule] Fix incorrect current time indicator position when time does not divide evenly with interval minutes in DayView and WeekView (#8945)
  • [@mantine/core] Popover: Fix context menu not working on iOS touch devices (#8942)
  • [@mantine/core] SegemntedControl: Fix incorrect indicator border-radius calculation (#8904)
  • [@mantine/core] PinInput: Fix incorrect placeholder text centering (#8943)
  • [@mantine/core] Tree: Fix arrow key navigation focusing hidden nodes when keepMounted is set (#8939)
  • [@mantine/core] MaskInput: Fix compatibility issues with uncontrolled use-form (#8947)
  • [@mantine/hooks] use-id: Fix id changing to new value with Activity (#8925)

New Contributors

Full Changelog: mantinedev/mantine@9.3.0...9.3.1

9.3.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.

Pagination responsive layout

Pagination component now supports layout="responsive" prop that uses CSS container queries to switch between page number buttons and a compact "Page X of Y" label based on the available width.

import { Box, Pagination } from '@mantine/core';
function Demo() {
return (
<Box style={{ resize: 'horizontal', overflow: 'auto', minWidth: 200, maxWidth: '100%' }}>
<Pagination total={20} layout="responsive" />
</Box>
);
}

Text textWrap prop

Text and Blockquote components now support textWrap prop that controls the text-wrap CSS property. You can use it to balance line lengths

... (truncated)

Commits
  • 33b8c0f [release] Version: 9.3.1
  • fee644e [refactor] Change Collapse keepMounted to true by default to avoid breaking c...
  • a38cb77 [mantine.dev] Fix incorrect default props Dialog documentation (#8951)
  • d45c333 [@​mantine/core] Collapse: Fix keepMounted prop not being set correctly (#8949)
  • e085a27 [mantine.dev] Update versions list
  • f1dcaa0 [@​mantine/core] Menu: Add controlled state support for Menu.Sub opened state
  • 60631e6 Merge branch 'master' of github.com:mantinedev/mantine
  • a3d895c [@​mantine/core] Popover: Fix context menu not working on iOS touch devices (#...
  • 00796cc [@​mantine/core] SegemntedControl: Fix incorrect indicator border-radius calcu...
  • 46d090f [@​mantine/core] PinInput: Fix incorrect placeholder text centering (#8943)
  • Additional commits viewable in compare view

Updates @mantine/dates from 9.2.1 to 9.3.1

Release notes

Sourced from @​mantine/dates's releases.

9.3.1

What's Changed

  • [@mantine/notifications] Fix stale DOM nodes references not being cleaned up when notifications is closed (#8955)
  • [@mantine/dates] DateInput: Add presets support (#8954)
  • [@mantine/core] Collapse: Fix keepMounted prop not being set correctly (#8949)
  • [@mantine/core] Menu: Add controlled state support for Menu.Sub opened state
  • [@mantine/schedule] Fix incorrect current time indicator position when time does not divide evenly with interval minutes in DayView and WeekView (#8945)
  • [@mantine/core] Popover: Fix context menu not working on iOS touch devices (#8942)
  • [@mantine/core] SegemntedControl: Fix incorrect indicator border-radius calculation (#8904)
  • [@mantine/core] PinInput: Fix incorrect placeholder text centering (#8943)
  • [@mantine/core] Tree: Fix arrow key navigation focusing hidden nodes when keepMounted is set (#8939)
  • [@mantine/core] MaskInput: Fix compatibility issues with uncontrolled use-form (#8947)
  • [@mantine/hooks] use-id: Fix id changing to new value with Activity (#8925)

New Contributors

Full Changelog: mantinedev/mantine@9.3.0...9.3.1

9.3.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.

Pagination responsive layout

Pagination component now supports layout="responsive" prop that uses CSS container queries to switch between page number buttons and a compact "Page X of Y" label based on the available width.

import { Box, Pagination } from '@mantine/core';
function Demo() {
return (
<Box style={{ resize: 'horizontal', overflow: 'auto', minWidth: 200, maxWidth: '100%' }}>
<Pagination total={20} layout="responsive" />
</Box>
);
}

Text textWrap prop

Text and Blockquote components now support textWrap prop that controls the text-wrap CSS property. You can use it to balance line lengths

... (truncated)

Commits
  • 33b8c0f [release] Version: 9.3.1
  • 9bb9829 [@​mantine/dates] DateInput: Add presets support (#8954)
  • bf03b9a [release] Version: 9.3.0
  • 4685c41 [release] Version: 9.2.2
  • cb126a3 [@​mantine/dates] TimePicker: Fix incorrect am/pm switching in some cases in p...
  • See full diff in compare view

Updates @mantine/hooks from 9.2.1 to 9.3.1

Release notes

Sourced from @​mantine/hooks's releases.

9.3.1

What's Changed

  • [@mantine/notifications] Fix stale DOM nodes references not being cleaned up when notifications is closed (#8955)
  • [@mantine/dates] DateInput: Add presets support (#8954)
  • [@mantine/core] Collapse: Fix keepMounted prop not being set correctly (#8949)
  • [@mantine/core] Menu: Add controlled state support for Menu.Sub opened state
  • [@mantine/schedule] Fix incorrect current time indicator position when time does not divide evenly with interval minutes in DayView and WeekView (#8945)
  • [@mantine/core] Popover: Fix context menu not working on iOS touch devices (#8942)
  • [@mantine/core] SegemntedControl: Fix incorrect indicator border-radius calculation (#8904)
  • [@mantine/core] PinInput: Fix incorrect placeholder text centering (#8943)
  • [@mantine/core] Tree: Fix arrow key navigation focusing hidden nodes when keepMounted is set (#8939)
  • [@mantine/core] MaskInput: Fix compatibility issues with uncontrolled use-form (#8947)
  • [@mantine/hooks] use-id: Fix id changing to new value with Activity (#8925)

New Contributors

Full Changelog: mantinedev/mantine@9.3.0...9.3.1

9.3.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.

Pagination responsive layout

Pagination component now supports layout="responsive" prop that uses CSS container queries to switch between page number buttons and a compact "Page X of Y" label based on the available width.

import { Box, Pagination } from '@mantine/core';
function Demo() {
return (
<Box style={{ resize: 'horizontal', overflow: 'auto', minWidth: 200, maxWidth: '100%' }}>
<Pagination total={20} layout="responsive" />
</Box>
);
}

Text textWrap prop

Text and Blockquote components now support textWrap prop that controls the text-wrap CSS property. You can use it to balance line lengths

... (truncated)

Commits
  • 33b8c0f [release] Version: 9.3.1
  • 60631e6 Merge branch 'master' of github.com:mantinedev/mantine
  • a3d895c [@​mantine/core] Popover: Fix context menu not working on iOS touch devices (#...
  • 0b817aa [@​mantine/core] MaskInput: Fix compatibility issues with uncontrolled use-for...
  • 50e767e [@​mantine/hooks] use-id: Fix id changing to new value with Activity (#8925)
  • bf03b9a [release] Version: 9.3.0
  • 342e5ce [refactor] Finalize 9.3 release
  • 9973490 [@​mantine/hooks] use-splitter: Add missing cleanup callbacks
  • f2fb8fa Merge branch master into 9.3
  • 4685c41 [release] Version: 9.2.2
  • Additional commits viewable in compare view

Updates @mantine/notifications from 9.2.1 to 9.3.1

Release notes

Sourced from @​mantine/notifications's releases.

9.3.1

What's Changed

  • [@mantine/notifications] Fix stale DOM nodes references not being cleaned up when notifications is closed (#8955)
  • [@mantine/dates] DateInput: Add presets support (#8954)
  • [@mantine/core] Collapse: Fix keepMounted prop not being set correctly (#8949)
  • [@mantine/core] Menu: Add controlled state support for Menu.Sub opened state
  • [@mantine/schedule] Fix incorrect current time indicator position when time does not divide evenly with interval minutes in DayView and WeekView (#8945)
  • [@mantine/core] Popover: Fix context menu not working on iOS touch devices (#8942)
  • [@mantine/core] SegemntedControl: Fix incorrect indicator border-radius calculation (#8904)
  • [@mantine/core] PinInput: Fix incorrect placeholder text centering (#8943)
  • [@mantine/core] Tree: Fix arrow key navigation focusing hidden nodes when keepMounted is set (#8939)
  • [@mantine/core] MaskInput: Fix compatibility issues with uncontrolled use-form (#8947)
  • [@mantine/hooks] use-id: Fix id changing to new value with Activity (#8925)

New Contributors

Full Changelog: mantinedev/mantine@9.3.0...9.3.1

9.3.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.

Pagination responsive layout

Pagination component now supports layout="responsive" prop that uses CSS container queries to switch between page number buttons and a compact "Page X of Y" label based on the available width.

import { Box, Pagination } from '@mantine/core';
function Demo() {
return (
<Box style={{ resize: 'horizontal', overflow: 'auto', minWidth: 200, maxWidth: '100%' }}>
<Pagination total={20} layout="responsive" />
</Box>
);
}

Text textWrap prop

Text and Blockquote components now support textWrap prop that controls the text-wrap CSS property. You can use it to balance line lengths

... (truncated)

Commits
  • 33b8c0f [release] Version: 9.3.1
  • 9d26915 [@​mantine/notifications] Fix stale DOM nodes references not being cleaned up ...
  • bf03b9a [release] Version: 9.3.0
  • 4685c41 [release] Version: 9.2.2
  • See full diff 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.0

Release notes

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

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

Patch Changes

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

Patch Changes

  • #10857 7cf5923 - fix(react-query-next-experimental): replace deprecated 'isServer' with 'environmentManager.isServer()'

  • Updated dependencies []:

    • @​tanstack/react-query@​5.101.0

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

Patch Changes

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

@​tanstack/react-query@​5.101.0

Patch Changes

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

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

Patch Changes

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

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

Patch Changes

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

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

Patch Changes

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

@​tanstack/react-query@​5.100.14

Patch Changes

... (truncated)

Changelog

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

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

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

Release notes

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

@​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

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

Patch Changes

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

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

Patch Changes

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

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

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.15

Release notes

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

@​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.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

1.170.10

Patch Changes

  • #7505 2f53749 - Preserve primitive values thrown from beforeLoad error handling.

  • Updated dependencies [2f53749]:

    • @​tanstack/router-core@​1.171.8

1.170.9

Patch Changes

... (truncated)

Commits

Updates axios from 1.16.1 to 1.17.0

Release notes

Sourced from axios's releases.

v1.17.0 — June 1, 2026

This release adds Node HTTP zstd decompression, hardens config and release workflows, and fixes authentication, header, proxy, and type-handling regressions.

🔒 Security Fixes

  • Config Hardening: Guarded socketPath, params, and paramsSerializer reads with own-property checks to prevent inherited prototype values from affecting request behavior, including SSRF-sensitive paths. (#10901, #10922)
  • Release Publishing: Switched the publish workflow to npm staged publishing for safer, auditable package releases with provenance. (#10926)

🚀 New Features

  • HTTP Compression: Added Node HTTP adapter support for zstd response decompression, with transitional.advertiseZstdAcceptEncoding controlling whether zstd is advertised in Accept-Encoding. (#6792, #10920)

🐛 Bug Fixes

  • Authentication Handling: Restored Basic auth on same-origin Node redirects while continuing to strip credentials cross-origin, and aligned the fetch adapter with HTTP adapter behavior for URL-embedded Basic auth. (#10929, #10896)
  • Proxy TLS: Preserved user httpsAgent TLS options when tunneling HTTPS requests through HTTP CONNECT proxies. (#10957)
  • React Native FormData: Cleared default Content-Type for React Native FormData so multipart boundaries can be generated correctly. (#10898)
  • Headers: Silently skipped empty or whitespace-only header names instead of throwing, matching parsed-header behavior and avoiding React Native response crashes. (#10875)
  • Request Data Merging: Preserved enumerable symbol keys when cloning plain request data through axios merge logic. (#10812)
  • Bundler Compatibility: Converted resolveConfig from an arrow default export to a named function export to avoid webpack and Babel transform interop failures. (#10891)
  • Types: Corrected AxiosHeaders.toJSON() return types and updated CommonJS isCancel typings to narrow to CanceledError<T>. (#10956, #10952)
  • Build Tooling: Avoided emitting a null Authorization header from the GitHub build helper when GITHUB_TOKEN is unset. (#10931)

🔧 Maintenance & Chores

  • HTTP/2 Internals: Extracted Http2Sessions into its own helper module and added direct unit coverage for session pooling, timeout, and cleanup behavior. (#10861)
  • Package Publishing: Reduced published package size by switching to a files allowlist and dropping unneeded unminified bundle source maps. (#10939)
  • CI and Release Automation: Added bundle-size reporting, moved reports to the job summary, fixed bundle-size comparison coverage, added Node 26 to the matrix, pinned npm for staged publishing, and prepared the 1.17.0 release. (#10907, #10911, #10916, #10927, #10935, #10983)
  • Developer Workflow: Added a dev container and iterated on OpenSpec workflow files before removing them from the release branch. (#10925, #10914, Description has been truncated

Bumps the production-dependencies group with 25 updates:

| Package | From | To |
| --- | --- | --- |
| [@ant-design/icons](https://github.com/ant-design/ant-design-icons) | `6.2.3` | `6.2.5` |
| [@electric-sql/pglite](https://github.com/electric-sql/pglite/tree/HEAD/packages/pglite) | `0.4.5` | `0.5.1` |
| [@electric-sql/pglite-tools](https://github.com/electric-sql/pglite/tree/HEAD/packages/pglite-tools) | `0.3.5` | `0.4.1` |
| [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core) | `9.2.1` | `9.3.1` |
| [@mantine/dates](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dates) | `9.2.1` | `9.3.1` |
| [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) | `9.2.1` | `9.3.1` |
| [@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications) | `9.2.1` | `9.3.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.0` |
| [@tanstack/react-query-devtools](https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools) | `5.100.11` | `5.101.0` |
| [@tanstack/react-router](https://github.com/TanStack/router/tree/HEAD/packages/react-router) | `1.170.7` | `1.170.15` |
| [axios](https://github.com/axios/axios) | `1.16.1` | `1.17.0` |
| [dayjs](https://github.com/iamkun/dayjs) | `1.11.20` | `1.11.21` |
| [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.1.0` |
| [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.6.0` |
| [react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router) | `7.15.1` | `7.17.0` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `7.15.1` | `7.17.0` |
| [semver](https://github.com/npm/node-semver) | `7.8.1` | `7.8.4` |
| [swiper](https://github.com/nolimits4web/Swiper) | `12.1.4` | `12.2.0` |
| [zustand](https://github.com/pmndrs/zustand) | `5.0.13` | `5.0.14` |


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

Updates `@electric-sql/pglite` from 0.4.5 to 0.5.1
- [Release notes](https://github.com/electric-sql/pglite/releases)
- [Changelog](https://github.com/electric-sql/pglite/blob/main/packages/pglite/CHANGELOG.md)
- [Commits](https://github.com/electric-sql/pglite/commits/@electric-sql/pglite@0.5.1/packages/pglite)

Updates `@electric-sql/pglite-tools` from 0.3.5 to 0.4.1
- [Release notes](https://github.com/electric-sql/pglite/releases)
- [Changelog](https://github.com/electric-sql/pglite/blob/main/packages/pglite-tools/CHANGELOG.md)
- [Commits](https://github.com/electric-sql/pglite/commits/@electric-sql/pglite-tools@0.4.1/packages/pglite-tools)

Updates `@mantine/core` from 9.2.1 to 9.3.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.3.1/packages/@mantine/core)

Updates `@mantine/dates` from 9.2.1 to 9.3.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.3.1/packages/@mantine/dates)

Updates `@mantine/hooks` from 9.2.1 to 9.3.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.3.1/packages/@mantine/hooks)

Updates `@mantine/notifications` from 9.2.1 to 9.3.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.3.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.0
- [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.0/packages/react-query)

Updates `@tanstack/react-query-devtools` from 5.100.11 to 5.101.0
- [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.0/packages/react-query-devtools)

Updates `@tanstack/react-router` from 1.170.7 to 1.170.15
- [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.15/packages/react-router)

Updates `axios` from 1.16.1 to 1.17.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.1...v1.17.0)

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 `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.1.0
- [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.1.0)

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.6.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.6.0)

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

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

Updates `semver` from 7.8.1 to 7.8.4
- [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.4)

Updates `swiper` from 12.1.4 to 12.2.0
- [Release notes](https://github.com/nolimits4web/Swiper/releases)
- [Changelog](https://github.com/nolimits4web/swiper/blob/master/CHANGELOG.md)
- [Commits](nolimits4web/swiper@v12.1.4...v12.2.0)

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.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@electric-sql/pglite"
  dependency-version: 0.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@electric-sql/pglite-tools"
  dependency-version: 0.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@mantine/core"
  dependency-version: 9.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@mantine/dates"
  dependency-version: 9.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@mantine/hooks"
  dependency-version: 9.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@mantine/notifications"
  dependency-version: 9.3.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.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tanstack/react-query-devtools"
  dependency-version: 5.101.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tanstack/react-router"
  dependency-version: 1.170.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: axios
  dependency-version: 1.17.0
  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: 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.1.0
  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.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-router
  dependency-version: 7.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-router-dom
  dependency-version: 7.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: semver
  dependency-version: 7.8.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: swiper
  dependency-version: 12.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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 10, 2026
@dependabot dependabot Bot requested a review from lastsunday as a code owner June 10, 2026 09:44
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jun 10, 2026
@github-actions

Copy link
Copy Markdown

Run report for 01540c43

Total time: 27.3s | Comparison time: 26.8s | Estimated loss: 498.5ms (1.8% slower)

Action Time Status Info
🟩 SyncWorkspace 10.3ms Passed
⬛️ SetupToolchain(node) 0ms Skipped
⬛️ SetupToolchain(pnpm) 0ms Skipped
⬛️ SetupToolchain(javascript) 0ms Skipped
⬛️ SetupEnvironment(javascript) 0.3ms Skipped
🟩 InstallDependencies(javascript) 24s Passed
🟩 RunTask(extension:ensure-deps) 3.2s Passed
Changed files
bc
package.json
pnpm-lock.yaml

@lastsunday lastsunday closed this Jun 11, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jun 11, 2026

Copy link
Copy Markdown
Contributor Author

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/production-dependencies-83f5026ee2 branch June 11, 2026 15:09
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.

1 participant