Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the version-all group across 1 directory with 24 updates #6926

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 24, 2025

Bumps the version-all group with 23 updates in the /frontend directory:

Package From To
@heroui/react 2.6.14 2.7.2
@react-router/node 7.1.5 7.2.0
@react-router/serve 7.1.5 7.2.0
@reduxjs/toolkit 2.5.1 2.6.0
@stripe/stripe-js 5.6.0 5.7.0
@tanstack/react-query 5.66.7 5.66.9
framer-motion 12.4.4 12.4.7
i18next-browser-languagedetector 8.0.3 8.0.4
isbot 5.1.22 5.1.23
jose 5.10.0 6.0.6
posthog-js 1.219.3 1.223.3
react-icons 5.4.0 5.5.0
react-markdown 9.0.3 10.0.0
react-router 7.1.5 7.2.0
tailwind-merge 3.0.1 3.0.2
vite 6.1.0 6.1.1
ws 8.18.0 8.18.1
@react-router/dev 7.1.5 7.2.0
@types/node 22.13.4 22.13.5
@vitest/coverage-v8 3.0.6 3.0.7
postcss 8.5.2 8.5.3
prettier 3.5.1 3.5.2
tailwindcss 3.4.17 4.0.8

Updates @heroui/react from 2.6.14 to 2.7.2

Release notes

Sourced from @​heroui/react's releases.

@​heroui/react@​2.7.0

What's Changed

... (truncated)

Changelog

Sourced from @​heroui/react's changelog.

2.7.2

Patch Changes

  • Fix v2.7.0 release

  • Updated dependencies []:

    • @​heroui/scroll-shadow@​2.3.9
    • @​heroui/autocomplete@​2.3.14
    • @​heroui/number-input@​2.0.3
    • @​heroui/breadcrumbs@​2.2.10
    • @​heroui/date-picker@​2.3.13
    • @​heroui/framer-utils@​2.1.10
    • @​heroui/date-input@​2.3.12
    • @​heroui/pagination@​2.2.12
    • @​heroui/accordion@​2.2.11
    • @​heroui/input-otp@​2.1.12
    • @​heroui/calendar@​2.2.13
    • @​heroui/checkbox@​2.3.12
    • @​heroui/dropdown@​2.3.13
    • @​heroui/progress@​2.2.10
    • @​heroui/skeleton@​2.2.9
    • @​heroui/divider@​2.2.9
    • @​heroui/listbox@​2.3.13
    • @​heroui/popover@​2.3.13
    • @​heroui/snippet@​2.2.14
    • @​heroui/spinner@​2.2.10
    • @​heroui/tooltip@​2.2.11
    • @​heroui/avatar@​2.2.10
    • @​heroui/button@​2.2.13
    • @​heroui/drawer@​2.2.11
    • @​heroui/navbar@​2.2.12
    • @​heroui/ripple@​2.2.11
    • @​heroui/select@​2.4.13
    • @​heroui/slider@​2.4.11
    • @​heroui/spacer@​2.2.10
    • @​heroui/switch@​2.2.12
    • @​heroui/alert@​2.2.13
    • @​heroui/badge@​2.2.9
    • @​heroui/image@​2.2.9
    • @​heroui/input@​2.4.13
    • @​heroui/modal@​2.2.11
    • @​heroui/radio@​2.3.12
    • @​heroui/table@​2.2.12
    • @​heroui/toast@​2.0.3
    • @​heroui/card@​2.2.13
    • @​heroui/chip@​2.2.10
    • @​heroui/code@​2.2.10
    • @​heroui/form@​2.1.12
    • @​heroui/link@​2.2.11

... (truncated)

Commits

Updates @react-router/node from 7.1.5 to 7.2.0

Release notes

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

v7.2.0

See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v720

Changelog

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

7.2.0

Patch Changes

Commits

Updates @react-router/serve from 7.1.5 to 7.2.0

Release notes

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

v7.2.0

See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v720

Changelog

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

7.2.0

Patch Changes

Commits

Updates @reduxjs/toolkit from 2.5.1 to 2.6.0

Release notes

Sourced from @​reduxjs/toolkit's releases.

v2.6.0

This feature release adds infinite query support to RTK Query.

Changelog

RTK Query Infinite Query support

Since we first released RTK Query in 2021, we've had users asking us to add support for "infinite queries" - the ability to keep fetching additional pages of data for a given endpoint. It's been by far our most requested feature. Until recently, our answer was that we felt there were too many use cases to support with a single API design approach.

Last year, we revisited this concept and concluded that the best approach was to mimic the flexible infinite query API design from React Query. We had additional discussions with @​tkdodo , who described the rationale and implementation approach and encouraged us to use their API design, and @​riqts provided an initial implementation on top of RTKQ's existing internals.

We're excited to announce that this release officially adds full infinite query endpoint support to RTK Query!

Using Infinite Queries

As with React Query, the API design is based around "page param" values that act as the query arguments for fetching a specific page for the given cache entry.

Infinite queries are defined with a new build.infiniteQuery() endpoint type. It accepts all of the same options as normal query endpoints, but also needs an additional infiniteQueryOptions field that specifies the infinite query behaviors. With TypeScript, you must supply 3 generic arguments: build.infiniteQuery<ResultType, QueryArg, PageParam>, where ResultType is the contents of a single page, QueryArg is the type passed in as the cache key, and PageParam is the value used to request a specific page.

The endpoint must define an initialPageParam value that will be used as the default (and can be overridden if desired). It also needs a getNextPageParam callback that will calculate the params for each page based on the existing values, and optionally a getPreviousPageParam callback if reverse fetching is needed. Finally, a maxPages option can be provided to limit the entry cache size.

The query and queryFn methods now receive a {queryArg, pageParam} object, instead of just the queryArg.

