Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 6, 2025

Bumps the dependencies group with 12 updates in the /app directory:

Package From To
@reduxjs/toolkit 2.8.2 2.9.0
@tailwindcss/vite 4.1.12 4.1.14
antd 5.27.0 5.27.4
better-sqlite3 12.2.0 12.4.1
i18next 25.3.6 25.5.3
lucide-react 0.539.0 0.545.0
react 19.1.1 19.2.0
react-dom 19.1.1 19.2.0
react-i18next 15.6.1 16.0.0
react-router 7.8.1 7.9.3
react-window 1.8.11 2.2.0
tailwindcss 4.1.12 4.1.14

Updates @reduxjs/toolkit from 2.8.2 to 2.9.0

Release notes

Sourced from @​reduxjs/toolkit's releases.

v2.9.0

This feature release rewrites RTK Query's internal subscription and polling systems and the useStableQueryArgs hook for better perf, adds automatic AbortSignal handling to requests still in progress when a cache entry is removed, fixes a bug with the transformResponse option for queries, adds a new builder.addAsyncThunk method, and fixes assorted other issues.

Changelog

RTK Query Performance Improvements

We had reports that RTK Query could get very slow when there were thousands of subscriptions to the same cache entry. After investigation, we found that the internal polling logic was attempting to recalculate the minimum polling time after every new subscription was added. This was highly inefficient, as most subscriptions don't change polling settings, and it required repeated O(n) iteration over the growing list of subscriptions. We've rewritten that logic to debounce the update check and ensure a max of one polling value update per tick for the entire API instance.

Related, while working on the request abort changes, testing showed that use of plain Records to hold subscription data was inefficient because we have to iterate keys to check size. We've rewritten the subscription handling internals to use Maps instead, as well as restructuring some additional checks around in-flight requests.

These two improvements drastically improved runtime perf for the thousands-of-subscriptions-one-cache-entry repro, eliminating RTK methods as visible hotspots in the perf profiles. It likely also improves perf for general usage as well.

We've also changed the implementation of our internal useStableQueryArgs hook to avoid calling serializeQueryArgs on its value, which can avoid potential perf issues when a query takes a very large object as its cache key.

[!NOTE] The internal logic switched from serializing the query arg to doing reference checks on nested values. This means that if you are passing a non-POJO value in a query arg, such as useSomeQuery({a: new Set()}), and you have refetchOnMountOrArgChange enabled, this will now trigger refeteches each time as the Set references are now considered different based on equality instead of serialization.

Abort Signal Handling on Cleanup

We've had numerous requests over time for various forms of "abort in-progress requests when the data is no longer needed / params change / component unmounts / some expensive request is taking too long". This is a complex topic with multiple potential use cases, and our standard answer has been that we don't want to abort those requests - after all, cache entries default to staying in memory for 1 minute after the last subscription is removed, so RTKQ's cache can still be updated when the request completes. That also means that it doesn't make sense to abort a request "on unmount".

However, it does then make sense to abort an in-progress request if the cache entry itself is removed. Given that, we've updated our cache handling to automatically call the existing resPromise.abort() method in that case, triggering the AbortSignal attached to the baseQuery. The handling at that point depends on your app - fetchBaseQuery should handle that, a custom baseQuery or queryFn would need to listen to the AbortSignal.

We do have an open issue asking for further discussions of potential abort / cancelation use cases and would appreciate further feedback.

New Options

The builder callback used in createReducer and createSlice.extraReducers now has builder.addAsyncThunk available, which allows handling specific actions from a thunk in the same way that you could define a thunk inside createSlice.reducers:

        const slice = createSlice({
          name: 'counter',
          initialState: {
            loading: false,
            errored: false,
            value: 0,
          },
          reducers: {},
          extraReducers: (builder) =>
            builder.addAsyncThunk(asyncThunk, {
              pending(state) {
                state.loading = true
              },
              fulfilled(state, action) {
                state.value = action.payload
              },
              rejected(state) {
                state.errored = true
              },
</tr></table> 

... (truncated)

Commits
  • 98c54c6 Release 2.9.0
  • 0a86abd export some useful async thunk types
  • d02c27a add docs for addAsyncThunk (#5066)
  • ab346b9 fixdoc: incorrect position of keepUnusedDataFor for two scenarios (#5062)
  • d2bbb8d Rewrite subscription handling and polling calculations for better perf (#5064)
  • 3c6de47 Merge pull request #5065 from reduxjs/feature/TS5.9-matrix
  • c37b977 Add missing error value
  • 38537c3 Don't run Node10 checks for TS 6+
  • 821be20 Add TS 5.9 to the matrix
  • 407688d Abort pending requests if the cache entry is removed (#5061)
  • Additional commits viewable in compare view

Updates @tailwindcss/vite from 4.1.12 to 4.1.14

Release notes

Sourced from @​tailwindcss/vite's releases.

v4.1.14

Fixed

  • Handle ' syntax in ClojureScript when extracting classes (#18888)
  • Handle @variant inside @custom-variant (#18885)
  • Merge suggestions when using @utility (#18900)
  • Ensure that file system watchers created when using the CLI are always cleaned up (#18905)
  • Do not generate grid-column utilities when configuring grid-column-start or grid-column-end (#18907)
  • Do not generate grid-row utilities when configuring grid-row-start or grid-row-end (#18907)
  • Prevent duplicate CSS when overwriting a static utility with a theme key (#18056)
  • Show Lightning CSS warnings (if any) when optimizing/minifying (#18918)
  • Use default export condition for @tailwindcss/vite (#18948)
  • Re-throw errors from PostCSS nodes (#18373)
  • Detect classes in markdown inline directives (#18967)
  • Ensure files with only @theme produce no output when built (#18979)
  • Support Maud templates when extracting classes (#18988)
  • Upgrade: Do not migrate variant = 'outline' during upgrades (#18922)
  • Upgrade: Show version mismatch (if any) when running upgrade tool (#19028)
  • Upgrade: Ensure first class inside className is migrated (#19031)
  • Upgrade: Migrate classes inside *ClassName and *Class attributes (#19031)

v4.1.13

Changed

  • Drop warning from browser build (#18731)
  • Drop exact duplicate declarations when emitting CSS (#18809)

Fixed

  • Don't transition visibility when using transition (#18795)
  • Discard matched variants with unknown named values (#18799)
  • Discard matched variants with non-string values (#18799)
  • Show suggestions for known matchVariant values (#18798)
  • Replace deprecated clip with clip-path in sr-only (#18769)
  • Hide internal fields from completions in matchUtilities (#18820)
  • Ignore .vercel folders by default (can be overridden by @source … rules) (#18855)
  • Consider variants starting with @- to be invalid (e.g. @-2xl:flex) (#18869)
  • Do not allow custom variants to start or end with a - or _ (#18867, #18872)
  • Upgrade: Migrate aria theme keys to @custom-variant (#18815)
  • Upgrade: Migrate data theme keys to @custom-variant (#18816)
  • Upgrade: Migrate supports theme keys to @custom-variant (#18817)
Changelog

Sourced from @​tailwindcss/vite's changelog.

[4.1.14] - 2025-10-01

Fixed

  • Handle ' syntax in ClojureScript when extracting classes (#18888)
  • Handle @variant inside @custom-variant (#18885)
  • Merge suggestions when using @utility (#18900)
  • Ensure that file system watchers created when using the CLI are always cleaned up (#18905)
  • Do not generate grid-column utilities when configuring grid-column-start or grid-column-end (#18907)
  • Do not generate grid-row utilities when configuring grid-row-start or grid-row-end (#18907)
  • Prevent duplicate CSS when overwriting a static utility with a theme key (#18056)
  • Show Lightning CSS warnings (if any) when optimizing/minifying (#18918)
  • Use default export condition for @tailwindcss/vite (#18948)
  • Re-throw errors from PostCSS nodes (#18373)
  • Detect classes in markdown inline directives (#18967)
  • Ensure files with only @theme produce no output when built (#18979)
  • Support Maud templates when extracting classes (#18988)
  • Upgrade: Do not migrate variant = 'outline' during upgrades (#18922)
  • Upgrade: Show version mismatch (if any) when running upgrade tool (#19028)
  • Upgrade: Ensure first class inside className is migrated (#19031)
  • Upgrade: Migrate classes inside *ClassName and *Class attributes (#19031)

[4.1.13] - 2025-09-03

Changed

  • Drop warning from browser build (#18731)
  • Drop exact duplicate declarations when emitting CSS (#18809)

Fixed

  • Don't transition visibility when using transition (#18795)
  • Discard matched variants with unknown named values (#18799)
  • Discard matched variants with non-string values (#18799)
  • Show suggestions for known matchVariant values (#18798)
  • Replace deprecated clip with clip-path in sr-only (#18769)
  • Hide internal fields from completions in matchUtilities (#18820)
  • Ignore .vercel folders by default (can be overridden by @source … rules) (#18855)
  • Consider variants starting with @- to be invalid (e.g. @-2xl:flex) (#18869)
  • Do not allow custom variants to start or end with a - or _ (#18867, #18872)
  • Upgrade: Migrate aria theme keys to @custom-variant (#18815)
  • Upgrade: Migrate data theme keys to @custom-variant (#18816)
  • Upgrade: Migrate supports theme keys to @custom-variant (#18817)
Commits

Updates antd from 5.27.0 to 5.27.4

Release notes

Sourced from antd's releases.

5.27.4

  • Table
    • 🐞 Fix Table duplicated filter dropdowns and tooltips when using sticky headers or scroll.y. #54910 @​afc163
    • 🐞 Fix Table header not rendering on initial load. #54910 @​afc163
    • 🐞 Fix Table column alignment when scroll.x is enabled. #54899 @​afc163
  • 🐞 Fix Button where the padding of icon-only was affected by the theme. #54970 @​guoyunhe
  • 🐞 Fix Splitter minSize and maxSize not taking effect on initial mount in uncontrolled mode. #54939 @​zombieJ
  • 🐞 Fix Switch wave effect compatibility with Tailwind CSS disabled variant. #54933 @​Jiyur
  • 🐞 Fix Input.Search hover color changes for the border and icon when the search button is disabled. #54892 @​Jiyur

  • Table
    • 🐞 修复 Table 在使 sticky 表头或设置 scroll.y 时,筛选下拉与 Tooltip 重复显示的问题。#54910 @​afc163
    • 🐞 修复 Table 表头在首次加载时未正确渲染的问题。#54910 @​afc163
    • 🐞 修复 Table 在启用 scroll.x 时,固定列的对齐问题。#54899 @​afc163
  • 🐞 修复 Button 仅图标(icon-only)按钮的内边距受主题影响的问题。 #54970 @​guoyunhe
  • 🐞 修复 Splitter 在非受控模式下初次挂载时,minSizemaxSize 未生效的问题。#54939 @​zombieJ
  • 🐞 修复 Switch 波纹效果与 Tailwind CSS disabled 变体的兼容性问题。#54933 @​Jiyur
  • 🐞 修复 Input.Search 在搜索按钮为 disabled 时,悬停仍会导致边框和图标变色的问题。#54892 @​Jiyur

5.27.3

  • Table
    • 🐞 Fix Table header width compression issues and render flickering issues when scroll.y or sticky is set. #54824 @​afc163
      Before ❌ After ✅
    • 🐞 Fix Table scroll.scrollToFirstRowOnChange not working with virtual scroll. #54734 @​Wxh16144
    • 🐞 Fix Table columns with children not working with fixed: 'right'. #51812 @​ryantang247
    • 🐞 Fix Table expand column not being displayed when expandable.fixed is set to true. @​inottn
    • 🐞 Fix Table columns minWidth props not working when virtualized. #54856 @​cactuser-Lu
  • 🐞 Fix Pagination style issues with simple and small size props. #54837 @​MrWangJustToDo
  • 🐞 Fix Button padding issue when shape="round". #54845 @​guoyunhe
  • 🐞 Fix Input.OTP not allowing continuous deletion. #54850 @​765477020
  • 🐞 Fix Dropdown onOpenChange closure issue. #54880 @​zombieJ
  • 🐞 Fix Carousel component style and button switching issues in RTL mode. #54868 @​EmilyyyLiu
  • 🐞 Fix incorrect margin in Typography when editable. #54871 @​Tarun2605
  • 🇮🇹 Add missing Italian translations for ColorPicker and QRCode components. #54842 @​nikzanda

  • Table
    • 🐞 修复 Table 设置 scroll.y 或者 sticky 时表头列宽度被挤压或渲染闪烁的问题。#54824 @​afc163
      Before ❌ After ✅
    • 🐞 修复 Table 在虚拟滚动时,scroll.scrollToFirstRowOnChange 配置不生效的问题。#54734 @​Wxh16144
    • 🐞 修复 Table 的列配置了 children 时,无法 fixed: 'right' 的问题。#51812 @​ryantang247
    • 🐞 修复 Table 配置 expandable.fixed 时,展开列没有显示的问题。@​inottn
    • 🐞 修复 Table 虚拟化时列 minWidth 属性不生效的问题。#54856 @​cactuser-Lu
  • 🐞 修复 Pagination 在 simplesmall 尺寸下的样式问题。#54837 @​MrWangJustToDo
  • 🐞 修复 Button shape="round" 时的 padding 样式问题。#54845 @​guoyunhe
  • 🐞 修复 Input.OTP 不允许连续删除的问题。#54850 @​765477020
  • 🐞 修复 Dropdown onOpenChange 闭包问题。#54880 @​zombieJ

... (truncated)

Changelog

Sourced from antd's changelog.

5.27.4

2025-09-17

  • Table
    • 🐞 Fix Table duplicated filter dropdowns and tooltips when using sticky headers or scroll.y. #54910 @​afc163
    • 🐞 Fix Table header not rendering on initial load. #54910 @​afc163
    • 🐞 Fix Table column alignment when scroll.x is enabled. #54899 @​afc163
  • 🐞 Fix Button where the padding of icon-only was affected by the theme. #54970 @​guoyunhe
  • 🐞 Fix Splitter minSize and maxSize not taking effect on initial mount in uncontrolled mode. #54939 @​zombieJ
  • 🐞 Fix Switch wave effect compatibility with Tailwind CSS disabled variant. #54933 @​Jiyur
  • 🐞 Fix Input.Search hover color changes for the border and icon when the search button is disabled. #54892 @​Jiyur

5.27.3

2025-09-04

  • Table
    • 🐞 Fix Table header width compression issues and render flickering issues when scroll.y or sticky is set. #54824 @​afc163
      Before ❌ After ✅
    • 🐞 Fix Table scroll.scrollToFirstRowOnChange not working with virtual scroll. #54734 @​Wxh16144
    • 🐞 Fix Table columns with children not working with fixed: 'right'. #51812 @​ryantang247
    • 🐞 Fix Table expand column not being displayed when expandable.fixed is set to true. @​inottn
    • 🐞 Fix Table columns minWidth props not working when virtualized. #54856 @​cactuser-Lu
  • 🐞 Fix Pagination style issues with simple and small size props. #54837 @​MrWangJustToDo
  • 🐞 Fix Button padding issue when shape="round". #54845 @​guoyunhe
  • 🐞 Fix Input.OTP not allowing continuous deletion. #54850 @​765477020
  • 🐞 Fix Dropdown onOpenChange closure issue. #54880 @​zombieJ
  • 🐞 Fix Carousel component style and button switching issues in RTL mode. #54868 @​EmilyyyLiu
  • 🐞 Fix incorrect margin in Typography when editable. #54871 @​Tarun2605
  • 🇮🇹 Add missing Italian translations for ColorPicker and QRCode components. #54842 @​nikzanda

5.27.2

2025-09-02

  • Button
    • 🐞 Fix custom token.paddingInline not taking effect when the Button's shape is round. #54787
    • 🐞 Fix accessibility issue when Button href is disabled. #54738 @​doandevhere
  • 🐞 Fix the Badge text property did not support the number 0. #54747 @​davidhsing
  • 💄 Optimize Table to no longer display "no data" when initialized with dataSource=null and loading. #54606@​Wxh16144
  • 💄 Fix Tabs removal icon not being vertically centered. #54794 @​Jiyur
  • 💄 Fix Typography hover underline style not taking effect. #54763 @​guoyunhe
  • 💄 Fix Radio.Group display having jagged edges and the first element overflowing on the left after wrapping. #54661 @​765477020
  • 💄 Fix inconsistent hover colors for Tree.DirectoryTree. #54725 @​Meet-student
  • 🇻🇳 Add the missing Vietnamese translations for ColorPicker/QRCode/Typography.Text. #54748 @​Jiyur

5.27.1

... (truncated)

Commits

Updates better-sqlite3 from 12.2.0 to 12.4.1

Release notes

Sourced from better-sqlite3's releases.

v12.4.1

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v12.4.0...v12.4.1

v12.4.0

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v12.3.0...v12.4.0

v12.3.0

What's Changed

New Contributors

Full Changelog: WiseLibs/better-sqlite3@v12.2.0...v12.3.0

Commits

Updates i18next from 25.3.6 to 25.5.3

Release notes

Sourced from i18next's releases.

v25.5.3

  • export esm type declaration for keyFromSelector 2356

v25.5.2

  • fix last change => for cjs there is just 1 default export, no named exports, fixes 2348

v25.5.1

  • export keyFromSelector from index.cjs 2347

v25.5.0

  • export keyFromSelector function for testing purposes 2346

v25.4.2

  • fix: enableSelector: true doesn't work with custom keySeparator 2341

v25.4.1

  • fix: KeyPrefix not working with new selector api 2340

v25.4.0

  • add new selector API to improve TypeScript IDE performance 2322
    • To enable it, set enableSelector: true in your configuration options
    • With enableSelector: "optimize", i18next can now handle translation dictionaries of any size, without affecting IDE performance or build times
    • To assist with the migration, we've published the following packages:
Changelog

Sourced from i18next's changelog.

25.5.3

  • export esm type declaration for keyFromSelector 2356

25.5.2

  • fix last change => for cjs there is just 1 default export, no named exports, fixes 2348

25.5.1

  • export keyFromSelector from index.cjs 2347

25.5.0

  • export keyFromSelector function for testing purposes 2346

25.4.2

  • fix: enableSelector: true doesn't work with custom keySeparator 2341

25.4.1

  • fix: KeyPrefix not working with new selector api 2340

25.4.0

  • add new selector API to improve TypeScript IDE performance 2322
    • To enable it, set enableSelector: true in your configuration options
    • With enableSelector: "optimize", i18next can now handle translation dictionaries of any size, without affecting IDE performance or build times
    • To assist with the migration, we've published the following packages:
Commits

Updates lucide-react from 0.539.0 to 0.545.0

Release notes

Sourced from lucide-react's releases.

Version 0.545.0

What's Changed

Full Changelog: lucide-icons/lucide@0.544.0...0.545.0

Version 0.544.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.543.0...0.544.0

Version 0.543.0

What's Changed

Full Changelog: lucide-icons/lucide@0.542.0...0.543.0

Version 0.542.0

What's Changed

New Contributors

... (truncated)

Commits

Updates react from 19.1.1 to 19.2.0

Release notes

Sourced from react's releases.

19.2.0 (Oct 1, 2025)

Below is a list of all new features, APIs, and bug fixes.

Read the React 19.2 release post for more information.

New React Features

  • <Activity>: A new API to hide and restore the UI and internal state of its children.
  • useEffectEvent is a React Hook that lets you extract non-reactive logic into an Effect Event.
  • cacheSignal (for RSCs) lets your know when the cache() lifetime is over.
  • React Performance tracks appear on the Performance panel’s timeline in your browser developer tools

New React DOM Features

  • Added resume APIs for partial pre-rendering with Web Streams:
  • Added resume APIs for partial pre-rendering with Node Streams:
  • Updated prerender APIs to return a postponed state that can be passed to the resume APIs.

Notable changes

  • React DOM now batches suspense boundary reveals, matching the behavior of client side rendering. This change is especially noticeable when animating the reveal of Suspense boundaries e.g. with the upcoming <ViewTransition> Component. React will batch as much reveals as possible before the first paint while trying to hit popular first-contentful paint metrics.
  • Add Node Web Streams (prerender, renderToReadableStream) to server-side-rendering APIs for Node.js
  • Use underscore instead of : IDs generated by useId

All Changes

React

React DOM

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Oct 6, 2025
@dependabot dependabot bot requested a review from a team as a code owner October 6, 2025 21:35
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Oct 6, 2025
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/app/dependencies-7a39d31fef branch 3 times, most recently from 08c5089 to d1116ae Compare October 14, 2025 17:35
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/app/dependencies-7a39d31fef branch 3 times, most recently from 13980b1 to 9de02bb Compare October 22, 2025 15:49
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/app/dependencies-7a39d31fef branch 3 times, most recently from 0b5d4c8 to d412f29 Compare November 3, 2025 21:42
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/app/dependencies-7a39d31fef branch 2 times, most recently from 2fdb86a to 705513d Compare November 10, 2025 21:55
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/app/dependencies-7a39d31fef branch 2 times, most recently from 8cd33d8 to 3259c85 Compare November 19, 2025 17:36
Bumps the dependencies group with 12 updates in the /app directory:

| Package | From | To |
| --- | --- | --- |
| [@reduxjs/toolkit](https://github.com/reduxjs/redux-toolkit) | `2.8.2` | `2.9.0` |
| [@tailwindcss/vite](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite) | `4.1.12` | `4.1.14` |
| [antd](https://github.com/ant-design/ant-design) | `5.27.0` | `5.27.4` |
| [better-sqlite3](https://github.com/WiseLibs/better-sqlite3) | `12.2.0` | `12.4.1` |
| [i18next](https://github.com/i18next/i18next) | `25.3.6` | `25.5.3` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.539.0` | `0.545.0` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.1.1` | `19.2.0` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.1` | `19.2.0` |
| [react-i18next](https://github.com/i18next/react-i18next) | `15.6.1` | `16.0.0` |
| [react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router) | `7.8.1` | `7.9.3` |
| [react-window](https://github.com/bvaughn/react-window) | `1.8.11` | `2.2.0` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.1.12` | `4.1.14` |



Updates `@reduxjs/toolkit` from 2.8.2 to 2.9.0
- [Release notes](https://github.com/reduxjs/redux-toolkit/releases)
- [Commits](reduxjs/redux-toolkit@v2.8.2...v2.9.0)

Updates `@tailwindcss/vite` from 4.1.12 to 4.1.14
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.1.14/packages/@tailwindcss-vite)

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

Updates `better-sqlite3` from 12.2.0 to 12.4.1
- [Release notes](https://github.com/WiseLibs/better-sqlite3/releases)
- [Commits](WiseLibs/better-sqlite3@v12.2.0...v12.4.1)

Updates `i18next` from 25.3.6 to 25.5.3
- [Release notes](https://github.com/i18next/i18next/releases)
- [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/i18next@v25.3.6...v25.5.3)

Updates `lucide-react` from 0.539.0 to 0.545.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/0.545.0/packages/lucide-react)

Updates `react` from 19.1.1 to 19.2.0
- [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.0/packages/react)

Updates `react-dom` from 19.1.1 to 19.2.0
- [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.0/packages/react-dom)

Updates `react-i18next` from 15.6.1 to 16.0.0
- [Changelog](https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/react-i18next@v15.6.1...v16.0.0)

Updates `react-router` from 7.8.1 to 7.9.3
- [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/[email protected]/packages/react-router)

Updates `react-window` from 1.8.11 to 2.2.0
- [Release notes](https://github.com/bvaughn/react-window/releases)
- [Changelog](https://github.com/bvaughn/react-window/blob/master/CHANGELOG.md)
- [Commits](bvaughn/react-window@1.8.11...2.2.0)

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

---
updated-dependencies:
- dependency-name: "@reduxjs/toolkit"
  dependency-version: 2.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@tailwindcss/vite"
  dependency-version: 4.1.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: antd
  dependency-version: 5.27.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: better-sqlite3
  dependency-version: 12.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: i18next
  dependency-version: 25.5.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: lucide-react
  dependency-version: 0.545.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: react
  dependency-version: 19.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: react-dom
  dependency-version: 19.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: react-i18next
  dependency-version: 16.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: react-router
  dependency-version: 7.9.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: react-window
  dependency-version: 2.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: tailwindcss
  dependency-version: 4.1.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/app/dependencies-7a39d31fef branch from 3259c85 to 75bed61 Compare November 24, 2025 22:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant