Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 31, 2025

Bumps the core-ui-package-updates group with 42 updates in the /airflow-core/src/airflow/ui directory:

Package From To
@chakra-ui/react 3.20.0 3.30.0
@tanstack/react-virtual 3.13.12 3.13.13
@uiw/codemirror-themes-all 4.25.3 4.25.4
@uiw/react-codemirror 4.25.3 4.25.4
anser 2.3.3 2.3.5
i18next 25.7.1 25.7.3
node-sql-parser 5.3.10 5.3.13
react 19.2.1 19.2.3
react-chartjs-2 5.3.0 5.3.1
react-dom 19.2.1 19.2.3
react-hook-form 7.56.2 7.69.0
react-hotkeys-hook 4.6.1 5.2.1
react-i18next 15.5.1 16.5.0
react-markdown 9.1.0 10.1.0
react-resizable-panels 3.0.6 4.0.15
react-router-dom 6.30.0 7.11.0
react-syntax-highlighter 15.6.1 16.1.0
use-debounce 10.0.4 10.0.6
yaml 2.8.0 2.8.2
zustand 5.0.4 5.0.9
@7nohe/openapi-react-query-codegen 1.6.2 2.0.0
@eslint/compat 1.2.9 2.0.0
@eslint/js 9.39.1 9.39.2
@stylistic/eslint-plugin 2.13.0 5.6.1
@testing-library/react 16.3.0 16.3.1
@trivago/prettier-plugin-sort-imports 4.3.0 6.0.0
@types/node 24.10.3 25.0.3
@typescript-eslint/eslint-plugin 8.49.0 8.50.1
@typescript-eslint/parser 8.49.0 8.50.1
@typescript-eslint/utils 8.49.0 8.50.1
@vitest/coverage-v8 3.2.4 4.0.16
eslint 9.39.1 9.39.2
eslint-plugin-perfectionist 4.15.1 5.1.0
eslint-plugin-react-hooks 5.2.0 7.0.1
eslint-plugin-react-refresh 0.4.24 0.4.26
eslint-plugin-unicorn 55.0.0 62.0.0
globals 15.15.0 16.5.0
jsonc-eslint-parser 2.4.1 2.4.2
msw 2.12.4 2.12.6
typescript-eslint 8.48.1 8.50.1
vite 7.2.6 7.3.0
vitest 3.2.4 4.0.16

Updates @chakra-ui/react from 3.20.0 to 3.30.0

Release notes

Sourced from @​chakra-ui/react's releases.

@​chakra-ui/react@​3.30.0

Minor Changes

  • #10425 0168a04 Thanks @​Adebesin-Cell! - - Splitter [NEW]: Introduce new resizable splitter component

    <Splitter.Root panels={[{ id: "a" }, { id: "b" }]}>
      <Splitter.Panel id="a">Panel A</Splitter.Panel>
      <Splitter.ResizeTrigger id="a:b" />
      <Splitter.Panel id="b">Panel B</Splitter.Panel>
    </Splitter.Root>
  • 7b9aa97 Thanks @​segunadebayo! - ### Added

    • Carousel: Added autoSize prop for variable width/height slides

    Changed

    • useListCollection: initialItems now accepts readonly arrays
    • Types: Exported InteractOutsideEvent, FocusOutsideEvent, PointerDownOutsideEvent types

    Fixed

    • Carousel: Fixed dragging after tab switch/scroll and mouse wheel scroll with allowMouseDrag
    • Combobox:
      • Fixed onHighlightChange not firing when filtered to empty;
      • Fixed focus stealing in controlled mode
      • Removed problematic aria-hidden behavior
    • File Upload: Fixed non-interactive children in dropzone not opening file picker
    • Radio Group: Fixed inconsistent data-focus-visible/data-focus attributes; fixed indicator showing before rect resolved (with Tabs)
    • Tabs: Fixed indicator showing before rect resolved (with Radio Group); fixed position not updating when inactive tabs resize
  • 503e11a Thanks @​segunadebayo! - ### Added

    • Semantic Tokens: Add new border semantic token to all color palettes (gray.300/gray.700 for gray, color.500/color.400 for colored palettes) to improve outline component appearance

    Changed

... (truncated)

Changelog

Sourced from @​chakra-ui/react's changelog.

3.30.0

Minor Changes

  • #10425 0168a04 Thanks @​Adebesin-Cell! - - Splitter [NEW]: Introduce new resizable splitter component

    <Splitter.Root panels={[{ id: "a" }, { id: "b" }]}>
      <Splitter.Panel id="a">Panel A</Splitter.Panel>
      <Splitter.ResizeTrigger id="a:b" />
      <Splitter.Panel id="b">Panel B</Splitter.Panel>
    </Splitter.Root>
  • 7b9aa97 Thanks @​segunadebayo! - ### Added

    • Carousel: Added autoSize prop for variable width/height slides

    Changed

    • useListCollection: initialItems now accepts readonly arrays
    • Types: Exported InteractOutsideEvent, FocusOutsideEvent, PointerDownOutsideEvent types

    Fixed

    • Carousel: Fixed dragging after tab switch/scroll and mouse wheel scroll with allowMouseDrag
    • Combobox:
      • Fixed onHighlightChange not firing when filtered to empty;
      • Fixed focus stealing in controlled mode
      • Removed problematic aria-hidden behavior
    • File Upload: Fixed non-interactive children in dropzone not opening file picker
    • Radio Group: Fixed inconsistent data-focus-visible/data-focus attributes; fixed indicator showing before rect resolved (with Tabs)
    • Tabs: Fixed indicator showing before rect resolved (with Radio Group); fixed position not updating when inactive tabs resize
  • 503e11a Thanks @​segunadebayo! - ### Added

    • Semantic Tokens: Add new border semantic token to all color palettes (gray.300/gray.700 for gray, color.500/color.400 for colored palettes) to improve outline component appearance

    Changed

    • Button, Badge, Tag, Checkbox: Update outline variants to use colorPalette.border instead of colorPalette.muted or global border token for better appearance, especially for non-gray color palettes.

... (truncated)

Commits

Updates @tanstack/react-virtual from 3.13.12 to 3.13.13

Release notes

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

@​tanstack/react-virtual@​3.13.13

Patch Changes

  • Fix: Notify framework when count changes to update getTotalSize() (#1085)

    Fixed an issue where getTotalSize() would return stale values when the count option changed (e.g., during filtering or search operations). The virtualizer now automatically notifies the framework when measurement-affecting options change, ensuring the UI updates correctly without requiring manual useMemo workarounds.

    Before: When filtering items, the list container would maintain its previous height, causing excessive blank space (when count decreased) or inaccessible items (when count increased).

    After: Height updates automatically when count changes, providing the correct user experience.

    This fix applies to all framework adapters and has minimal performance impact (< 0.1ms per change).

  • Updated dependencies [2542c5a, 96e32a6]:

    • @​tanstack/virtual-core@​3.13.13
Changelog

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

3.13.13

Patch Changes

  • Fix: Notify framework when count changes to update getTotalSize() (#1085)

    Fixed an issue where getTotalSize() would return stale values when the count option changed (e.g., during filtering or search operations). The virtualizer now automatically notifies the framework when measurement-affecting options change, ensuring the UI updates correctly without requiring manual useMemo workarounds.

    Before: When filtering items, the list container would maintain its previous height, causing excessive blank space (when count decreased) or inaccessible items (when count increased).

    After: Height updates automatically when count changes, providing the correct user experience.

    This fix applies to all framework adapters and has minimal performance impact (< 0.1ms per change).

  • Updated dependencies [2542c5a, 96e32a6]:

    • @​tanstack/virtual-core@​3.13.13
Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​tanstack/react-virtual since your current version.


Updates @uiw/codemirror-themes-all from 4.25.3 to 4.25.4

Release notes

Sourced from @​uiw/codemirror-themes-all's releases.

v4.25.4

Buy me a coffee

Documentation v4.25.4: https://raw.githack.com/uiwjs/react-codemirror/c6e2bc9/index.html
Comparing Changes: uiwjs/react-codemirror@v4.25.3...v4.25.4

npm i @uiw/react-codemirror@4.25.4
Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​uiw/codemirror-themes-all since your current version.


Updates @uiw/react-codemirror from 4.25.3 to 4.25.4

Release notes

Sourced from @​uiw/react-codemirror's releases.

v4.25.4

Buy me a coffee

Documentation v4.25.4: https://raw.githack.com/uiwjs/react-codemirror/c6e2bc9/index.html
Comparing Changes: uiwjs/react-codemirror@v4.25.3...v4.25.4

npm i @uiw/react-codemirror@4.25.4
Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​uiw/react-codemirror since your current version.


Updates anser from 2.3.3 to 2.3.5

Release notes

Sourced from anser's releases.

2.3.5

Clean up files

2.3.4

Fix grayscale palette colors returning undefined /cc #83 -- thanks @​skipi 🍰

Commits
  • d300b23 Updated docs
  • 81e358e Cleanup files
  • d0af8e6 ⬆️ 2.3.4 🎉
  • 296d7c0 Updated docs
  • 5c90045 Clean up files
  • 626f338 Merge branch 'grayscale-palette-fix' of github.com:skipi/anser into new-version
  • 65da185 Merge branch 'new-version' of github.com:IonicaBizau/anser into new-version
  • 4bbed63 ⬆️ 2.3.4 🎉
  • 6e629b7 Fix grayscale palette colors returning undefined
  • f94aaab ⬆️ 2.3.4 🎉
  • Additional commits viewable in compare view

Updates i18next from 25.7.1 to 25.7.3

Release notes

Sourced from i18next's releases.

v25.7.3

v25.7.2

  • fix: Invalid overwrite of default value for overloadTranslationOptionHandler 2374.
Changelog

Sourced from i18next's changelog.

25.7.3

25.7.2

  • fix: Invalid overwrite of default value for overloadTranslationOptionHandler 2374.
Commits

Updates node-sql-parser from 5.3.10 to 5.3.13

Release notes

Sourced from node-sql-parser's releases.

5.3.13

What's Changed

New Contributors

Full Changelog: taozhi8833998/node-sql-parser@5.3.12...5.3.13

5.3.12

What's Changed

Full Changelog: taozhi8833998/node-sql-parser@5.3.11...5.3.12

5.3.11

What's Changed

... (truncated)

Commits
  • b2f93b8 refactor: upgrade version
  • 4daa83b Merge pull request #2590 from taozhi8833998/feat-money-type-pg
  • 8959ade feat: add money data type in pg
  • 4dbe79b Merge pull request #2581 from taozhi8833998/refactor-type-definition
  • d13a63c refactor: update type definition
  • fb9c295 Merge pull request #2580 from taozhi8833998/fix-build-error
  • 29e53ac fix: build error when missing insert_value_clause types in pg
  • db7c5f1 Merge pull request #2576 from taozhi8833998/fix-create-temp-table-pg
  • 7c4092a fix: add create temp table stmt in pg
  • 49e0f4b Merge pull request #2575 from taozhi8833998/fix-insert-into-union-all
  • Additional commits viewable in compare view

Updates react from 19.2.1 to 19.2.3

Release notes

Sourced from react's releases.

19.2.3 (December 11th, 2025)

React Server Components

19.2.2 (December 11th, 2025)

React Server Components

Commits

Updates react-chartjs-2 from 5.3.0 to 5.3.1

Release notes

Sourced from react-chartjs-2's releases.

v5.3.1

Bug Fixes

Changelog

Sourced from react-chartjs-2's changelog.

5.3.1 (2025-10-27)

Bug Fixes

Commits

Updates react-dom from 19.2.1 to 19.2.3

Release notes

Sourced from react-dom's releases.

19.2.3 (December 11th, 2025)

React Server Components

19.2.2 (December 11th, 2025)

React Server Components

Commits

Updates react-hook-form from 7.56.2 to 7.69.0

Release notes

Sourced from react-hook-form's releases.

🎄 Version 7.69.0

📏 feat: align API with useWatch (#13192) 🤦🏻‍♂️ chore: update @​deprecated names prop on (#13198) 🏥 chore: safely call function methods on elements (#13190) 🪖 chore: cve-2025-67779 (#13196) 🪖 chore: cve-2025-55184 & cve-2025-55183 (#13194) 🪖 chore: CVE-2025-55182 Critical RCE vulnerabilty (#13175) 🔬 test: add regression tests for #12837 and #13136 (#13187) 🐞 fix(reset): preserve isValid state when keepIsValid option is used (#13173) 🐞 fix: ensure each createFormControl.subscribe subscription listens only to the changes it subscribes to (#12968) 🐞 fix(validation): batch isValidating state updates with validation result (#13181) 🐞 fix(createFormControl): resolve race condition between setError and setFocus (#13138) (#13169) 🧿 fix control prop type (#13189) 🔔 chore: clean cloneObject logic (#13179)

thanks to @​PierreCrb, @​a28689604, @​AnuragM7666, @​ap0nia, @​dusan233 & @​hlongc

Version 7.68.0

🎧 feat: <FormStateSubscribe /> component (#13142)

import { useForm, FormStateSubscribe } from 'react-hook-form';
const App = () => {
const { register, control } = useForm();
return (
<div>
<form>
<input {...register('foo')} />
<input {...register('bar')} />
</form>
{/* re-render only when formState of foo changes */}
<FormStateSubscribe
control={control}
name={"foo"}
render={({errors}) => <span>{errors.foo?.message}</span>}
/>
</div>
);
};

🐞 fix: clear validation errors synchronously in reset() to fix Next.js 16 Server Actions issue (#13139) Revert "✨ fix(types): allow undefined value with async defaultValues in Contr…" (#13171)

thanks to @​xiangnuans, @​abnud11, @​ntatoud & @​ap0nia

Version 7.67.0

... (truncated)

Commits

Updates react-hotkeys-hook from 4.6.1 to 5.2.1

Release notes

Sourced from react-hotkeys-hook's releases.

v5.2.1

  • fmt 73ea06f
  • remove unused script 160f872
  • fix dependencies 4c89bcb
  • Updated CHANGELOG.md ce7f732
  • Add sideEffects field to package.json f464e05

Full Changelog: JohannesKlauss/react-hotkeys-hook@v5.2.0...v5.2.1

v5.2.0

JohannesKlauss/react-hotkeys-hook@v5.1.0...v5.2.0

What's Changed

New Contributors

Full Changelog: JohannesKlauss/react-hotkeys-hook@v5.1.0...v5.2.0

v5.1.0

What's Changed

New Contributors

Full Changelog: JohannesKlauss/react-hotkeys-hook@v5.0.2...v5.1.0

v5.0.0

🎉 Version 5!

... (truncated)

Commits

Updates react-i18next from 15.5.1 to 16.5.0

Changelog

Sourced from react-i18next's changelog.

16.5.0

  • Add configuration option transDefaultProps to set default p...

    Description has been truncated

…ates

Bumps the core-ui-package-updates group with 42 updates in the /airflow-core/src/airflow/ui directory:

| Package | From | To |
| --- | --- | --- |
| [@chakra-ui/react](https://github.com/chakra-ui/chakra-ui/tree/HEAD/packages/react) | `3.20.0` | `3.30.0` |
| [@tanstack/react-virtual](https://github.com/TanStack/virtual/tree/HEAD/packages/react-virtual) | `3.13.12` | `3.13.13` |
| [@uiw/codemirror-themes-all](https://github.com/uiwjs/react-codemirror) | `4.25.3` | `4.25.4` |
| [@uiw/react-codemirror](https://github.com/uiwjs/react-codemirror) | `4.25.3` | `4.25.4` |
| [anser](https://github.com/IonicaBizau/anser) | `2.3.3` | `2.3.5` |
| [i18next](https://github.com/i18next/i18next) | `25.7.1` | `25.7.3` |
| [node-sql-parser](https://github.com/taozhi8833998/node-sql-parser) | `5.3.10` | `5.3.13` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.1` | `19.2.3` |
| [react-chartjs-2](https://github.com/reactchartjs/react-chartjs-2) | `5.3.0` | `5.3.1` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.1` | `19.2.3` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.56.2` | `7.69.0` |
| [react-hotkeys-hook](https://github.com/JohannesKlauss/react-keymap-hook) | `4.6.1` | `5.2.1` |
| [react-i18next](https://github.com/i18next/react-i18next) | `15.5.1` | `16.5.0` |
| [react-markdown](https://github.com/remarkjs/react-markdown) | `9.1.0` | `10.1.0` |
| [react-resizable-panels](https://github.com/bvaughn/react-resizable-panels) | `3.0.6` | `4.0.15` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `6.30.0` | `7.11.0` |
| [react-syntax-highlighter](https://github.com/react-syntax-highlighter/react-syntax-highlighter) | `15.6.1` | `16.1.0` |
| [use-debounce](https://github.com/xnimorz/use-debounce) | `10.0.4` | `10.0.6` |
| [yaml](https://github.com/eemeli/yaml) | `2.8.0` | `2.8.2` |
| [zustand](https://github.com/pmndrs/zustand) | `5.0.4` | `5.0.9` |
| [@7nohe/openapi-react-query-codegen](https://github.com/7nohe/openapi-react-query-codegen) | `1.6.2` | `2.0.0` |
| [@eslint/compat](https://github.com/eslint/rewrite/tree/HEAD/packages/compat) | `1.2.9` | `2.0.0` |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.39.1` | `9.39.2` |
| [@stylistic/eslint-plugin](https://github.com/eslint-stylistic/eslint-stylistic/tree/HEAD/packages/eslint-plugin) | `2.13.0` | `5.6.1` |
| [@testing-library/react](https://github.com/testing-library/react-testing-library) | `16.3.0` | `16.3.1` |
| [@trivago/prettier-plugin-sort-imports](https://github.com/trivago/prettier-plugin-sort-imports) | `4.3.0` | `6.0.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.10.3` | `25.0.3` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.49.0` | `8.50.1` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.49.0` | `8.50.1` |
| [@typescript-eslint/utils](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/utils) | `8.49.0` | `8.50.1` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `3.2.4` | `4.0.16` |
| [eslint](https://github.com/eslint/eslint) | `9.39.1` | `9.39.2` |
| [eslint-plugin-perfectionist](https://github.com/azat-io/eslint-plugin-perfectionist) | `4.15.1` | `5.1.0` |
| [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks) | `5.2.0` | `7.0.1` |
| [eslint-plugin-react-refresh](https://github.com/ArnaudBarre/eslint-plugin-react-refresh) | `0.4.24` | `0.4.26` |
| [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn) | `55.0.0` | `62.0.0` |
| [globals](https://github.com/sindresorhus/globals) | `15.15.0` | `16.5.0` |
| [jsonc-eslint-parser](https://github.com/ota-meshi/jsonc-eslint-parser) | `2.4.1` | `2.4.2` |
| [msw](https://github.com/mswjs/msw) | `2.12.4` | `2.12.6` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.48.1` | `8.50.1` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `7.2.6` | `7.3.0` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `3.2.4` | `4.0.16` |



Updates `@chakra-ui/react` from 3.20.0 to 3.30.0
- [Release notes](https://github.com/chakra-ui/chakra-ui/releases)
- [Changelog](https://github.com/chakra-ui/chakra-ui/blob/main/packages/react/CHANGELOG.md)
- [Commits](https://github.com/chakra-ui/chakra-ui/commits/@chakra-ui/react@3.30.0/packages/react)

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

Updates `@uiw/codemirror-themes-all` from 4.25.3 to 4.25.4
- [Release notes](https://github.com/uiwjs/react-codemirror/releases)
- [Commits](uiwjs/react-codemirror@v4.25.3...v4.25.4)

Updates `@uiw/react-codemirror` from 4.25.3 to 4.25.4
- [Release notes](https://github.com/uiwjs/react-codemirror/releases)
- [Commits](uiwjs/react-codemirror@v4.25.3...v4.25.4)

Updates `anser` from 2.3.3 to 2.3.5
- [Release notes](https://github.com/IonicaBizau/anser/releases)
- [Commits](IonicaBizau/anser@2.3.3...2.3.5)

Updates `i18next` from 25.7.1 to 25.7.3
- [Release notes](https://github.com/i18next/i18next/releases)
- [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/i18next@v25.7.1...v25.7.3)

Updates `node-sql-parser` from 5.3.10 to 5.3.13
- [Release notes](https://github.com/taozhi8833998/node-sql-parser/releases)
- [Commits](taozhi8833998/node-sql-parser@5.3.10...5.3.13)

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

Updates `react-chartjs-2` from 5.3.0 to 5.3.1
- [Release notes](https://github.com/reactchartjs/react-chartjs-2/releases)
- [Changelog](https://github.com/reactchartjs/react-chartjs-2/blob/master/CHANGELOG.md)
- [Commits](reactchartjs/react-chartjs-2@v5.3.0...v5.3.1)

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

Updates `react-hook-form` from 7.56.2 to 7.69.0
- [Release notes](https://github.com/react-hook-form/react-hook-form/releases)
- [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
- [Commits](react-hook-form/react-hook-form@v7.56.2...v7.69.0)

Updates `react-hotkeys-hook` from 4.6.1 to 5.2.1
- [Release notes](https://github.com/JohannesKlauss/react-keymap-hook/releases)
- [Changelog](https://github.com/JohannesKlauss/react-hotkeys-hook/blob/main/CHANGELOG.md)
- [Commits](JohannesKlauss/react-hotkeys-hook@v4.6.1...v5.2.1)

Updates `react-i18next` from 15.5.1 to 16.5.0
- [Changelog](https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/react-i18next@v15.5.1...v16.5.0)

Updates `react-markdown` from 9.1.0 to 10.1.0
- [Release notes](https://github.com/remarkjs/react-markdown/releases)
- [Changelog](https://github.com/remarkjs/react-markdown/blob/main/changelog.md)
- [Commits](remarkjs/react-markdown@9.1.0...10.1.0)

Updates `react-resizable-panels` from 3.0.6 to 4.0.15
- [Release notes](https://github.com/bvaughn/react-resizable-panels/releases)
- [Changelog](https://github.com/bvaughn/react-resizable-panels/blob/main/CHANGELOG.md)
- [Commits](bvaughn/react-resizable-panels@3.0.6...4.0.15)

Updates `react-router-dom` from 6.30.0 to 7.11.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.11.0/packages/react-router-dom)

Updates `react-syntax-highlighter` from 15.6.1 to 16.1.0
- [Release notes](https://github.com/react-syntax-highlighter/react-syntax-highlighter/releases)
- [Changelog](https://github.com/react-syntax-highlighter/react-syntax-highlighter/blob/master/CHANGELOG.MD)
- [Commits](react-syntax-highlighter/react-syntax-highlighter@v15.6.1...v16.1.0)

Updates `use-debounce` from 10.0.4 to 10.0.6
- [Release notes](https://github.com/xnimorz/use-debounce/releases)
- [Changelog](https://github.com/xnimorz/use-debounce/blob/master/CHANGELOG.md)
- [Commits](xnimorz/use-debounce@10.0.4...10.0.6)

Updates `yaml` from 2.8.0 to 2.8.2
- [Release notes](https://github.com/eemeli/yaml/releases)
- [Commits](eemeli/yaml@v2.8.0...v2.8.2)

Updates `zustand` from 5.0.4 to 5.0.9
- [Release notes](https://github.com/pmndrs/zustand/releases)
- [Commits](pmndrs/zustand@v5.0.4...v5.0.9)

Updates `@7nohe/openapi-react-query-codegen` from 1.6.2 to 2.0.0
- [Release notes](https://github.com/7nohe/openapi-react-query-codegen/releases)
- [Commits](7nohe/openapi-react-query-codegen@v1.6.2...v2.0.0)

Updates `@eslint/compat` from 1.2.9 to 2.0.0
- [Release notes](https://github.com/eslint/rewrite/releases)
- [Changelog](https://github.com/eslint/rewrite/blob/main/packages/compat/CHANGELOG.md)
- [Commits](https://github.com/eslint/rewrite/commits/compat-v2.0.0/packages/compat)

Updates `@eslint/js` from 9.39.1 to 9.39.2
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](https://github.com/eslint/eslint/commits/v9.39.2/packages/js)

Updates `@stylistic/eslint-plugin` from 2.13.0 to 5.6.1
- [Release notes](https://github.com/eslint-stylistic/eslint-stylistic/releases)
- [Changelog](https://github.com/eslint-stylistic/eslint-stylistic/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint-stylistic/eslint-stylistic/commits/v5.6.1/packages/eslint-plugin)

Updates `@testing-library/react` from 16.3.0 to 16.3.1
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/react-testing-library@v16.3.0...v16.3.1)

Updates `@trivago/prettier-plugin-sort-imports` from 4.3.0 to 6.0.0
- [Release notes](https://github.com/trivago/prettier-plugin-sort-imports/releases)
- [Changelog](https://github.com/trivago/prettier-plugin-sort-imports/blob/main/CHANGELOG.md)
- [Commits](trivago/prettier-plugin-sort-imports@v4.3.0...v6.0.0)

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

Updates `@typescript-eslint/eslint-plugin` from 8.49.0 to 8.50.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.50.1/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.49.0 to 8.50.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.50.1/packages/parser)

Updates `@typescript-eslint/utils` from 8.49.0 to 8.50.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/utils/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.50.1/packages/utils)

Updates `@vitest/coverage-v8` from 3.2.4 to 4.0.16
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.16/packages/coverage-v8)

Updates `eslint` from 9.39.1 to 9.39.2
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.39.1...v9.39.2)

Updates `eslint-plugin-perfectionist` from 4.15.1 to 5.1.0
- [Release notes](https://github.com/azat-io/eslint-plugin-perfectionist/releases)
- [Changelog](https://github.com/azat-io/eslint-plugin-perfectionist/blob/main/changelog.md)
- [Commits](azat-io/eslint-plugin-perfectionist@v4.15.1...v5.1.0)

Updates `eslint-plugin-react-hooks` from 5.2.0 to 7.0.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/packages/eslint-plugin-react-hooks/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/HEAD/packages/eslint-plugin-react-hooks)

Updates `eslint-plugin-react-refresh` from 0.4.24 to 0.4.26
- [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.4.24...v0.4.26)

Updates `eslint-plugin-unicorn` from 55.0.0 to 62.0.0
- [Release notes](https://github.com/sindresorhus/eslint-plugin-unicorn/releases)
- [Commits](sindresorhus/eslint-plugin-unicorn@v55.0.0...v62.0.0)

Updates `globals` from 15.15.0 to 16.5.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v15.15.0...v16.5.0)

Updates `jsonc-eslint-parser` from 2.4.1 to 2.4.2
- [Release notes](https://github.com/ota-meshi/jsonc-eslint-parser/releases)
- [Changelog](https://github.com/ota-meshi/jsonc-eslint-parser/blob/master/CHANGELOG.md)
- [Commits](ota-meshi/jsonc-eslint-parser@v2.4.1...v2.4.2)

Updates `msw` from 2.12.4 to 2.12.6
- [Release notes](https://github.com/mswjs/msw/releases)
- [Changelog](https://github.com/mswjs/msw/blob/main/CHANGELOG.md)
- [Commits](mswjs/msw@v2.12.4...v2.12.6)

Updates `typescript-eslint` from 8.48.1 to 8.50.1
- [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.50.1/packages/typescript-eslint)

Updates `vite` from 7.2.6 to 7.3.0
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v7.3.0/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v7.3.0/packages/vite)

Updates `vitest` from 3.2.4 to 4.0.16
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.16/packages/vitest)

---
updated-dependencies:
- dependency-name: "@chakra-ui/react"
  dependency-version: 3.30.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: core-ui-package-updates
- dependency-name: "@tanstack/react-virtual"
  dependency-version: 3.13.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: core-ui-package-updates
- dependency-name: "@uiw/codemirror-themes-all"
  dependency-version: 4.25.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: core-ui-package-updates
- dependency-name: "@uiw/react-codemirror"
  dependency-version: 4.25.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: core-ui-package-updates
- dependency-name: anser
  dependency-version: 2.3.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: core-ui-package-updates
- dependency-name: i18next
  dependency-version: 25.7.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: core-ui-package-updates
- dependency-name: node-sql-parser
  dependency-version: 5.3.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: core-ui-package-updates
- dependency-name: react
  dependency-version: 19.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: core-ui-package-updates
- dependency-name: react-chartjs-2
  dependency-version: 5.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: core-ui-package-updates
- dependency-name: react-dom
  dependency-version: 19.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: core-ui-package-updates
- dependency-name: react-hook-form
  dependency-version: 7.69.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: core-ui-package-updates
- dependency-name: react-hotkeys-hook
  dependency-version: 5.2.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: core-ui-package-updates
- dependency-name: react-i18next
  dependency-version: 16.5.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: core-ui-package-updates
- dependency-name: react-markdown
  dependency-version: 10.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: core-ui-package-updates
- dependency-name: react-resizable-panels
  dependency-version: 4.0.15
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: core-ui-package-updates
- dependency-name: react-router-dom
  dependency-version: 7.11.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: core-ui-package-updates
- dependency-name: react-syntax-highlighter
  dependency-version: 16.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: core-ui-package-updates
- dependency-name: use-debounce
  dependency-version: 10.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: core-ui-package-updates
- dependency-name: yaml
  dependency-version: 2.8.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: core-ui-package-updates
- dependency-name: zustand
  dependency-version: 5.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: core-ui-package-updates
- dependency-name: "@7nohe/openapi-react-query-codegen"
  dependency-version: 2.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: core-ui-package-updates
- dependency-name: "@eslint/compat"
  dependency-version: 2.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: core-ui-package-updates
- dependency-name: "@eslint/js"
  dependency-version: 9.39.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: core-ui-package-updates
- dependency-name: "@stylistic/eslint-plugin"
  dependency-version: 5.6.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: core-ui-package-updates
- dependency-name: "@testing-library/react"
  dependency-version: 16.3.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: core-ui-package-updates
- dependency-name: "@trivago/prettier-plugin-sort-imports"
  dependency-version: 6.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: core-ui-package-updates
- dependency-name: "@types/node"
  dependency-version: 25.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: core-ui-package-updates
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.50.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: core-ui-package-updates
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.50.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: core-ui-package-updates
- dependency-name: "@typescript-eslint/utils"
  dependency-version: 8.50.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: core-ui-package-updates
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.0.16
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: core-ui-package-updates
- dependency-name: eslint
  dependency-version: 9.39.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: core-ui-package-updates
- dependency-name: eslint-plugin-perfectionist
  dependency-version: 5.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: core-ui-package-updates
- dependency-name: eslint-plugin-react-hooks
  dependency-version: 7.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: core-ui-package-updates
- dependency-name: eslint-plugin-react-refresh
  dependency-version: 0.4.26
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: core-ui-package-updates
- dependency-name: eslint-plugin-unicorn
  dependency-version: 62.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: core-ui-package-updates
- dependency-name: globals
  dependency-version: 16.5.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: core-ui-package-updates
- dependency-name: jsonc-eslint-parser
  dependency-version: 2.4.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: core-ui-package-updates
- dependency-name: msw
  dependency-version: 2.12.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: core-ui-package-updates
- dependency-name: typescript-eslint
  dependency-version: 8.50.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: core-ui-package-updates
- dependency-name: vite
  dependency-version: 7.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: core-ui-package-updates
- dependency-name: vitest
  dependency-version: 4.0.16
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: core-ui-package-updates
...

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 Dec 31, 2025
@dependabot dependabot bot added javascript Pull requests that update Javascript code dependencies Pull requests that update a dependency file labels Dec 31, 2025
@boring-cyborg boring-cyborg bot added the area:UI Related to UI/UX. For Frontend Developers. label Dec 31, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area:UI Related to UI/UX. For Frontend Developers. dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

0 participants