For the cache entries and hooks, the data field is now an object like {pages: ResultType[], pageParams: PageParam[]>. This gives you flexibility in how you use the data for rendering.

const pokemonApi = createApi({
  baseQuery: fetchBaseQuery({ baseUrl: 'https://example.com/pokemon' }),
  endpoints: (build) => ({
    // 3 TS generics: page contents, query arg, page param
    getInfinitePokemonWithMax: build.infiniteQuery<Pokemon[], string, number>({
      infiniteQueryOptions: {
        // Must provide a default initial page param value
        initialPageParam: 1,
        // Optionally limit the number of cached pages
        maxPages: 3,
        // Must provide a `getNextPageParam` function
        getNextPageParam: (lastPage, allPages, lastPageParam, allPageParams) =>
          lastPageParam + 1,
        // Optionally provide a `getPreviousPageParam` function
        getPreviousPageParam: (
          firstPage,
          allPages,
          firstPageParam,
          allPageParams,
        ) => {
          return firstPageParam > 0 ? firstPageParam - 1 : undefined
        },
      },
      // The `query` function receives `{queryArg, pageParam}` as its argument
</tr></table> 

... (truncated)

Commits
  • 18ddd7e Release 2.6.0
  • 09e1466 RTKQ Infinite Query integration (#4738)
  • 7897c4c Merge pull request #4847 from Tasin5541/doc-lazy-query-reset
  • cdb264f doc: update type definitions for lazy query hooks to include reset method
  • See full diff in compare view

Updates @stripe/stripe-js from 5.6.0 to 5.7.0

Release notes

Sourced from @​stripe/stripe-js's releases.

v5.7.0

  • Generalize Stripe.js detection logic (#721)
  • Update types for ECE new integration shape (#718)

New features

Fixes

Changed

Commits

Updates @tanstack/react-query from 5.66.7 to 5.66.9

Release notes

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

v5.66.9

Version 5.66.9 - 2/21/25, 1:19 PM

Changes

Fix

  • types: prevent type errors and improve inference for dynamic queries on useQueries and useSuspenseQueries (#8624) (f63ba16) by Yoomin Kang

Packages

  • @​tanstack/react-query@​5.66.9
  • @​tanstack/solid-query@​5.66.9
  • @​tanstack/solid-query-devtools@​5.66.9
  • @​tanstack/solid-query-persist-client@​5.66.9
  • @​tanstack/svelte-query@​5.66.9
  • @​tanstack/vue-query@​5.66.9
  • @​tanstack/angular-query-experimental@​5.66.9
  • @​tanstack/react-query-devtools@​5.66.9
  • @​tanstack/react-query-persist-client@​5.66.9
  • @​tanstack/react-query-next-experimental@​5.66.9
  • @​tanstack/svelte-query-devtools@​5.66.9
  • @​tanstack/svelte-query-persist-client@​5.66.9
  • @​tanstack/vue-query-devtools@​5.66.9
  • @​tanstack/angular-query-devtools-experimental@​5.66.9

v5.66.8

Version 5.66.8 - 2/20/25, 1:11 PM

Changes

Fix

  • react-query: fix inferring data as | undefined when using initialData without queryFn (#8674) (9ac54b1) by Yoomin Kang

Docs

Packages

  • @​tanstack/react-query@​5.66.8
  • @​tanstack/react-query-devtools@​5.66.8
  • @​tanstack/react-query-persist-client@​5.66.8
  • @​tanstack/react-query-next-experimental@​5.66.8
Commits
  • e474f73 release: v5.66.9
  • f63ba16 fix(types): prevent type errors and improve inference for dynamic queries on ...
  • a4db9ed release: v5.66.8
  • 9ac54b1 fix(react-query): fix inferring data as | undefined when using initialData wi...
  • See full diff in compare view

Updates framer-motion from 12.4.4 to 12.4.7

Changelog

Sourced from framer-motion's changelog.

[12.4.7] 2025-02-20

Fixed

  • Fixed AnimatePresence not triggering exit animations when a child with layout or drag is removed.

[12.4.6] 2025-02-20

Fixed

  • Fixed drag gesture on child elements.

[12.4.5] 2025-02-19

Fixed

  • Fixed onClick handlers not working inside press events.
Commits

Updates i18next-browser-languagedetector from 8.0.3 to 8.0.4

Changelog

Sourced from i18next-browser-languagedetector's changelog.

8.0.4

  • fix localstorage check to try to address 297 300
Commits

Updates isbot from 5.1.22 to 5.1.23

Changelog

Sourced from isbot's changelog.

5.1.23

  • [Pattern] Pattern updates
Commits

Updates jose from 5.10.0 to 6.0.6

Release notes

Sourced from jose's releases.

v6.0.6

Refactor

Documentation

  • add various exported symbol descriptions (3b8ff71)
  • add various exported symbol descriptions (fc4e7da)
  • add various exported symbol descriptions (74f02c8)
  • update base64url function descriptions (03d72c8)

v6.0.5

Refactor

  • types: make JWKParameters.kty compatible with @​types/node and @​types/web (bb6ccfe)

Documentation

  • add various exported symbol descriptions (f52c2ff)

v6.0.4

Refactor

  • optimize base64 with tc39/proposal-arraybuffer-base64 (8a0da69), closes #752
  • update getSPKI to use crypto.createPublicKey when available (92392a0), closes #752
  • use Double HMAC pattern for AES-CBC tag comparison (f3ba4c7), closes #752

v6.0.3

Documentation

  • remove root module tag so that README.md shows up on jsr.io (ee70698)

v6.0.2

Documentation

  • add module tags to all entrypoints (a5687aa)

v6.0.1

Fixes

  • types: update build to include extensions in type imports (9b96672)

v6.0.0

⚠ BREAKING CHANGES

  • The PEMImportOptions type interface is renamed to KeyImportOptions.
  • all builds and bundles now use ES2022 as target

... (truncated)

Changelog

Sourced from jose's changelog.

6.0.6 (2025-02-23)

Refactor

Documentation

  • add various exported symbol descriptions (3b8ff71)
  • add various exported symbol descriptions (fc4e7da)
  • add various exported symbol descriptions (74f02c8)
  • update base64url function descriptions (03d72c8)

6.0.5 (2025-02-23)

Refactor

  • types: make JWKParameters.kty compatible with @​types/node and @​types/web (bb6ccfe)

Documentation

  • add various exported symbol descriptions (f52c2ff)

6.0.4 (2025-02-22)

Refactor

  • optimize base64 with tc39/proposal-arraybuffer-base64 (8a0da69), closes #752
  • update getSPKI to use crypto.createPublicKey when available (92392a0), closes #752
  • use Double HMAC pattern for AES-CBC tag comparison (f3ba4c7), closes #752

6.0.3 (2025-02-22)

Documentation

  • remove root module tag so that README.md shows up on jsr.io (ee70698)

6.0.2 (2025-02-22)

Documentation

  • add module tags to all entrypoints (a5687aa)

... (truncated)

Commits
  • 445a525 chore(release): 6.0.6
  • 3b8ff71 docs: add various exported symbol descriptions
  • fc4e7da docs: add various exported symbol descriptions
  • 74f02c8 docs: add various exported symbol descriptions
  • e1350ef refactor: move base64url around
  • 03d72c8 docs: update base64url function descriptions
  • d18f7f8 chore: cleanup after release
  • f6042ad chore(release): 6.0.5
  • f52c2ff docs: add various exported symbol descriptions
  • adcad33 chore: update bug report issue template
  • Additional commits viewable in compare view

Updates posthog-js from 1.219.3 to 1.223.3

Release notes

Sourced from posthog-js's releases.

1.223.3 - 2025-02-23

  • fix: dont show survey on url change, only hide it (#1761)

1.223.2 - 2025-02-22

  • fix: improve survey bundle size (#1759)

1.223.1 - 2025-02-22

1.222.0 - 2025-02-20

  • chore: Make @rrweb/types a peer dependency (#1749)

1.221.1 - 2025-02-20

  • fix: check url matching on URL change for widget-type surveys (#1755)

1.221.0 - 2025-02-20

  • feat: allow widget surveys to be repeated indefinitely (#1752)

1.220.0 - 2025-02-20

  • feat(llm-observability): metric and feedback methods (#1709)

1.219.6 - 2025-02-19

  • fix: Remove circular dependency (#1750)

1.219.5 - 2025-02-19

  • Block Chrome-Lighthouse UA (used by ahrefs) (#1751)

1.219.4 - 2025-02-18

  • fix: Fix types for onFeatureFlags callback (#1748)
Changelog

Sourced from posthog-js's changelog.

1.223.3 - 2025-02-23

  • fix: dont show survey on url change, only hide it (#1761)

1.223.2 - 2025-02-22

  • fix: improve survey bundle size (#1759)

1.223.1 - 2025-02-22

1.223.0 - 2025-02-22

  • feat: Add new prepare_external_dependency_stylesheet config option (#1757)

1.222.0 - 2025-02-20

  • chore: Make @rrweb/types a peer dependency (#1749)

1.221.1 - 2025-02-20

  • fix: check url matching on URL change for widget-type surveys (#1755)

1.221.0 - 2025-02-20

  • feat: allow widget surveys to be repeated indefinitely (#1752)

1.220.0 - 2025-02-20

  • feat(llm-observability): metric and feedback methods (#1709)

1.219.6 - 2025-02-19

  • fix: Remove circular dependency (#1750)

1.219.5 - 2025-02-19

  • Block Chrome-Lighthouse UA (used by ahrefs) (#1751)

1.219.4 - 2025-02-18

  • fix: Fix types for onFeatureFlags callback (#1748)
Commits
  • 581275d chore: Bump version to 1.223.3
  • df80f79 fix: dont show survey on url change, only hide it (#1761)
  • 60c8e27 chore: Bump version to 1.223.2
  • c3da349 fix: improve survey bundle size (#1759)
  • 48ae875 chore: Bump version to 1.223.1
  • a113e68 fix: initializing surveys twice and calling survey shown/dismissed more than ...
  • 9b9c658 chore: Bump version to 1.223.0
  • 516e022 feat: Add new prepare_external_dependency_stylesheet config option (#1757)
  • d07e813 chore: Bump version to 1.222.0
  • 95fc4c6 chore: Make @rrweb/types a peer dependency (#1749)
  • Additional commits viewable in compare view

Updates react-icons from 5.4.0 to 5.5.0

Release notes

Sourced from react-icons's releases.

v5.5.0

What's Changed

New Contributors

Full Changelog: react-icons/react-icons@v5.4.0...v5.5.0

Icon Library License Version Count
Circum Icons MPL-2.0 license 1.0.0 288
Font Awesome 5 CC BY 4.0 License 5.15.4-3-gafecf2a 1612
Font Awesome 6 CC BY 4.0 License 6.6.0 2050
Ionicons 4 MIT 4.6.3 696
Ionicons 5 MIT 5.5.4 1332
Material Design icons Apache License Version 2.0 4.0.0-125-gef43291c4d 4341
Typicons CC BY-SA 3.0 2.1.2 336
Github Octicons icons MIT 18.3.0 264
Feather MIT 4.29.2 287
Lucide ISC 0.462.0 1541
Game Icons CC BY 3.0 12920d6565588f0512542a3cb0cdfd36a497f910 4040
Weather Icons SIL OFL 1.1 2.0.12 219
Devicons MIT 1.8.0 192
Ant Design Icons MIT 4.4.2 831
Bootstrap Icons MIT 1.11.3 2716
Remix Icon Apache License Version 2.0 4.5.0 3020
Flat Color Icons MIT 1.0.2 329
Grommet-Icons Apache License Version 2.0 4.12.1 635
Heroicons MIT 1.0.6 460
Heroicons 2 MIT 2.2.0 972
Simple Icons CC0 1.0 Universal 13.19.0 3275
Simple Line Icons MIT 2.5.5 189
IcoMoon Free CC BY 4.0 License d006795ede82361e1bac1ee76f215cf1dc51e4ca 491
BoxIcons MIT 2.1.4 1634
css.gg MIT 2.1.4 704
VS Code Icons CC BY 4.0 0.0.36 466
Tabler Icons MIT 3.24.0 5754
Themify Icons MIT v0.1.2-2-g9600186 352
Radix Icons MIT @​radix-ui/react-icons@​1.3.2 318
Phosphor Icons MIT 2.1.1 9072
Icons8 Line Awesome MIT 1.3.1 1544
Commits

…dates

Bumps the version-all group with 23 updates in the /frontend directory:

| Package | From | To |
| --- | --- | --- |
| [@heroui/react](https://github.com/heroui-inc/heroui/tree/HEAD/packages/core/react) | `2.6.14` | `2.7.2` |
| [@react-router/node](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-node) | `7.1.5` | `7.2.0` |
| [@react-router/serve](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-serve) | `7.1.5` | `7.2.0` |
| [@reduxjs/toolkit](https://github.com/reduxjs/redux-toolkit) | `2.5.1` | `2.6.0` |
| [@stripe/stripe-js](https://github.com/stripe/stripe-js) | `5.6.0` | `5.7.0` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.66.7` | `5.66.9` |
| [framer-motion](https://github.com/motiondivision/motion) | `12.4.4` | `12.4.7` |
| [i18next-browser-languagedetector](https://github.com/i18next/i18next-browser-languageDetector) | `8.0.3` | `8.0.4` |
| [isbot](https://github.com/omrilotan/isbot) | `5.1.22` | `5.1.23` |
| [jose](https://github.com/panva/jose) | `5.10.0` | `6.0.6` |
| [posthog-js](https://github.com/PostHog/posthog-js) | `1.219.3` | `1.223.3` |
| [react-icons](https://github.com/react-icons/react-icons) | `5.4.0` | `5.5.0` |
| [react-markdown](https://github.com/remarkjs/react-markdown) | `9.0.3` | `10.0.0` |
| [react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router) | `7.1.5` | `7.2.0` |
| [tailwind-merge](https://github.com/dcastil/tailwind-merge) | `3.0.1` | `3.0.2` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `6.1.0` | `6.1.1` |
| [ws](https://github.com/websockets/ws) | `8.18.0` | `8.18.1` |
| [@react-router/dev](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dev) | `7.1.5` | `7.2.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.13.4` | `22.13.5` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `3.0.6` | `3.0.7` |
| [postcss](https://github.com/postcss/postcss) | `8.5.2` | `8.5.3` |
| [prettier](https://github.com/prettier/prettier) | `3.5.1` | `3.5.2` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `3.4.17` | `4.0.8` |



Updates `@heroui/react` from 2.6.14 to 2.7.2
- [Release notes](https://github.com/heroui-inc/heroui/releases)
- [Changelog](https://github.com/heroui-inc/heroui/blob/canary/packages/core/react/CHANGELOG.md)
- [Commits](https://github.com/heroui-inc/heroui/commits/HEAD/packages/core/react)

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

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

Updates `@reduxjs/toolkit` from 2.5.1 to 2.6.0
- [Release notes](https://github.com/reduxjs/redux-toolkit/releases)
- [Commits](reduxjs/redux-toolkit@v2.5.1...v2.6.0)

Updates `@stripe/stripe-js` from 5.6.0 to 5.7.0
- [Release notes](https://github.com/stripe/stripe-js/releases)
- [Commits](stripe/stripe-js@v5.6.0...v5.7.0)

Updates `@tanstack/react-query` from 5.66.7 to 5.66.9
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.66.9/packages/react-query)

Updates `framer-motion` from 12.4.4 to 12.4.7
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.4.4...v12.4.7)

Updates `i18next-browser-languagedetector` from 8.0.3 to 8.0.4
- [Changelog](https://github.com/i18next/i18next-browser-languageDetector/blob/master/CHANGELOG.md)
- [Commits](i18next/i18next-browser-languageDetector@v8.0.3...v8.0.4)

Updates `isbot` from 5.1.22 to 5.1.23
- [Changelog](https://github.com/omrilotan/isbot/blob/main/CHANGELOG.md)
- [Commits](omrilotan/isbot@v5.1.22...v5.1.23)

Updates `jose` from 5.10.0 to 6.0.6
- [Release notes](https://github.com/panva/jose/releases)
- [Changelog](https://github.com/panva/jose/blob/main/CHANGELOG.md)
- [Commits](panva/jose@v5.10.0...v6.0.6)

Updates `posthog-js` from 1.219.3 to 1.223.3
- [Release notes](https://github.com/PostHog/posthog-js/releases)
- [Changelog](https://github.com/PostHog/posthog-js/blob/main/CHANGELOG.md)
- [Commits](PostHog/posthog-js@v1.219.3...v1.223.3)

Updates `react-icons` from 5.4.0 to 5.5.0
- [Release notes](https://github.com/react-icons/react-icons/releases)
- [Commits](react-icons/react-icons@v5.4.0...v5.5.0)

Updates `react-markdown` from 9.0.3 to 10.0.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.0.3...10.0.0)

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

Updates `tailwind-merge` from 3.0.1 to 3.0.2
- [Release notes](https://github.com/dcastil/tailwind-merge/releases)
- [Commits](dcastil/tailwind-merge@v3.0.1...v3.0.2)

Updates `vite` from 6.1.0 to 6.1.1
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/[email protected]/packages/vite)

Updates `ws` from 8.18.0 to 8.18.1
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@8.18.0...8.18.1)

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

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

Updates `@vitest/coverage-v8` from 3.0.6 to 3.0.7
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.0.7/packages/coverage-v8)

Updates `postcss` from 8.5.2 to 8.5.3
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.5.2...8.5.3)

Updates `prettier` from 3.5.1 to 3.5.2
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.5.1...3.5.2)

Updates `tailwindcss` from 3.4.17 to 4.0.8
- [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.0.8/packages/tailwindcss)

Updates `vitest` from 3.0.6 to 3.0.7
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.0.7/packages/vitest)

---
updated-dependencies:
- dependency-name: "@heroui/react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-all
- dependency-name: "@react-router/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-all
- dependency-name: "@react-router/serve"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-all
- dependency-name: "@reduxjs/toolkit"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-all
- dependency-name: "@stripe/stripe-js"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-all
- dependency-name: "@tanstack/react-query"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-all
- dependency-name: framer-motion
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-all
- dependency-name: i18next-browser-languagedetector
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-all
- dependency-name: isbot
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-all
- dependency-name: jose
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: version-all
- dependency-name: posthog-js
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-all
- dependency-name: react-icons
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-all
- dependency-name: react-markdown
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: version-all
- dependency-name: react-router
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-all
- dependency-name: tailwind-merge
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-all
- dependency-name: vite
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-all
- dependency-name: ws
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-all
- dependency-name: "@react-router/dev"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-all
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: version-all
- dependency-name: "@vitest/coverage-v8"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: version-all
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: version-all
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: version-all
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: version-all
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: version-all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 24, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants