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 49 updates #271

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 12, 2024

Bumps the non-majors group with 49 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.5
i18next 23.8.2 23.12.3
jotai 2.6.4 2.9.2
lucide-react 0.323.0 0.427.0
nanoid 5.0.5 5.0.7
next 14.1.0 14.2.5
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.2
sharp 0.33.2 0.33.4
swr 2.2.4 2.2.5
tailwind-merge 2.2.1 2.5.2
use-sound 4.0.1 4.0.3
valibot 0.28.0 0.37.0
@next/bundle-analyzer 14.1.0 14.2.5
autoprefixer 10.4.17 10.4.20
eslint-config-next 14.1.0 14.2.5
eslint-plugin-jsx-a11y 6.8.0 6.9.0
eslint-plugin-react 7.33.2 7.35.0
eslint-plugin-react-hooks 4.6.0 4.6.2
husky 9.0.10 9.1.4
lint-staged 15.2.2 15.2.8
postcss 8.4.34 8.4.41
prettier 3.2.5 3.3.3
prettier-plugin-tailwindcss 0.5.11 0.6.6
stylelint 16.2.1 16.8.1
stylelint-config-standard 36.0.0 36.0.1
tailwindcss 3.4.1 3.4.9
typescript 5.3.3 5.5.4
vite 5.0.12 5.4.0

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.5

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.7

Patch Changes

@​firebase/analytics-compat@​0.2.13

Patch Changes

@​firebase/app@​0.10.8

Patch Changes

  • Update SDK_VERSION.

@​firebase/app-check@​0.8.7

Patch Changes

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

Patch Changes

@​firebase/app-compat@​0.2.38

Patch Changes

  • 025f2a103 #8280 (fixes #8279) - Fixed typos in documentation and some internal variables and parameters.

  • b9244a517 #8378 (fixes #8365) - Properly handle the case in app-compat checks where window exists but self does not. (This occurs in Ionic Stencil's Jest preset.)

  • Updated dependencies []:

  • @​firebase/app@​0.10.8

@​firebase/auth@​1.7.6

... (truncated)

Commits

Updates i18next from 23.8.2 to 23.12.3

Release notes

Sourced from i18next's releases.

v23.12.3

  • fix: Using a comma in a formatter parameter 2225

v23.12.2

  • fix: Nested translation resolution between languages uses the fallback language for nested translations 2216 by preserving issue fix "lng is undefined when formatter used in $t( )" 1938

v23.12.1

  • Use explicit imports for utils 2212

v23.12.0

  • feat: Add posibility to override keyPrefix for certain translation. 2211

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.12.3

  • fix: Using a comma in a formatter parameter 2225

23.12.2

  • fix: Nested translation resolution between languages uses the fallback language for nested translations 2216 by preserving issue fix "lng is undefined when formatter used in $t( )" 1938

23.12.1

  • Use explicit imports for utils 2212

23.12.0

  • feat: Add posibility to override keyPrefix for certain translation. 2211

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

... (truncated)

Commits

Updates jotai from 2.6.4 to 2.9.2

Release notes

Sourced from jotai's releases.

v2.9.2

A small improvement in atomFamily for edge use cases.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.9.1...v2.9.2

v2.9.1

This patch version includes various fixes. Huge thanks to contributors!

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.9.0...v2.9.1

v2.9.0

This version introduces a new core implementation. All tests are passing but there can be some regressions due to missing tests. Please feel free to report such cases and let's improve test coverage.

The benefit with the new implementation:

  • Fix memory leak issue with vanilla store usage.
  • More readability of the core code.

What's Changed

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

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

... (truncated)

Commits
  • 20e0cde 2.9.2
  • 785d14a update dev dependencies (#2696)
  • b4565cb feat(utils): atomFamily supports getParams and unstable_listen api (#2685)
  • 9228a88 docs: remove redundant parentheses (#2694)
  • c76b224 docs: (jotai-tanstack-query) remove wonka as a peer dependency (#2693)
  • aeeb479 2.9.1
  • 61af13a chore(deps): update dev dependencies (#2670)
  • 2fbcc4d fix: add undefined initial value to primitive Atom definition (#2668)
  • 98e23c9 fix(core): Unmount an atom that is no longer dependent within a derived atom ...
  • 27117bf atom toString includes debugLabel in dev mode (#2659)
  • Additional commits viewable in compare view

Updates lucide-react from 0.323.0 to 0.427.0

Release notes

Sourced from lucide-react's releases.

New icons 0.427.0

New icons 🎨

New icons 0.426.0

New icons 🎨

Modified Icons 🔨

New icons 0.425.0

New icons 🎨

Modified Icons 🔨

New icons 0.424.0

New icons 🎨

Modified Icons 🔨

New icons 0.423.0

New 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.5

Release notes

Sourced from next's releases.

v14.2.5

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

Core Changes

  • avoid merging global css in a way that leaks into other chunk groups (#67373)
  • Fix server action edge redirect with middleware rewrite (#67148)
  • fix(next): reject protocol-relative URLs in image optimization (#65752)
  • fix(next-swc): correct path interop to filepath for wasm (#65633)
  • Use addDependency to track metadata route file changes (#66714)
  • Fix noindex is missing on static not-found page (#67135)
  • perf: improve retrieving versionInfo on Turbo HMR (#67309)
  • fix(next/image): handle invalid url (#67465)
  • fix(next): initial prefetch cache not set properly with different search params (#65977)
  • fix: Backport class properties fix (#67377)
  • Upgrade acorn (#67592)

Misc

  • Log stdio for pull-turbo-cache script (#66759)
  • Ensure turbo is setup when building in docker (#66804)

Credits

Huge thanks to @​devjiwonchoi, @​ijjk, @​emmerich, @​huozhi, @​kdy1, @​kwonoj, @​styfle, and @​sokra for helping!

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

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

Bumps the non-majors group with 49 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.5` |
| [i18next](https://github.com/i18next/i18next) | `23.8.2` | `23.12.3` |
| [jotai](https://github.com/pmndrs/jotai) | `2.6.4` | `2.9.2` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.323.0` | `0.427.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.5` |
| [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.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.5.2` |
| [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.37.0` |
| [@next/bundle-analyzer](https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer) | `14.1.0` | `14.2.5` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.17` | `10.4.20` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `14.1.0` | `14.2.5` |
| [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.35.0` |
| [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.1.4` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `15.2.2` | `15.2.8` |
| [postcss](https://github.com/postcss/postcss) | `8.4.34` | `8.4.41` |
| [prettier](https://github.com/prettier/prettier) | `3.2.5` | `3.3.3` |
| [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) | `0.5.11` | `0.6.6` |
| [stylelint](https://github.com/stylelint/stylelint) | `16.2.1` | `16.8.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.9` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.3.3` | `5.5.4` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.0.12` | `5.4.0` |



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.5
- [Release notes](https://github.com/firebase/firebase-js-sdk/releases)
- [Changelog](https://github.com/firebase/firebase-js-sdk/blob/main/CHANGELOG.md)
- [Commits](https://github.com/firebase/firebase-js-sdk/compare/[email protected]@10.12.5)

Updates `i18next` from 23.8.2 to 23.12.3
- [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.12.3)

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

Updates `lucide-react` from 0.323.0 to 0.427.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/0.427.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.5
- [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.5)

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.2
- [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.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.5.2
- [Release notes](https://github.com/dcastil/tailwind-merge/releases)
- [Commits](dcastil/tailwind-merge@v2.2.1...v2.5.2)

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.37.0
- [Release notes](https://github.com/fabian-hiller/valibot/releases)
- [Commits](fabian-hiller/valibot@v0.28.0...v0.37.0)

Updates `@next/bundle-analyzer` from 14.1.0 to 14.2.5
- [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.5/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.20
- [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.20)

Updates `eslint-config-next` from 14.1.0 to 14.2.5
- [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.5/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.35.0
- [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.35.0)

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.1.4
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@v9.0.10...v9.1.4)

Updates `lint-staged` from 15.2.2 to 15.2.8
- [Release notes](https://github.com/lint-staged/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.8)

Updates `postcss` from 8.4.34 to 8.4.41
- [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.41)

Updates `prettier` from 3.2.5 to 3.3.3
- [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.3)

Updates `prettier-plugin-tailwindcss` from 0.5.11 to 0.6.6
- [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.6)

Updates `stylelint` from 16.2.1 to 16.8.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.8.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.9
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.9/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.4.1...v3.4.9)

Updates `typescript` from 5.3.3 to 5.5.4
- [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.4)

Updates `vite` from 5.0.12 to 5.4.0
- [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)

---
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: 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-minor
  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 Aug 12, 2024
Copy link

vercel bot commented Aug 12, 2024

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

Name Status Preview Comments Updated (UTC)
dice-spec-v2 ❌ Failed (Inspect) Aug 12, 2024 11:11pm

Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 19, 2024

Superseded by #272.

@dependabot dependabot bot closed this Aug 19, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/non-majors-1f3f26ad89 branch August 19, 2024 22:54
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