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 with 30 updates #249

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 15, 2024

Bumps the non-majors group with 30 updates:

Package From To
chart.js 4.4.1 4.4.2
firebase 10.8.0 10.11.0
i18next 23.8.2 23.11.2
jotai 2.6.4 2.8.0
lucide-react 0.323.0 0.368.0
nanoid 5.0.5 5.0.7
next 14.1.0 14.2.1
next-i18n-router 5.2.1 5.4.0
react-hook-form 7.50.1 7.51.3
react-i18next 14.0.5 14.1.0
sharp 0.33.2 0.33.3
swr 2.2.4 2.2.5
tailwind-merge 2.2.1 2.2.2
valibot 0.28.0 0.30.0
@next/bundle-analyzer 14.1.0 14.2.1
@types/react 18.2.55 18.2.79
@types/react-dom 18.2.18 18.2.25
@vitest/coverage-v8 1.2.2 1.5.0
autoprefixer 10.4.17 10.4.19
cssnano 6.0.3 6.1.2
eslint-config-next 14.1.0 14.2.1
eslint-plugin-react 7.33.2 7.34.1
husky 9.0.10 9.0.11
postcss 8.4.34 8.4.38
prettier-plugin-tailwindcss 0.5.11 0.5.14
stylelint 16.2.1 16.3.1
tailwindcss 3.4.1 3.4.3
typescript 5.3.3 5.4.5
vite 5.0.12 5.2.8
vitest 1.2.2 1.5.0

Updates chart.js from 4.4.1 to 4.4.2

Release notes

Sourced from chart.js's releases.

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

  • #11674 docs(types): fix description in index.d.ts
  • #11614 Add extra calrification for html legend

Development

  • #11689 Bump to 4.4.2
  • #11664 Bump pnpm/action-setup from 2.4.0 to 3.0.0
  • #11657 Bump release-drafter/release-drafter from 5 to 6
  • #11650 Bump dorny/paths-filter from 2 to 3
  • #11636 Bump socket.io-parser from 4.2.2 to 4.2.4
  • #11635 Bump follow-redirects from 1.15.2 to 1.15.4
  • #11633 Update pnpm lockfile

Thanks to @​DAcodedBEAT, @​LeeLenaleee, @​Megaemce, @​dependabot, @​dependabot[bot], @​mirumirumi, @​smoonsf and @​waszkiewiczja

Commits

Updates firebase from 10.8.0 to 10.11.0

Commits

Updates i18next from 23.8.2 to 23.11.2

Release notes

Sourced from i18next's releases.

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

Release notes

Sourced from jotai's releases.

v2.8.0

This version introduces a new feature atomWithLazy and deprecates useReducerAtom and freezeAtomCreator. It also introduces an experimental store implementation in jotai/experimental.

Migration Guide

selectAtom

selectAtom will no longer internally unwrap promises. To migrate to the new api, use the unwrap utility from jotai/utils package.

// suppose we have this
const baseAtom = atom(Promise.resolve({ id: 0, name: 'test' }))
// previously selectAtom would internally unwrap promises.
const idAtom = selectAtom(
baseAtom,
({ name }) => name,
(prev, curr) => prev.id === curr.id
)
// instead, you need to import unwrap from 'jotai/utils' and pass the unwrapped atom
import { unwrap } from 'jotai/utils'
...
const idAtom = selectAtom(
unwrap(baseAtom),
({ name }) => name,
(prev, curr) => prev.id === curr.id
)

useReducerAtom

https://jotai.org/docs/recipes/use-reducer-atom

freezeAtomCreator

https://jotai.org/docs/guides/debugging#freezeatomcreator

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.7.2...v2.8.0

... (truncated)

Commits

Updates lucide-react from 0.323.0 to 0.368.0

Release notes

Sourced from lucide-react's releases.

New icons 0.368.0

Modified Icons 🔨

New icons 0.367.0

New icons 🎨

Modified Icons 🔨

New icons 0.366.0

New icons 🎨

Modified Icons 🔨

New icons 0.365.0

New icons 🎨

Modified Icons 🔨

New icons 0.364.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.1

Release notes

Sourced from next's releases.

v14.2.1

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

Core Changes

  • use pathToFileUrl to make esm import()s work with absolute windows paths (#64386) @​sokra

Credits

Huge thanks to @​sokra for helping!

v14.2.1-canary.7

Core Changes

  • Update font data: #64481
  • BREAKING CHANGE: remove deprecated analyticsId from config, and the corresponding performance-relayer files and tests: #64199
  • feat: strip traceparent header from cachekey: #64499
  • Fix typo in dynamic-rendering.ts: #64365

Documentation Changes

  • Fix missing PagesOnly in 05-mdx: #64505
  • chore(docs): Add example usage of PixelBin custom image loader: #64074

Misc Changes

  • chore: Update pnpm v8.15.14 to v8.15.7: #64479
  • Add typechecking test for all entrypoints: #64478

Credits

Huge thanks to @​ryota-murakami, @​ijjk, @​pnutmath, @​feugy, @​Jeffrey-Zutt, @​wiesson, and @​eps1lon for helping!

v14.2.1-canary.6

Core Changes

  • improve turborepo caching: #64493

Credits

Huge thanks to @​sokra for helping!

v14.2.1-canary.5

Core Changes

  • Fix client boundary inheritance for barrel optimization: #64467

Documentation Changes

... (truncated)

Commits

Updates next-i18n-router from 5.2.1 to 5.4.0

Release notes

Sourced from next-i18n-router's releases.

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

Updates react-hook-form from 7.50.1 to 7.51.3

Release notes

Sourced from react-hook-form's releases.

Version 7.51.3

🐞 fix #11773 regression on dirty check with reset (#11775)

Version 7.51.2

🐞 fix #11719 validation stuck on true state (#11723)

Version 7.51.1

🐛 bug(validatingFields, trigger): handle all fields validation trigger (#11624) 💚 ci: cleanup actions versions (#11629) 🐞 fix #11590 issue with trigger on validatingFields (#11613)

thanks to @​Moshyfawn

Version 7.51.0

💬 add isValidating and validatingFields to field state (#10657)

const { formState: { validatingFields } } = useForm({ mode: 'onBlur' });

⌨️ chore: replace ts-ignore with ts-expect-error (#11573) 🧗‍♂️ chore: update lib dev deps (#11548) 💅 related #11541 improve dirty check when undefined provided with reset api 😾 fix #11514 issue under strict mode reset invoke twice reset mounted field names with keepDirtyValues (#11546) 🤡 fix flush root render hack (#11521) 🧽 chore: removed unused utils and resp. test cases (#11476) 🐞 close #11503 issue dirty field update with async validation (#11509)

Revert "🔧 fix data param in handleSubmit when TTransformedValues is a union type (#11420)" Revert "✨ feat(values): priorities values over defaultvalues (#11399)" (#11545)

❤️ Thanks to @​deepgolani4, @​pbankonier and @​deepgolani4 ❤️ Thank you principal.com for your contribution

Commits

Updates react-i18next from 14.0.5 to 14.1.0

Changelog

Sourced from react-i18next's changelog.

14.1.0

  • types(Trans): add typechecking on context prop 1732 (might break if using "internal" Trans or TransProps)

14.0.8

  • fix: issue 1728 when useSuspense is false and default ns 1731

14.0.7

  • try to get rid of internal interpolationOverride handling for Trans component, fixes 1729

14.0.6

  • align context handling of Trans component with t function, fixes 1729
Commits

Updates sharp from 0.33.2 to 0.33.3

Changelog

Sourced from sharp's changelog.

v0.33.3 - 23rd March 2024

  • Upgrade to libvips v8.15.2 for upstream bug fixes.

  • Ensure keepIccProfile retains P3 and CMYK input profiles. #3906 #4008

  • Ensure text.wrap property can accept word-char as value. #4028 @​yolopunk

  • Ensure clone takes a deep copy of existing options. #4029

  • Add bitdepth option to heif output (prebuilt binaries support 8-bit only). #4036 @​mertalev

Commits

Updates swr from 2.2.4 to 2.2.5

Release notes

Sourced from swr's releases.

v2.2.5

Patches

Misc

New Contributors

Full Changelog: vercel/swr@v2.2.4...v2.2.5

Commits

Updates tailwind-merge from 2.2.1 to 2.2.2

Release notes

Sourced from tailwind-merge's releases.

v2.2.2

Bug Fixes

Documentation

Full Changelog: dcastil/tailwind-merge@v2.2.1...v2.2.2

Thanks to @​brandonmcconnell, @​manavm1990, @​langy, a private sponsor and @​jamesreaco for sponsoring tailwind-merge! ❤️

Commits
  • dac08e4 v2.2.2
  • 2a60d7f add changelog
  • 742a07a Merge pull request #392 from dcastil/bugfix/391/fix-arbitrary-shadow-with-ins...
  • 3901cb1 add info about inset to validators docs
  • dc50b45 add inset to shadow regex
  • 0a7dff0 add test case for fix
  • 41117c8 Merge pull request #375 from dcastil/renovate/actions-cache-4.x
  • ae7e688 chore(deps): update actions/cache action to v4
  • 8731937 Merge pull request #382 from dcastil/renovate/release-drafter-release-drafter...
  • 7a76ee8 Merge pull request #383 from dcastil/renovate/major-typescript-eslint-monorepo
  • Additional commits viewable in compare view

Updates valibot from 0.28.0 to 0.30.0

Release notes

Sourced from valibot's releases.

v0.30.0

Many thanks to @​Saeris, @​ariskemper, @​mxdvl, @​romeerez and @​niccholaspage for contributing to this release.

  • Add Default and DefaultAsync type and refactor codebase
  • Add Fallback and FallbackAsync type and refactor codebase
  • Add isOfType type guard util to check the type of an object
  • Refactor getDefaults and getDefaultsAsync method (pull request #259)
  • Refactor getFallbacks and getFallbacksAsync method (pull request #259)
  • Change type definitions from type to interface (pull request #259, #451)
  • Remove deprecated properties of safeParse and safeParseAsync method
  • Remove any deprecated method, schema and validation functions
  • Fix NestedPath type of flatten for async schemas (issue #456)
  • Fix implementation of DefaultValue type for transformed values

v0.29.0

Many thanks to @​Mini-ghost, @​ivands and @​Demivan for contributing to this release.

  • Add every and some pipeline validation action
  • Add input of schema to getter function of recursive and recursiveAsync schema (pull request #441)
  • Change implementation of transform and transformAsync method to only run transformations if there are no issues (issue #436)
  • Rename recursive and recursiveAsync schema to lazy and lazyAsync (issue #440)
  • Fix bug in i18n util when using setSchemaMessage

v0.28.1

Many thanks to @​compulim for contributing to this release.

  • Fix bug in union and unionAsync schema for transformed inputs (issue #420)
Commits
  • 0d6d2d8 Bump version to v0.30.0 and update changelog
  • 1dc09ec Add JSR package registry support to library
  • d9ce98e Remove deprecated methods, schemas and validations
  • a635382 Merge pull request #465 from romeerez/extend-eslint
  • 1c1f59a Change name of eslint:fix script to eslint.fix
  • 63ea7b4 Fix linting issues in forward and forwardAsync tests
  • 49dde80 Merge branch 'main' into extend-eslint
  • 30b2ee7 Merge pull request #451 from romeerez/main
  • fda42a0 Update changelog of library
  • 2cb841c Refactor some types for better readability
  • Additional commits viewable in compare view

Updates @next/bundle-analyzer from 14.1.0 to 14.2.1

Release notes

Sourced from

Bumps the non-majors group with 30 updates:

| Package | From | To |
| --- | --- | --- |
| [chart.js](https://github.com/chartjs/Chart.js) | `4.4.1` | `4.4.2` |
| [firebase](https://github.com/firebase/firebase-js-sdk) | `10.8.0` | `10.11.0` |
| [i18next](https://github.com/i18next/i18next) | `23.8.2` | `23.11.2` |
| [jotai](https://github.com/pmndrs/jotai) | `2.6.4` | `2.8.0` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.323.0` | `0.368.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.1` |
| [next-i18n-router](https://github.com/i18nexus/next-i18n-router) | `5.2.1` | `5.4.0` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.50.1` | `7.51.3` |
| [react-i18next](https://github.com/i18next/react-i18next) | `14.0.5` | `14.1.0` |
| [sharp](https://github.com/lovell/sharp) | `0.33.2` | `0.33.3` |
| [swr](https://github.com/vercel/swr) | `2.2.4` | `2.2.5` |
| [tailwind-merge](https://github.com/dcastil/tailwind-merge) | `2.2.1` | `2.2.2` |
| [valibot](https://github.com/fabian-hiller/valibot) | `0.28.0` | `0.30.0` |
| [@next/bundle-analyzer](https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer) | `14.1.0` | `14.2.1` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.2.55` | `18.2.79` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.2.18` | `18.2.25` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `1.2.2` | `1.5.0` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.17` | `10.4.19` |
| [cssnano](https://github.com/cssnano/cssnano) | `6.0.3` | `6.1.2` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `14.1.0` | `14.2.1` |
| [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) | `7.33.2` | `7.34.1` |
| [husky](https://github.com/typicode/husky) | `9.0.10` | `9.0.11` |
| [postcss](https://github.com/postcss/postcss) | `8.4.34` | `8.4.38` |
| [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) | `0.5.11` | `0.5.14` |
| [stylelint](https://github.com/stylelint/stylelint) | `16.2.1` | `16.3.1` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.4.1` | `3.4.3` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.3.3` | `5.4.5` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.0.12` | `5.2.8` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `1.2.2` | `1.5.0` |


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

Updates `firebase` from 10.8.0 to 10.11.0
- [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.11.0)

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

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

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

Updates `next-i18n-router` from 5.2.1 to 5.4.0
- [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.4.0)

Updates `react-hook-form` from 7.50.1 to 7.51.3
- [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.51.3)

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

Updates `sharp` from 0.33.2 to 0.33.3
- [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.3)

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

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

Updates `@next/bundle-analyzer` from 14.1.0 to 14.2.1
- [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.1/packages/next-bundle-analyzer)

Updates `@types/react` from 18.2.55 to 18.2.79
- [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.2.25
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `@vitest/coverage-v8` from 1.2.2 to 1.5.0
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v1.5.0/packages/coverage-v8)

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 `cssnano` from 6.0.3 to 6.1.2
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/[email protected]@6.1.2)

Updates `eslint-config-next` from 14.1.0 to 14.2.1
- [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.1/packages/eslint-config-next)

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

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 `postcss` from 8.4.34 to 8.4.38
- [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.38)

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

Updates `stylelint` from 16.2.1 to 16.3.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.3.1)

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

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

Updates `vite` from 5.0.12 to 5.2.8
- [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.2.8/packages/vite)

Updates `vitest` from 1.2.2 to 1.5.0
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v1.5.0/packages/vitest)

---
updated-dependencies:
- dependency-name: chart.js
  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: 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-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-patch
  dependency-group: non-majors
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: "@vitest/coverage-v8"
  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: cssnano
  dependency-type: direct:development
  update-type: version-update:semver-minor
  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-react
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: husky
  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-plugin-tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: stylelint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  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
- dependency-name: vitest
  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 Apr 15, 2024
Copy link

vercel bot commented Apr 15, 2024

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

Name Status Preview Comments Updated (UTC)
dice-spec-v2 ✅ Ready (Inspect) Visit Preview 💬 Add feedback Apr 15, 2024 10:57pm

Copy link

📦 Next.js Bundle Analysis for dice-spec-v2

This analysis was generated by the Next.js Bundle Analysis action. 🤖

⚠️ Global Bundle Size Increased

Page Size (compressed)
global 79.52 KB (🟡 +142 B)
Details

The global bundle is the javascript bundle that loads alongside every page. It is in its own category because its impact is much higher - an increase to its size means that every page on your website loads slower, and a decrease means every page loads faster.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

If you want further insight into what is behind the changes, give @next/bundle-analyzer a try!

One Page Changed Size

The following page changed size from the code in this PR compared to its base branch:

Page Size (compressed) First Load % of Budget (200 KB)
/_error 179 B 79.69 KB 39.85% (+/- <0.01%)
Details

Only the gzipped size is provided here based on an expert tip.

First Load is the size of the global bundle plus the bundle for the individual page. If a user were to show up to your website and land on a given page, the first load size represents the amount of javascript that user would need to download. If next/link is used, subsequent page loads would only need to download that page's bundle (the number in the "Size" column), since the global bundle has already been downloaded.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

The "Budget %" column shows what percentage of your performance budget the First Load total takes up. For example, if your budget was 100kb, and a given page's first load size was 10kb, it would be 10% of your budget. You can also see how much this has increased or decreased compared to the base branch of your PR. If this percentage has increased by 20% or more, there will be a red status indicator applied, indicating that special attention should be given to this. If you see "+/- <0.01%" it means that there was a change in bundle size, but it is a trivial enough amount that it can be ignored.

Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 22, 2024

Superseded by #250.

@dependabot dependabot bot closed this Apr 22, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/non-majors-180d1584db branch April 22, 2024 22:27
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