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

Bump the non-majors group across 1 directory with 50 updates #266

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 8, 2024

Bumps the non-majors group with 50 updates in the / directory:

Package From To
@hookform/resolvers 3.3.4 3.9.0
@radix-ui/react-accordion 1.1.2 1.2.0
@radix-ui/react-checkbox 1.0.4 1.1.1
@radix-ui/react-dialog 1.0.5 1.1.1
@radix-ui/react-label 2.0.2 2.1.0
@radix-ui/react-popover 1.0.7 1.1.1
@radix-ui/react-select 2.0.0 2.1.1
@radix-ui/react-slider 1.1.2 1.2.0
@radix-ui/react-slot 1.0.2 1.1.0
@radix-ui/react-switch 1.0.3 1.1.0
@radix-ui/react-tabs 1.0.4 1.1.0
@radix-ui/react-toast 1.1.5 1.2.1
@radix-ui/react-tooltip 1.0.7 1.1.2
chart.js 4.4.1 4.4.3
clsx 2.1.0 2.1.1
firebase 10.8.0 10.12.3
i18next 23.8.2 23.11.5
jotai 2.6.4 2.8.4
lucide-react 0.323.0 0.403.0
nanoid 5.0.5 5.0.7
next 14.1.0 14.2.4
next-i18n-router 5.2.1 5.5.1
nextjs13-progress 1.2.5 1.3.3
react 18.2.0 18.3.1
@types/react 18.2.55 18.3.3
react-dom 18.2.0 18.3.1
@types/react-dom 18.2.18 18.3.0
react-hook-form 7.50.1 7.52.1
react-i18next 14.0.5 14.1.2
sharp 0.33.2 0.33.4
swr 2.2.4 2.2.5
tailwind-merge 2.2.1 2.4.0
use-sound 4.0.1 4.0.3
valibot 0.28.0 0.36.0
@next/bundle-analyzer 14.1.0 14.2.4
autoprefixer 10.4.17 10.4.19
eslint-config-next 14.1.0 14.2.4
eslint-plugin-jsx-a11y 6.8.0 6.9.0
eslint-plugin-react 7.33.2 7.34.3
eslint-plugin-react-hooks 4.6.0 4.6.2
husky 9.0.10 9.0.11
lint-staged 15.2.2 15.2.7
postcss 8.4.34 8.4.39
prettier 3.2.5 3.3.2
prettier-plugin-tailwindcss 0.5.11 0.6.5
stylelint 16.2.1 16.6.1
stylelint-config-standard 36.0.0 36.0.1
tailwindcss 3.4.1 3.4.4
typescript 5.3.3 5.5.3
vite 5.0.12 5.3.3

Updates @hookform/resolvers from 3.3.4 to 3.9.0

Release notes

Sourced from @​hookform/resolvers's releases.

v3.9.0

3.9.0 (2024-07-05)

Features

  • fluentvalidation-ts: add fluentvalidation-ts resolver (#702) (5fc1e63)
import { useForm } from 'react-hook-form';
import { fluentValidationResolver } from '@hookform/resolvers/fluentvalidation-ts';
import { Validator } from 'fluentvalidation-ts';
class FormDataValidator extends Validator<FormData> {
constructor() {
super();
this.ruleFor('username')
  .notEmpty()
  .withMessage('username is a required field');
this.ruleFor('password')
  .notEmpty()
  .withMessage('password is a required field');

}
}
const App = () => {
const { register, handleSubmit } = useForm({
resolver: fluentValidationResolver(new FormDataValidator()),
});
return (
<form onSubmit={handleSubmit((d) => console.log(d))}>
<input {...register('username')} />
{errors.username && <span role="alert">{errors.username.message}</span>}
<input {...register('password')} />
{errors.password && <span role="alert">{errors.password.message}</span>}
<button type="submit">submit</button>
</form>
);
};

v3.8.0

3.8.0 (2024-07-05)

... (truncated)

Commits
  • 5fc1e63 feat(fluentvalidation-ts): add fluentvalidation-ts resolver (#702)
  • 039385e ci: node (#701)
  • 1c277bb ci: fix publish step (#700)
  • 18e423f feat: add typeschema resolver (#699)
  • 4b9acb7 Revert "fix: move back to in-build set and remove lodash.set (#685)"
  • e8e0f80 feat(typeboxResolver): make TypeBox resolver work with compiled schema (#674)
  • c0d528b feat: add VineJS resolver (#677)
  • a3e50c6 fix(zodResolver): cannot read properties of undefined (reading 'length')
  • f0174e0 chore: update valibot dependency to version >=0.33.0 (#695)
  • f7a4fd4 Update README.md
  • Additional commits viewable in compare view

Updates @radix-ui/react-accordion from 1.1.2 to 1.2.0

Commits
Maintainer changes

This version was pushed to npm by vladmoroz, a new releaser for @​radix-ui/react-accordion since your current version.


Updates @radix-ui/react-checkbox from 1.0.4 to 1.1.1

Commits
Maintainer changes

This version was pushed to npm by vladmoroz, a new releaser for @​radix-ui/react-checkbox since your current version.


Updates @radix-ui/react-dialog from 1.0.5 to 1.1.1

Commits
Maintainer changes

This version was pushed to npm by vladmoroz, a new releaser for @​radix-ui/react-dialog since your current version.


Updates @radix-ui/react-label from 2.0.2 to 2.1.0

Commits
Maintainer changes

This version was pushed to npm by vladmoroz, a new releaser for @​radix-ui/react-label since your current version.


Updates @radix-ui/react-popover from 1.0.7 to 1.1.1

Commits
Maintainer changes

This version was pushed to npm by vladmoroz, a new releaser for @​radix-ui/react-popover since your current version.


Updates @radix-ui/react-select from 2.0.0 to 2.1.1

Commits
Maintainer changes

This version was pushed to npm by vladmoroz, a new releaser for @​radix-ui/react-select since your current version.


Updates @radix-ui/react-slider from 1.1.2 to 1.2.0

Commits
Maintainer changes

This version was pushed to npm by vladmoroz, a new releaser for @​radix-ui/react-slider since your current version.


Updates @radix-ui/react-slot from 1.0.2 to 1.1.0

Commits
Maintainer changes

This version was pushed to npm by vladmoroz, a new releaser for @​radix-ui/react-slot since your current version.


Updates @radix-ui/react-switch from 1.0.3 to 1.1.0

Commits
Maintainer changes

This version was pushed to npm by vladmoroz, a new releaser for @​radix-ui/react-switch since your current version.


Updates @radix-ui/react-tabs from 1.0.4 to 1.1.0

Commits
Maintainer changes

This version was pushed to npm by vladmoroz, a new releaser for @​radix-ui/react-tabs since your current version.


Updates @radix-ui/react-toast from 1.1.5 to 1.2.1

Commits
Maintainer changes

This version was pushed to npm by vladmoroz, a new releaser for @​radix-ui/react-toast since your current version.


Updates @radix-ui/react-tooltip from 1.0.7 to 1.1.2

Commits
Maintainer changes

This version was pushed to npm by vladmoroz, a new releaser for @​radix-ui/react-tooltip since your current version.


Updates chart.js from 4.4.1 to 4.4.3

Release notes

Sourced from chart.js's releases.

v4.4.3

Essential Links

  • #11754 Fix error when object prototype is frozen

Bugs Fixed

  • #11764 do not attempt to clear canvas if one does not exist
  • #11755 #11450 hide bar by dataindex
  • #11690 Create parsed object with correct keys
  • #11707 platform.isAttached should return false if canvas is false-y

Documentation

Development

  • #11776 Bump to 4.4.3
  • #11773 Bump pnpm/action-setup from 3.0.0 to 4.0.0
  • #11720 Bump follow-redirects from 1.15.4 to 1.15.6

Thanks to @​DAcodedBEAT, @​EricWittrock, @​LeeLenaleee, @​LiamSwayne, @​dependabot and @​dependabot[bot]

v4.4.2

Essential Links

Bugs Fixed

  • #11685 addListener and removeListener should be only invoked on truthy values
  • #11682 fix #11503, autoskipping 0 tick when min is below 0
  • #11616 fix(#11615): fix calculating caretX position on stacked bar with index interaction.

Types

  • #11662 bugfix #10896 - Changed 'r' to optional for BubbleChart

Documentation

... (truncated)

Commits

Updates clsx from 2.1.0 to 2.1.1

Release notes

Sourced from clsx's releases.

v2.1.1

Patches

  • (types) Include bigint in ClassValue type: (#96): 3d960ab Accommodates recent @types/react changes to ReactNode. Thank you @​ViliamKopecky~!

Chores

  • Add licenses.dev badge: 684509c This service recursively analyzes entire dependency graphs to ensure that a package (or your project) is using permissive licenses. For example, here's a results table for polka@next and a larger astro example.

Full Changelog: lukeed/clsx@v2.1.0...v2.1.1

Commits

Updates firebase from 10.8.0 to 10.12.3

Release notes

Sourced from firebase's releases.

[email protected]

For more detailed release notes, see Firebase JavaScript SDK Release Notes.

What's Changed

@​firebase/analytics@​0.10.5

Patch Changes

  • Updated dependencies [192561b15]:
  • @​firebase/util@​1.9.7
  • @​firebase/component@​0.6.8
  • @​firebase/installations@​0.6.8

@​firebase/analytics-compat@​0.2.11

Patch Changes

  • Updated dependencies [192561b15]:
  • @​firebase/util@​1.9.7
  • @​firebase/analytics@​0.10.5
  • @​firebase/component@​0.6.8

@​firebase/app@​0.10.6

Patch Changes

  • ed1c99379 #8335 - Guard the use of FinalizationRegistry in FirebaseServerApp initialization based on the availability of FinalizationRegistry in the runtime.

  • 192561b15 #8315 (fixes #8299) - fix: server app should initialize in web workers

  • f01806221 #8341 - The FirebaseServerAppSettings.name field inherited from FirebaseAppSettings is now omitted instead of overloading the value as undefined. This fixes a TypeScript compilation error. For more information, see [GitHub Issue #8336](firebase/firebase-js-sdk#8336).

  • Updated dependencies [192561b15]:

  • @​firebase/util@​1.9.7

  • @​firebase/component@​0.6.8

@​firebase/app-check@​0.8.5

Patch Changes

@​firebase/app-check-compat@​0.3.12

Patch Changes

... (truncated)

Commits
  • 52f8deb Version Packages (#8345)
  • 6d2775b Merge master into release
  • 766a53e Fix typos in VertexAI errors docs (#8346)
  • c60aac1 VertexAI: add test script to run unit tests without updating mock responses (...
  • b73a0cc Merge master into release
  • f018062 Fix FirebaseServerApp Typescript exactOptionalPropertyTypes error (#8341)
  • 5c75bec Update the URL for the Metric Service (#8261)
  • ed1c993 FirebaseServerAppImpl: guard use of FinalizationRegistry based on its availab...
  • 192561b fix: browser detection (#8315)
  • ecadbe3 Fix multi-tab snapshot listener metadata sync issue (#8339)
  • Additional commits viewable in compare view

Updates i18next from 23.8.2 to 23.11.5

Release notes

Sourced from i18next's releases.

v23.11.5

  • perf: use Array.isArray() 2193
  • perf: trim keys once 2194

v23.11.4

  • perf(interpolator): use object deconstruction 2181

v23.11.3

  • fix: Unsupported language is automatically added to preload option 2178

v23.11.2

  • allow defaultValue in nested translation 2174

v23.11.1

  • types: remove const from ParseKeys Context type parameter and disable skipLibCheck 2169

v23.11.0

  • Fix typing performance regression 2166

v23.10.1

v23.10.0

  • Add 'isInitializing' property so we're able to detect init() was already called 2141

v23.9.0

  • types: support nested keys in InterpolationMap 2140 fixes 2014

v23.8.3

  • prevent resource mutation when using addResourceBundle 2081
Changelog

Sourced from i18next's changelog.

23.11.5

  • perf: use Array.isArray() 2193
  • perf: trim keys once 2194

23.11.4

  • perf(interpolator): use object deconstruction 2181

23.11.3

  • fix: Unsupported language is automatically added to preload option 2178

23.11.2

  • allow defaultValue in nested translation 2174

23.11.1

  • types: remove const from ParseKeys Context type parameter and disable skipLibCheck 2169

23.11.0

  • Fix typing performance regression 2166

23.10.1

23.10.0

  • Add 'isInitializing' property so we're able to detect init() was already called 2141

23.9.0

  • types: support nested keys in InterpolationMap 2140 fixes 2014

23.8.3

  • prevent resource mutation when using addResourceBundle 2081
Commits

Updates jotai from 2.6.4 to 2.8.4

Release notes

Sourced from jotai's releases.

v2.8.4

This changes the behavior of async atom with abort signal on unmount to fix some use cases.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.8.3...v2.8.4

v2.8.3

The improvement for atomWithStorage in v2.8.2 contained a bug, which is fixed in this version.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.8.2...v2.8.3

v2.8.2

This fixes another edge case and improves utils for more flexibility.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.8.1...v2.8.2

v2.8.1

This fixes a regression in v2.6.4 and a regression in v2.7.0.

What's Changed

New Contributors

... (truncated)

Commits

Updates lucide-react from 0.323.0 to 0.403.0

Release notes

Sourced from lucide-react's releases.

New icons 0.403.0

New icons 🎨

New icons 0.402.0

New icons 🎨

New icons 0.401.0

New icons 🎨

Modified Icons 🔨

... (truncated)

Commits

Updates nanoid from 5.0.5 to 5.0.7

Release notes

Sourced from nanoid's releases.

5.0.7

5.0.6

  • Fixed React Native support.
Changelog

Sourced from nanoid's changelog.

5.0.7

5.0.6

  • Fixed React Native support.
Commits

Updates next from 14.1.0 to 14.2.4

Release notes

Sourced from next's releases.

v14.2.4

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • fix: ensure route handlers properly track dynamic access (#66446)
  • fix NextRequest proxy in edge runtime (#66551)
  • Fix next/dynamic with babel and src dir (#65177)
  • Use vercel deployment url for metadataBase fallbacks (#65089)
  • fix(next/image): detect react@19 for fetchPriority prop (#65235)
  • Fix loading navigation with metadata and prefetch (#66447)
  • prevent duplicate RSC fetch when action redirects (#66620)
  • ensure router cache updates reference the latest cache values (#66681)
  • Prevent append of trailing slash in cases where path ends with a file extension (#66636)
  • Fix inconsistency with 404 getStaticProps cache-control (#66674)
  • Use addDependency to track metadata route file changes (#66714)
  • Add timeout/retry handling for fetch cache (#66652)
  • fix: app-router prefetch crash when an invalid URL is passed to Link (#66755)

Credits

Huge thanks to @​ztanner, @​ijjk, @​wbinnssmith, @​huozhi, and @​lubieowoce for helping!

Commits
  • 3078441 v14.2.4
  • 0538a0d [not a backport] fix lint errors
  • 2807fb4 fix: app-router prefetch crash when an invalid URL is passed to Link (#66755)
  • efb476e Add timeout/retry handling for fetch cache (#66652)
  • c16a3f9 Use addDependency to track metadata route file changes (#66714)
  • 942e45a Fix inconsistency with 404 getStaticProps cache-control (#66674)
  • 9728a35 Prevent append of trailing slash in cases where path ends with a file extensi...
  • 44661c2 ensure router cache updates reference the latest cache values (#66681)
  • f7ec039 prevent duplicate RSC fetch when action redirects (#66620)
  • dd6ab93 Fix loading navigation with metadata and prefetch (#66447)
  • Additional commits viewable in compare view

Updates next-i18n-router from 5.2.1 to 5.5.1

Release notes

Sourced from next-i18n-router's releases.

v5.5.1

  • Fixes bug that caused an unnecessary extra redirect due to trailing slash in pathname (#79)

v5.5.0

  • Add cookieOptions config option for setting custom Set-Cookie attributes

v5.4.3

  • Remove console warning in localeDetector when invalid accept-language header present

v5.4.2

  • Fixes bug where noPrefix did not use localeDetector when no cookie present (#70)

v5.4.1

  • Update next dev dependency to 14.2.2

v5.4.0

  • Add config option noPrefix for hiding the locale prefix in the pathname.
  • useCurrentLocale now checks the document cookie for the current locale prior to checking the pathname.

v5.3.1

  • Fixes a TypeScript compilation issue that occurred during release of v5.3.0.

v5.3.0

  • Change default of serverSetCookie to "always".
  • Add "never" option to serverSetCookie. This is the same as undefined in previous versions.
Changelog

Sourced from next-i18n-router's changelog.

5.5.1

  • Fixes bug that caused an unnecessary extra redirect due to trailing slash in pathname

5.5.0

  • Add cookieOptions config option for setting custom Set-Cookie attributes

5.4.3

  • Remove console warning in localeDetector when invalid accept-language header present

5.4.2

  • Fixes bug where noPrefix did not use localeDetector when no cookie present

5.4.1

  • Update next dev dependency to 14.2.2

5.4.0

  • Add config option noPrefix for hiding the locale prefix in the pathname.
  • useCurrentLocale now checks the document cookie for the current locale prior to checking the pathname.

5.3.0

  • Change default of serverSetCookie to "always".
  • Add "never" option to serverSetCookie. This is the same as undefined in previous versions.
Commits
  • b724ad9 upgrade to 5.5.1
  • 1784462 prevent trailing slash redirect
  • 2a486ae add FAQ to REA...

    Description has been truncated

Bumps the non-majors group with 50 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `3.3.4` | `3.9.0` |
| [@radix-ui/react-accordion](https://github.com/radix-ui/primitives) | `1.1.2` | `1.2.0` |
| [@radix-ui/react-checkbox](https://github.com/radix-ui/primitives) | `1.0.4` | `1.1.1` |
| [@radix-ui/react-dialog](https://github.com/radix-ui/primitives) | `1.0.5` | `1.1.1` |
| [@radix-ui/react-label](https://github.com/radix-ui/primitives) | `2.0.2` | `2.1.0` |
| [@radix-ui/react-popover](https://github.com/radix-ui/primitives) | `1.0.7` | `1.1.1` |
| [@radix-ui/react-select](https://github.com/radix-ui/primitives) | `2.0.0` | `2.1.1` |
| [@radix-ui/react-slider](https://github.com/radix-ui/primitives) | `1.1.2` | `1.2.0` |
| [@radix-ui/react-slot](https://github.com/radix-ui/primitives) | `1.0.2` | `1.1.0` |
| [@radix-ui/react-switch](https://github.com/radix-ui/primitives) | `1.0.3` | `1.1.0` |
| [@radix-ui/react-tabs](https://github.com/radix-ui/primitives) | `1.0.4` | `1.1.0` |
| [@radix-ui/react-toast](https://github.com/radix-ui/primitives) | `1.1.5` | `1.2.1` |
| [@radix-ui/react-tooltip](https://github.com/radix-ui/primitives) | `1.0.7` | `1.1.2` |
| [chart.js](https://github.com/chartjs/Chart.js) | `4.4.1` | `4.4.3` |
| [clsx](https://github.com/lukeed/clsx) | `2.1.0` | `2.1.1` |
| [firebase](https://github.com/firebase/firebase-js-sdk) | `10.8.0` | `10.12.3` |
| [i18next](https://github.com/i18next/i18next) | `23.8.2` | `23.11.5` |
| [jotai](https://github.com/pmndrs/jotai) | `2.6.4` | `2.8.4` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.323.0` | `0.403.0` |
| [nanoid](https://github.com/ai/nanoid) | `5.0.5` | `5.0.7` |
| [next](https://github.com/vercel/next.js) | `14.1.0` | `14.2.4` |
| [next-i18n-router](https://github.com/i18nexus/next-i18n-router) | `5.2.1` | `5.5.1` |
| [nextjs13-progress](https://github.com/designly1/nextjs13-progress) | `1.2.5` | `1.3.3` |
| [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.2.55` | `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.18` | `18.3.0` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.50.1` | `7.52.1` |
| [react-i18next](https://github.com/i18next/react-i18next) | `14.0.5` | `14.1.2` |
| [sharp](https://github.com/lovell/sharp) | `0.33.2` | `0.33.4` |
| [swr](https://github.com/vercel/swr) | `2.2.4` | `2.2.5` |
| [tailwind-merge](https://github.com/dcastil/tailwind-merge) | `2.2.1` | `2.4.0` |
| [use-sound](https://github.com/joshwcomeau/use-sound) | `4.0.1` | `4.0.3` |
| [valibot](https://github.com/fabian-hiller/valibot) | `0.28.0` | `0.36.0` |
| [@next/bundle-analyzer](https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer) | `14.1.0` | `14.2.4` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.17` | `10.4.19` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `14.1.0` | `14.2.4` |
| [eslint-plugin-jsx-a11y](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y) | `6.8.0` | `6.9.0` |
| [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) | `7.33.2` | `7.34.3` |
| [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks) | `4.6.0` | `4.6.2` |
| [husky](https://github.com/typicode/husky) | `9.0.10` | `9.0.11` |
| [lint-staged](https://github.com/okonet/lint-staged) | `15.2.2` | `15.2.7` |
| [postcss](https://github.com/postcss/postcss) | `8.4.34` | `8.4.39` |
| [prettier](https://github.com/prettier/prettier) | `3.2.5` | `3.3.2` |
| [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) | `0.5.11` | `0.6.5` |
| [stylelint](https://github.com/stylelint/stylelint) | `16.2.1` | `16.6.1` |
| [stylelint-config-standard](https://github.com/stylelint/stylelint-config-standard) | `36.0.0` | `36.0.1` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.4.1` | `3.4.4` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.3.3` | `5.5.3` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.0.12` | `5.3.3` |



Updates `@hookform/resolvers` from 3.3.4 to 3.9.0
- [Release notes](https://github.com/react-hook-form/resolvers/releases)
- [Commits](react-hook-form/resolvers@v3.3.4...v3.9.0)

Updates `@radix-ui/react-accordion` from 1.1.2 to 1.2.0
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-checkbox` from 1.0.4 to 1.1.1
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-dialog` from 1.0.5 to 1.1.1
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-label` from 2.0.2 to 2.1.0
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-popover` from 1.0.7 to 1.1.1
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-select` from 2.0.0 to 2.1.1
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-slider` from 1.1.2 to 1.2.0
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-slot` from 1.0.2 to 1.1.0
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-switch` from 1.0.3 to 1.1.0
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-tabs` from 1.0.4 to 1.1.0
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-toast` from 1.1.5 to 1.2.1
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-tooltip` from 1.0.7 to 1.1.2
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `chart.js` from 4.4.1 to 4.4.3
- [Release notes](https://github.com/chartjs/Chart.js/releases)
- [Commits](chartjs/Chart.js@v4.4.1...v4.4.3)

Updates `clsx` from 2.1.0 to 2.1.1
- [Release notes](https://github.com/lukeed/clsx/releases)
- [Commits](lukeed/clsx@v2.1.0...v2.1.1)

Updates `firebase` from 10.8.0 to 10.12.3
- [Release notes](https://github.com/firebase/firebase-js-sdk/releases)
- [Changelog](https://github.com/firebase/firebase-js-sdk/blob/master/CHANGELOG.md)
- [Commits](https://github.com/firebase/firebase-js-sdk/compare/[email protected]@10.12.3)

Updates `i18next` from 23.8.2 to 23.11.5
- [Release notes](https://github.com/i18next/i18next/releases)
- [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/i18next@v23.8.2...v23.11.5)

Updates `jotai` from 2.6.4 to 2.8.4
- [Release notes](https://github.com/pmndrs/jotai/releases)
- [Commits](pmndrs/jotai@v2.6.4...v2.8.4)

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

Updates `nanoid` from 5.0.5 to 5.0.7
- [Release notes](https://github.com/ai/nanoid/releases)
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md)
- [Commits](ai/nanoid@5.0.5...5.0.7)

Updates `next` from 14.1.0 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](vercel/next.js@v14.1.0...v14.2.4)

Updates `next-i18n-router` from 5.2.1 to 5.5.1
- [Release notes](https://github.com/i18nexus/next-i18n-router/releases)
- [Changelog](https://github.com/i18nexus/next-i18n-router/blob/main/CHANGELOG.md)
- [Commits](i18nexus/next-i18n-router@v5.2.1...v5.5.1)

Updates `nextjs13-progress` from 1.2.5 to 1.3.3
- [Commits](https://github.com/designly1/nextjs13-progress/commits)

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.2.55 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.18 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-hook-form` from 7.50.1 to 7.52.1
- [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.50.1...v7.52.1)

Updates `react-i18next` from 14.0.5 to 14.1.2
- [Changelog](https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/react-i18next@v14.0.5...v14.1.2)

Updates `sharp` from 0.33.2 to 0.33.4
- [Release notes](https://github.com/lovell/sharp/releases)
- [Changelog](https://github.com/lovell/sharp/blob/main/docs/changelog.md)
- [Commits](lovell/sharp@v0.33.2...v0.33.4)

Updates `swr` from 2.2.4 to 2.2.5
- [Release notes](https://github.com/vercel/swr/releases)
- [Commits](vercel/swr@v2.2.4...v2.2.5)

Updates `tailwind-merge` from 2.2.1 to 2.4.0
- [Release notes](https://github.com/dcastil/tailwind-merge/releases)
- [Commits](dcastil/tailwind-merge@v2.2.1...v2.4.0)

Updates `use-sound` from 4.0.1 to 4.0.3
- [Release notes](https://github.com/joshwcomeau/use-sound/releases)
- [Commits](https://github.com/joshwcomeau/use-sound/commits)

Updates `valibot` from 0.28.0 to 0.36.0
- [Release notes](https://github.com/fabian-hiller/valibot/releases)
- [Commits](fabian-hiller/valibot@v0.28.0...v0.36.0)

Updates `@next/bundle-analyzer` from 14.1.0 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/next-bundle-analyzer)

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

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

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

Updates `eslint-config-next` from 14.1.0 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-plugin-jsx-a11y` from 6.8.0 to 6.9.0
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/main/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-jsx-a11y@v6.8.0...v6.9.0)

Updates `eslint-plugin-react` from 7.33.2 to 7.34.3
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-react@v7.33.2...v7.34.3)

Updates `eslint-plugin-react-hooks` from 4.6.0 to 4.6.2
- [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 `husky` from 9.0.10 to 9.0.11
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@v9.0.10...v9.0.11)

Updates `lint-staged` from 15.2.2 to 15.2.7
- [Release notes](https://github.com/okonet/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v15.2.2...v15.2.7)

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

Updates `prettier` from 3.2.5 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.2.5...3.3.2)

Updates `prettier-plugin-tailwindcss` from 0.5.11 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.11...v0.6.5)

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

Updates `stylelint-config-standard` from 36.0.0 to 36.0.1
- [Release notes](https://github.com/stylelint/stylelint-config-standard/releases)
- [Changelog](https://github.com/stylelint/stylelint-config-standard/blob/main/CHANGELOG.md)
- [Commits](stylelint/stylelint-config-standard@36.0.0...36.0.1)

Updates `tailwindcss` from 3.4.1 to 3.4.4
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.4/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.4.1...v3.4.4)

Updates `typescript` from 5.3.3 to 5.5.3
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.3.3...v5.5.3)

Updates `vite` from 5.0.12 to 5.3.3
- [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/v5.3.3/packages/vite)

---
updated-dependencies:
- dependency-name: "@hookform/resolvers"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@radix-ui/react-accordion"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@radix-ui/react-checkbox"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@radix-ui/react-dialog"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@radix-ui/react-label"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@radix-ui/react-popover"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@radix-ui/react-select"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@radix-ui/react-slider"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@radix-ui/react-slot"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@radix-ui/react-switch"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@radix-ui/react-tabs"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@radix-ui/react-toast"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@radix-ui/react-tooltip"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: chart.js
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: clsx
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: firebase
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: i18next
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: jotai
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: lucide-react
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: nanoid
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: next
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: next-i18n-router
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: nextjs13-progress
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: react
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: react-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: react-hook-form
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: react-i18next
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: sharp
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: swr
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: tailwind-merge
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: use-sound
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: valibot
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@next/bundle-analyzer"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: autoprefixer
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: eslint-config-next
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: eslint-plugin-jsx-a11y
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: eslint-plugin-react
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: eslint-plugin-react-hooks
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: husky
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: prettier-plugin-tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: stylelint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: stylelint-config-standard
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-majors
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jul 8, 2024
Copy link

vercel bot commented Jul 8, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
dice-spec-v2 ❌ Failed (Inspect) Jul 8, 2024 10:52pm

Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 15, 2024

Superseded by #267.

@dependabot dependabot bot closed this Jul 15, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/non-majors-c5b8da3413 branch July 15, 2024 22:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants