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 production group across 1 directory with 27 updates #424

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 Jun 26, 2024

Bumps the production group with 27 updates in the / directory:

Package From To
@hookform/resolvers 3.1.0 3.6.0
@sentry/nextjs 7.53.1 8.12.0
@tanstack/react-query 4.29.5 5.48.0
axios 1.4.0 1.7.2
classnames 2.3.2 2.5.1
jwt-decode 3.1.2 4.0.0
next-i18next 12.1.0 15.3.0
react 18.2.0 18.3.1
@types/react 18.0.28 18.3.3
react-dom 18.2.0 18.3.1
@types/react-dom 18.2.4 18.3.0
react-error-boundary 3.1.4 4.0.13
react-hook-form 7.43.9 7.52.0
yup 1.2.0 1.4.0
@typescript-eslint/eslint-plugin 6.7.5 7.14.1
@typescript-eslint/parser 6.7.5 7.14.1
eslint 8.51.0 9.5.0
eslint-config-next 13.5.4 14.2.4
eslint-config-prettier 9.0.0 9.1.0
eslint-plugin-no-relative-import-paths 1.5.3 1.5.4
eslint-plugin-prettier 5.0.1 5.1.3
eslint-plugin-unused-imports 3.0.0 4.0.0
prettier 3.0.3 3.3.2
prettier-plugin-tailwindcss 0.5.6 0.6.5
@emotion/react 11.11.0 11.11.4
@headlessui/react 1.7.14 2.1.0
react-router-dom 6.11.1 6.24.0

Updates @hookform/resolvers from 3.1.0 to 3.6.0

Release notes

Sourced from @​hookform/resolvers's releases.

v3.6.0

3.6.0 (2024-06-06)

Features

  • upgrade and migrate Valibot to v0.31.0 (#688) (bdd5ef5)

v3.5.0

3.5.0 (2024-06-04)

Features

v3.4.2

3.4.2 (2024-05-20)

Bug Fixes

  • move back to in-build set and remove lodash.set (#685) (5754c47)

v3.4.1

3.4.1 (2024-05-20)

Bug Fixes

v3.4.0

3.4.0 (2024-05-15)

Features

v3.3.4

3.3.4 (2024-01-04)

Bug Fixes

  • error handling for array errors with root error (1bfc6ab)

v3.3.3

3.3.3 (2023-12-26)

... (truncated)

Commits

Updates @sentry/nextjs from 7.53.1 to 8.12.0

Release notes

Sourced from @​sentry/nextjs's releases.

8.12.0

Important Changes

  • feat(solid): Remove need to pass router hooks to solid integration (breaking)

This release introduces breaking changes to the @sentry/solid package (which is currently out in alpha).

We've made it easier to get started with the solid router integration by removing the need to pass use* hooks explicitly to solidRouterBrowserTracingIntegration. Import solidRouterBrowserTracingIntegration from @sentry/solid/solidrouter and add it to Sentry.init

import * as Sentry from '@sentry/solid';
import { solidRouterBrowserTracingIntegration, withSentryRouterRouting } from '@sentry/solid/solidrouter';
import { Router } from '@solidjs/router';
Sentry.init({
dsn: 'PUBLIC_DSN',
integrations: [solidRouterBrowserTracingIntegration()],
tracesSampleRate: 1.0, //  Capture 100% of the transactions
});
const SentryRouter = withSentryRouterRouting(Router);

  • feat(core): Return client from init method (#12585)

Sentry.init() now returns a client directly, so you don't need to explicitly call getClient() anymore:

const client = Sentry.init();
  • feat(nextjs): Add deleteSourcemapsAfterUpload option (#12457)

This adds an easy way to delete sourcemaps immediately after uploading them:

module.exports = withSentryConfig(nextConfig, {
  sourcemaps: {
    deleteSourcemapsAfterUpload: true,
  },
});
  • feat(node): Allow to configure maxSpanWaitDuration (#12610)

Adds configuration option for the max. duration in seconds that the SDK will wait for parent spans to be finished before discarding a span. The SDK will automatically clean up spans that have no finished parent after this duration. This is necessary to prevent memory leaks in case of parent spans that are never finished or otherwise dropped/missing. However,

... (truncated)

Changelog

Sourced from @​sentry/nextjs's changelog.

8.12.0

Important Changes

  • feat(solid): Remove need to pass router hooks to solid integration (breaking)

This release introduces breaking changes to the @sentry/solid package (which is currently out in alpha).

We've made it easier to get started with the solid router integration by removing the need to pass use* hooks explicitly to solidRouterBrowserTracingIntegration. Import solidRouterBrowserTracingIntegration from @sentry/solid/solidrouter and add it to Sentry.init

import * as Sentry from '@sentry/solid';
import { solidRouterBrowserTracingIntegration, withSentryRouterRouting } from '@sentry/solid/solidrouter';
import { Router } from '@solidjs/router';
Sentry.init({
dsn: 'PUBLIC_DSN',
integrations: [solidRouterBrowserTracingIntegration()],
tracesSampleRate: 1.0, //  Capture 100% of the transactions
});
const SentryRouter = withSentryRouterRouting(Router);

  • feat(core): Return client from init method (#12585)

Sentry.init() now returns a client directly, so you don't need to explicitly call getClient() anymore:

const client = Sentry.init();
  • feat(nextjs): Add deleteSourcemapsAfterUpload option (#12457)

This adds an easy way to delete sourcemaps immediately after uploading them:

module.exports = withSentryConfig(nextConfig, {
  sourcemaps: {
    deleteSourcemapsAfterUpload: true,
  },
});
  • feat(node): Allow to configure maxSpanWaitDuration (#12610)

Adds configuration option for the max. duration in seconds that the SDK will wait for parent spans to be finished before discarding a span. The SDK will automatically clean up spans that have no finished parent after this duration. This is

... (truncated)

Commits
  • a38ac88 release: 8.12.0
  • a5cd091 Merge pull request #12637 from getsentry/prepare-release/8.12.0
  • 944e1ea meta(changelog): Remove non user facing change
  • bb85a02 Merge branch 'master' into prepare-release/8.12.0
  • 12072b8 meta(changelog): Update changelog for 8.12.0
  • dd4a7d7 feat(solid): Remove need to pass router hooks to solid integration (#12617)
  • c49c9f3 fix(feedback): Inject preact from feedbackModal into feedbackScreenshot integ...
  • 70e942d fix(build) upgrade deprecated runners (#12624)
  • b23171b docs: Update slack issue-feed channel for triaging docs (#12618)
  • 8b8febb feat(node): Allow to configure maxSpanWaitDuration (#12610)
  • Additional commits viewable in compare view

Updates @tanstack/react-query from 4.29.5 to 5.48.0

Release notes

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

v5.48.0

Version 5.48.0 - 6/25/24, 2:14 PM

Changes

Feat

  • core: Add possibility to pass a callback to enabled. (#7566) (31b9ab49) by John

Packages

  • @​tanstack/query-core@​5.48.0
  • @​tanstack/query-broadcast-client-experimental@​5.48.0
  • @​tanstack/query-persist-client-core@​5.48.0
  • @​tanstack/query-sync-storage-persister@​5.48.0
  • @​tanstack/react-query@​5.48.0
  • @​tanstack/react-query-devtools@​5.48.0
  • @​tanstack/react-query-persist-client@​5.48.0
  • @​tanstack/react-query-next-experimental@​5.48.0
  • @​tanstack/solid-query@​5.48.0
  • @​tanstack/solid-query-devtools@​5.48.0
  • @​tanstack/solid-query-persist-client@​5.48.0
  • @​tanstack/svelte-query@​5.48.0
  • @​tanstack/svelte-query-devtools@​5.48.0
  • @​tanstack/svelte-query-persist-client@​5.48.0
  • @​tanstack/vue-query@​5.48.0
  • @​tanstack/vue-query-devtools@​5.48.0
  • @​tanstack/angular-query-experimental@​5.48.0
  • @​tanstack/query-async-storage-persister@​5.48.0
  • @​tanstack/angular-query-devtools-experimental@​5.48.0

v5.47.0

Version 5.47.0 - 6/25/24, 12:27 PM

Changes

Feat

  • react-query: usePrefetchQuery (#7582) (fbfe9409) by Dominik Dorfmeister

Chore

  • Update typescript-eslint to v7 (#7610) (32bce35a) by Lachlan Collins

Ci

  • Prevent uploading coverage files found in Nx cache (#7619) (63552449) by Lachlan Collins
  • Add tests for TS 4.7, 4.8, 4.9 (#7618) (15e42ba4) by Lachlan Collins
  • Add TS version tests (#7605) (8253a80b) by Lachlan Collins

... (truncated)

Commits

Updates axios from 1.4.0 to 1.7.2

Release notes

Sourced from axios's releases.

Release v1.7.2

Release notes:

Bug Fixes

Contributors to this release

Release v1.7.1

Release notes:

Bug Fixes

  • fetch: fixed ReferenceError issue when TextEncoder is not available in the environment; (#6410) (733f15f)

Contributors to this release

Release v1.7.0

Release notes:

Features

Bug Fixes

  • core/axios: handle un-writable error stack (#6362) (81e0455)

Contributors to this release

Release v1.7.0-beta.2

Release notes:

Bug Fixes

  • fetch: capitalize HTTP method names; (#6395) (ad3174a)
  • fetch: fix & optimize progress capturing for cases when the request data has a nullish value or zero data length (#6400) (95a3e8e)
  • fetch: fix headers getting from a stream response; (#6401) (870e0a7)

Contributors to this release

Release v1.7.0-beta.1

Release notes:

... (truncated)

Changelog

Sourced from axios's changelog.

1.7.2 (2024-05-21)

Bug Fixes

Contributors to this release

1.7.1 (2024-05-20)

Bug Fixes

  • fetch: fixed ReferenceError issue when TextEncoder is not available in the environment; (#6410) (733f15f)

Contributors to this release

1.7.0 (2024-05-19)

Features

Bug Fixes

  • core/axios: handle un-writable error stack (#6362) (81e0455)

Contributors to this release

1.7.0-beta.2 (2024-05-19)

Bug Fixes

  • fetch: capitalize HTTP method names; (#6395) (ad3174a)
  • fetch: fix & optimize progress capturing for cases when the request data has a nullish value or zero data length (#6400) (95a3e8e)
  • fetch: fix headers getting from a stream response; (#6401) (870e0a7)

Contributors to this release

... (truncated)

Commits
  • 0e4f9fa chore(release): v1.7.2 (#6414)
  • 4f79aef fix(fetch): enhance fetch API detection; (#6413)
  • 67d1373 chore(release): v1.7.1 (#6411)
  • 733f15f fix(fetch): fixed ReferenceError issue when TextEncoder is not available in t...
  • 3041c61 [Release] v1.7.0 (#6408)
  • 18b13cb chore(docs): add fetch adapter docs; (#6407)
  • e62099b fix(fetch): fixed a possible memory leak in the AbortController for the strea...
  • b49aa8e chore(release): v1.7.0-beta.2 (#6403)
  • d57f03a chore(ci): bump create-pull-request version to fix a bug; (#6405)
  • 097b0d1 chore(ci): add tag resolution for npm releases based on package version; (#6404)
  • Additional commits viewable in compare view

Updates classnames from 2.3.2 to 2.5.1

Changelog

Sourced from classnames's changelog.

v2.5.1 / 2023-12-29

  • Remove workspaces field from package (#350)

v2.5.0 / 2023-12-27

  • Restore ability to pass a TypeScript interface (#341)
  • Add exports field to package (#342)

v2.4.0 / 2023-12-26

  • Use string concatenation to increase performance thanks Jon Koops (#336)

v2.3.3 / 2023-12-21

Commits

Updates jwt-decode from 3.1.2 to 4.0.0

Release notes

Sourced from jwt-decode's releases.

v4.0.0

A new version of the library, including a couple of improvements:

  • No longer include a polyfill for atob, as this is supported in all major browsers (and node environments > 14).
  • Compile to ES2017, dropping support for anything that does not support ES2017 (which should be very limited according to caniuse)
  • Use Node's atob when running on node.
  • Drop support for Node 14 and 16, add support for Node 20.
  • Add support for package.json's exports field, for better CJS/ESM support
  • Reorganize build artifacts for better CJS/ESM support (cjs and esm needs to be their own directory with a cjs specific package.json file)
  • Drop manual UMD bundle creation in index.standalone.ts, but rely on rollup instead.
  • Infer JwtPayload and JwtHeader default types from the header argument by using overloads.

Even though some users might experience breaking changes, mostly because of the exports field, the majority should be able to update without making any changes, assuming the SDK is used in environments with support for atob.

Migration to v4.0.0

The jwtDecode function is now no longer the default export, and is instead provided as a named export. Make sure to update your code in places where you are importing this function:

-import jwtDecodefrom "jwt-decode";
+import { jwtDecode } from "jwt-decode";

v4.0.0-beta.4

Breaking changes

Fixed

v4.0.0-beta.3

Breaking changes

Changed

v4.0.0-beta.2

Changed

Fixed

  • Ensure types are bundled and correctly linked #174 (jonkoops)

v4.0.0-beta.1

Fixed

... (truncated)

Changelog

Sourced from jwt-decode's changelog.

Version 4.0.0

Full Changelog

A new version of the library, including a couple of improvements:

  • No longer include a polyfill for atob, as this is supported in all major browsers (and node environments > 14).
  • Compile to ES2017, dropping support for anything that does not support ES2017 (which should be very limited according to caniuse)
  • Use Node's atob when running on node.
  • Drop support for Node 14 and 16, add support for Node 20.
  • Add support for package.json's exports field, for better CJS/ESM support
  • Reorganize build artifacts for better CJS/ESM support (cjs and esm needs to be their own directory with a cjs specific package.json file)
  • Drop manual UMD bundle creation in index.standalone.ts, but rely on rollup instead.
  • Infer JwtPayload and JwtHeader default types from the header argument by using overloads.

Even though some users might experience breaking changes, mostly because of the exports field, the majority should be able to update without making any changes, assuming the SDK is used in environments with support for atob.

Migration to v4.0.0

The jwtDecode function is now no longer the default export, and is instead provided as a named export. Make sure to update your code in places where you are importing this function:

-import jwtDecode from "jwt-decode";
+import { jwtDecode } from "jwt-decode";

Version 4.0.0-beta.4

Full Changelog

Breaking changes

Fixed

Version 4.0.0-beta.3

Full Changelog

Breaking changes

Changed

Version 4.0.0-beta.2

... (truncated)

Commits
  • 3b2d105 Update CHANGELOG.md
  • bd50db0 Release v4.0.0 (#232)
  • bcfd7da Bump actions/checkout from 3 to 4 (#228)
  • 6ec1cba Bump concurrently from 8.2.0 to 8.2.2 (#226)
  • 807d123 Bump @​typescript-eslint/eslint-plugin from 6.4.1 to 6.9.0 (#229)
  • f68e292 Bump eslint-plugin-import from 2.28.1 to 2.29.0 (#230)
  • b2e7489 Bump eslint-import-resolver-typescript from 3.6.0 to 3.6.1 (#225)
  • ccb6488 Bump lint-staged from 14.0.1 to 15.0.2 (#231)
  • cf3cd4f Bump actions/setup-node from 3 to 4 (#227)
  • 0ce8017 pin babel/core to recent version and bump jest
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by auth0-oss, a new releaser for jwt-decode since your current version.


Updates next-i18next from 12.1.0 to 15.3.0

Release notes

Sourced from next-i18next's releases.

v15.3.0

  • Only overwrite ns config if it provided #2270

v15.2.0

  • add possibility to pass resources directly via config and set localePath to null

v15.1.2

  • fix: Install error with react-i18next v14 #2248

v15.1.1

  • optimize/fix last change for turbo

v15.1.0

  • try to fix for turbo #2222

v15.0.0

  • refactor: reuse existing i18next instance #2226 -> If you use client side pages (not lazy loading translations), like described here, make sure you set the partialBundledLanguages option to true, like here.

v14.0.3

  • fix: correct namespacesRequired type in serverSideTranslations #2203

v14.0.2

  • try to fix namespacesRequired in serverSideTranslations is not type-safe anymore #2201

v14.0.1

  • try to fix namespacesRequired in serverSideTranslations is not type-safe anymore #2201

v14.0.0

  • requires i18next >= v23.0.1
  • requires react-i18next >= v13.0.0

v13.3.0

  • using a custom backend on server side should also lazy load the passed namespaces

v13.2.2

  • pageProps may be undefined on strange setups #2109"

v13.2.1

  • types: fix serverSideTranslations args #2104"

v13.2.0

  • types: Update serverSideTranslation args type #2097"

v13.1.6

  • fix: allow user provided affixes to be used without providing localeStructure #2100"

v13.1.5

  • #2089, more stable impelementation of "feat(server-side): custom default config path #2084"

v13.1.4

... (truncated)

Changelog

Sourced from next-i18next's changelog.

15.3.0

  • Only overwrite ns config if it provided #2270

15.2.0

  • add possibility to pass resources directly via config and set localePath to null

15.1.2

  • fix: Install error with react-i18next v14 #2248

15.1.1

  • optimize/fix last change for turbo

15.1.0

  • try to fix for turbo #2222

15.0.0

  • refactor: reuse existing i18next instance #2226 -> If you use client side pages (not lazy loading translations), like described here, make sure you set the partialBundledLanguages option to true, like here.

14.0.3

  • fix: correct namespacesRequired type in serverSideTranslations #2203

14.0.2

  • try to fix namespacesRequired in serverSideTranslations is not type-safe anymore #2201

14.0.0

  • requires i18next >= v23.0.1
  • requires react-i18next >= v13.0.0

Breaking changes

i18next 23.0.0 dropped support for older browsers. From nextjs 13, you can use the transpilePackages to avoid issues.

/** @type {import('next').NextConfig} */
const nextConfig = {
  transpilePackages: ['i18next'],
}
module.exports = nextConfig
</tr></table> 

... (truncated)

Commits

Updates react from 18.2.0 to 18.3.1

Release notes

Sourced from react's releases.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Changelog

Sourced from react's changelog.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Commits
Maintainer changes

This version was pushed to npm by react-bot, a new releaser for react since your current version.


Updates @types/react from 18.0.28 to 18.3.3

Commits

Updates react-dom from 18.2.0 to 18.3.1

Release notes

Sourced from react-dom's releases.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Changelog

Sourced from react-dom's changelog.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699...

    Description has been truncated

…ates

Bumps the production group with 27 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `3.1.0` | `3.6.0` |
| [@sentry/nextjs](https://github.com/getsentry/sentry-javascript) | `7.53.1` | `8.12.0` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `4.29.5` | `5.48.0` |
| [axios](https://github.com/axios/axios) | `1.4.0` | `1.7.2` |
| [classnames](https://github.com/JedWatson/classnames) | `2.3.2` | `2.5.1` |
| [jwt-decode](https://github.com/auth0/jwt-decode) | `3.1.2` | `4.0.0` |
| [next-i18next](https://github.com/i18next/next-i18next) | `12.1.0` | `15.3.0` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `18.2.0` | `18.3.1` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.0.28` | `18.3.3` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `18.2.0` | `18.3.1` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.2.4` | `18.3.0` |
| [react-error-boundary](https://github.com/bvaughn/react-error-boundary) | `3.1.4` | `4.0.13` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.43.9` | `7.52.0` |
| [yup](https://github.com/jquense/yup) | `1.2.0` | `1.4.0` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `6.7.5` | `7.14.1` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `6.7.5` | `7.14.1` |
| [eslint](https://github.com/eslint/eslint) | `8.51.0` | `9.5.0` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `13.5.4` | `14.2.4` |
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `9.0.0` | `9.1.0` |
| [eslint-plugin-no-relative-import-paths](https://github.com/MelvinVermeer/eslint-plugin-no-relative-import-paths) | `1.5.3` | `1.5.4` |
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | `5.0.1` | `5.1.3` |
| [eslint-plugin-unused-imports](https://github.com/sweepline/eslint-plugin-unused-imports) | `3.0.0` | `4.0.0` |
| [prettier](https://github.com/prettier/prettier) | `3.0.3` | `3.3.2` |
| [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) | `0.5.6` | `0.6.5` |
| [@emotion/react](https://github.com/emotion-js/emotion) | `11.11.0` | `11.11.4` |
| [@headlessui/react](https://github.com/tailwindlabs/headlessui/tree/HEAD/packages/@headlessui-react) | `1.7.14` | `2.1.0` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `6.11.1` | `6.24.0` |



Updates `@hookform/resolvers` from 3.1.0 to 3.6.0
- [Release notes](https://github.com/react-hook-form/resolvers/releases)
- [Commits](react-hook-form/resolvers@v3.1.0...v3.6.0)

Updates `@sentry/nextjs` from 7.53.1 to 8.12.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@7.53.1...8.12.0)

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

Updates `axios` from 1.4.0 to 1.7.2
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.4.0...v1.7.2)

Updates `classnames` from 2.3.2 to 2.5.1
- [Changelog](https://github.com/JedWatson/classnames/blob/main/HISTORY.md)
- [Commits](JedWatson/classnames@v2.3.2...v2.5.1)

Updates `jwt-decode` from 3.1.2 to 4.0.0
- [Release notes](https://github.com/auth0/jwt-decode/releases)
- [Changelog](https://github.com/auth0/jwt-decode/blob/main/CHANGELOG.md)
- [Commits](auth0/jwt-decode@v3.1.2...v4.0.0)

Updates `next-i18next` from 12.1.0 to 15.3.0
- [Release notes](https://github.com/i18next/next-i18next/releases)
- [Changelog](https://github.com/i18next/next-i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/next-i18next@v12.1.0...v15.3.0)

Updates `react` from 18.2.0 to 18.3.1
- [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/v18.3.1/packages/react)

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

Updates `react-dom` from 18.2.0 to 18.3.1
- [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/v18.3.1/packages/react-dom)

Updates `@types/react-dom` from 18.2.4 to 18.3.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `react-error-boundary` from 3.1.4 to 4.0.13
- [Release notes](https://github.com/bvaughn/react-error-boundary/releases)
- [Commits](bvaughn/react-error-boundary@v3.1.4...4.0.13)

Updates `react-hook-form` from 7.43.9 to 7.52.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.43.9...v7.52.0)

Updates `yup` from 1.2.0 to 1.4.0
- [Release notes](https://github.com/jquense/yup/releases)
- [Changelog](https://github.com/jquense/yup/blob/master/CHANGELOG.md)
- [Commits](jquense/yup@v1.2.0...v1.4.0)

Updates `@typescript-eslint/eslint-plugin` from 6.7.5 to 7.14.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/v7.14.1/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 6.7.5 to 7.14.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/v7.14.1/packages/parser)

Updates `eslint` from 8.51.0 to 9.5.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.51.0...v9.5.0)

Updates `eslint-config-next` from 13.5.4 to 14.2.4
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v14.2.4/packages/eslint-config-next)

Updates `eslint-config-prettier` from 9.0.0 to 9.1.0
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-config-prettier@v9.0.0...v9.1.0)

Updates `eslint-plugin-no-relative-import-paths` from 1.5.3 to 1.5.4
- [Release notes](https://github.com/MelvinVermeer/eslint-plugin-no-relative-import-paths/releases)
- [Commits](MelvinVermeer/eslint-plugin-no-relative-import-paths@v1.5.3...v1.5.4)

Updates `eslint-plugin-prettier` from 5.0.1 to 5.1.3
- [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/master/CHANGELOG.md)
- [Commits](prettier/eslint-plugin-prettier@v5.0.1...v5.1.3)

Updates `eslint-plugin-unused-imports` from 3.0.0 to 4.0.0
- [Commits](https://github.com/sweepline/eslint-plugin-unused-imports/commits)

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

Updates `prettier-plugin-tailwindcss` from 0.5.6 to 0.6.5
- [Release notes](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/prettier-plugin-tailwindcss@v0.5.6...v0.6.5)

Updates `@emotion/react` from 11.11.0 to 11.11.4
- [Release notes](https://github.com/emotion-js/emotion/releases)
- [Changelog](https://github.com/emotion-js/emotion/blob/main/CHANGELOG.md)
- [Commits](https://github.com/emotion-js/emotion/compare/@emotion/[email protected]...@emotion/[email protected])

Updates `@headlessui/react` from 1.7.14 to 2.1.0
- [Release notes](https://github.com/tailwindlabs/headlessui/releases)
- [Changelog](https://github.com/tailwindlabs/headlessui/blob/main/packages/@headlessui-react/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/headlessui/commits/@headlessui/[email protected]/packages/@headlessui-react)

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

---
updated-dependencies:
- dependency-name: "@hookform/resolvers"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: "@sentry/nextjs"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: "@tanstack/react-query"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: axios
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: classnames
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: jwt-decode
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: next-i18next
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: react
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: react-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: react-error-boundary
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: react-hook-form
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: yup
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: eslint
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: eslint-config-next
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: eslint-config-prettier
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: eslint-plugin-no-relative-import-paths
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production
- dependency-name: eslint-plugin-prettier
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: eslint-plugin-unused-imports
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: prettier
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: prettier-plugin-tailwindcss
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: "@emotion/react"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production
- dependency-name: "@headlessui/react"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production
...

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 Jun 26, 2024
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