Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

chore(deps): bump the all group across 1 directory with 126 updates #52

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 16, 2024

Bumps the all group with 34 updates in the / directory:

Package From To
@radix-ui/react-dialog 1.0.5 1.1.1
@radix-ui/react-slot 1.0.2 1.1.0
@tauri-apps/api 1.5.6 1.6.0
date-fns 3.6.0 4.0.0
geist 1.3.0 1.3.1
lucide-react 0.395.0 0.441.0
next 14.2.4 14.2.11
tailwind-merge 2.3.0 2.5.2
tauri-plugin-clipboard-api 1.1.0 2.1.8
zustand 4.5.2 4.5.5
@tauri-apps/cli 1.5.14 1.6.2
@testing-library/dom 10.1.0 10.4.0
@testing-library/jest-dom 6.4.6 6.5.0
@testing-library/react 16.0.0 16.0.1
@types/jest 29.5.12 29.5.13
@types/lodash 4.17.5 4.17.7
@types/node 20.14.3 22.5.5
@types/react 18.3.3 18.3.6
@typescript-eslint/eslint-plugin 7.13.1 8.6.0
@typescript-eslint/parser 7.13.1 8.6.0
autoprefixer 10.4.19 10.4.20
cssnano 7.0.2 7.0.6
eslint 9.5.0 9.10.0
eslint-config-next 14.2.4 14.2.11
eslint-plugin-prettier 5.1.3 5.2.1
eslint-plugin-simple-import-sort 12.1.0 12.1.1
husky 9.0.11 9.1.6
lint-staged 15.2.7 15.2.10
postcss 8.4.38 8.4.47
postcss-nesting 12.1.5 13.0.0
prettier 3.3.2 3.3.3
prettier-plugin-tailwindcss 0.6.5 0.6.6
tailwindcss 3.4.4 3.4.11
typescript 5.4.5 5.6.2

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-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 @tauri-apps/api from 1.5.6 to 1.6.0

Commits

Updates date-fns from 3.6.0 to 4.0.0

Release notes

Sourced from date-fns's releases.

v4.0.0

I have great news! First, ten years after its release, date-fns finally gets first-class time zone support.

Another great news is that there aren't many breaking changes in this release. All of them are type-related and will affect only those explicitly using internal date-fns types. Finally, it has been less than a year since the last major release, which is an improvement over the previous four years between v2 and v3. I plan on keeping the pace and minimizing breaking changes moving forward.

Read more about the release in the announcement blog post.

- Sasha @​kossnocorp

Added

  • Added time zones support via @date-fns/tz's TZDate class and tz helper function. See its README for the details about the API.

  • All relevant functions now accept the context in option, which allows to specify the time zone to make the calculations in. If the function also returns a date, it will be in the specified time zone:

    import { addDays, startOfDay } from "date-fns";
    import { tz } from "@date-fns/tz";
    startOfDay(addDays(Date.now(), 5, { in: tz("Asia/Singapore") }));
    //=> "2024-09-16T00:00:00.000+08:00"

    In the example, addDays will get the current date and time in Singapore and add 5 days to it. startOfDay will inherit the date type and return the start of the day in Singapore.

Changed

  • The function arguments, as well as Interval's start and end, now can be of different types, allowing you to mix UTCDate, TZDate, Date, and other extensions, as well as primitives (strings and numbers).

    The functions will normalize these values, make calculations, and return the result in the same type, preventing any bugs caused by the discrepancy. If passed, the type will be inferred from the context in option or the first encountered argument object type. The Interval's start and end will be considered separately, starting from start.

    In the given example, the result will be in the TZDate as the first argument is a number, and the start takes precedence over the end.

    clamp(Date.now(), {
      start: new TZDate(start, "Asia/Singapore"),
      end: new UTCDate(),
    });
    //=> TZDate
  • BREAKING: This release contains a bunch of types changes that should not affect the library's expected usage. The changes are primarily internal and nuanced, so rather than listing them here, I recommend you run the type checker after the upgrade. If there are unfixable problems, please open an issue.

  • BREAKING: The package is now ESM-first. CommonJS is still supported, and it should not affect most users, but it might break in certain environments. If you encounter any issues, please report them.

Fixed

  • Fixed CDN build compatibility with jQuery and other tools that expose $ by properly wrapping the code in an IIFE.
Changelog

Sourced from date-fns's changelog.

v4.0.0 - 2024-09-16

I have great news! First, ten years after its release, date-fns finally gets first-class time zone support.

Another great news is that there aren't many breaking changes in this release. All of them are type-related and will affect only those explicitly using internal date-fns types. Finally, it has been less than a year since the last major release, which is an improvement over the previous four years between v2 and v3. I plan on keeping the pace and minimizing breaking changes moving forward.

Read more about the release in the announcement blog post.

- Sasha @​kossnocorp

Added

  • Added time zones support via @date-fns/tz's TZDate class and tz helper function. See its README for the details about the API.

  • All relevant functions now accept the context in option, which allows to specify the time zone to make the calculations in. If the function also returns a date, it will be in the specified time zone:

    import { addDays, startOfDay } from "date-fns";
    import { tz } from "@date-fns/tz";
    startOfDay(addDays(Date.now(), 5, { in: tz("Asia/Singapore") }));
    //=> "2024-09-16T00:00:00.000+08:00"

    In the example, addDays will get the current date and time in Singapore and add 5 days to it. startOfDay will inherit the date type and return the start of the day in Singapore.

Changed

  • The function arguments, as well as Interval's start and end, now can be of different types, allowing you to mix UTCDate, TZDate, Date, and other extensions, as well as primitives (strings and numbers).

    The functions will normalize these values, make calculations, and return the result in the same type, preventing any bugs caused by the discrepancy. If passed, the type will be inferred from the context in option or the first encountered argument object type. The Interval's start and end will be considered separately, starting from start.

    In the given example, the result will be in the TZDate as the first argument is a number, and the start takes precedence over the end.

    clamp(Date.now(), {
      start: new TZDate(start, "Asia/Singapore"),
      end: new UTCDate(),
    });
    //=> TZDate
  • BREAKING: This release contains a bunch of types changes that should not affect the library's expected usage. The changes are primarily internal and nuanced, so rather than listing them here, I recommend you running the type checker after the upgrade. If there are unfixable problems, please open an issue.

  • BREAKING: The package now is ESM-first. The CommonJS is still support and It should not affect most users, but it might break in certains environments. If you encounter any issues, please report them.

Fixed

  • Fixed CDN build compatibility with jQuery and other tools that expose $ by properly wrapping the code in an IIFE.
Commits
  • 99b4e67 Prepare v4.0
  • 8df1706 Rewrite the time zones doc
  • e351977 Promote to v4.0.0-beta.1
  • 8523656 Fix scripts/test/types.sh
  • 38c2456 Update and "fix" ESLint complaints
  • f2f1cc6 Fix random build update issues
  • 8903389 Migrate to ESM-first, the fix CDN issue
  • 5274165 Update @​date-fns/docs
  • 3ae8737 Build the FP functions
  • a5fd87f Add a change log entry for v4 and release v4.0.0-alpha.1
  • Additional commits viewable in compare view

Updates geist from 1.3.0 to 1.3.1

Commits

Updates lucide-react from 0.395.0 to 0.441.0

Release notes

Sourced from lucide-react's releases.

New icons 0.441.0

New icons 🎨

New icons 0.440.0

New icons 🎨

Modified Icons 🔨

New icons 0.439.0

New icons 🎨

Modified Icons 🔨

New icons 0.438.0

New icons 🎨

Modified Icons 🔨

New icons 0.437.0

Modified Icons 🔨

New icons 0.436.0

Modified Icons 🔨

... (truncated)

Commits

Updates next from 14.2.4 to 14.2.11

Release notes

Sourced from next's releases.

v14.2.11

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

Core Changes

  • fix: correct metadata url suffix (vercel/next.js#69959)
  • fix: setting assetPrefix to URL format breaks HMR (#70040)
  • Update revalidateTag to batch tags in one request (#65296)

Credits

Huge thanks to @​huozhi, @​devjiwonchoi, and @​ijjk for helping!

v14.2.10

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

Core Changes

Credits

Huge thanks to @​huozhi and @​ijjk for helping!

v14.2.9

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

Core Changes

  • Revert "Fix esm property def in flight loader (#66990)" (#69749)
  • Disable experimental.optimizeServer by default to fix failed server action (#69788)
  • Fix middleware fallback: false case (#69799)
  • Fix status code for /_not-found route (#64058) (#69808)
  • Fix metadata prop merging (#69807)
  • create-next-app: fix font file corruption when using import alias (#69806)

Credits

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

v14.2.8

What's Changed

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

Support esmExternals in app directory

... (truncated)

Commits

Updates tailwind-merge from 2.3.0 to 2.5.2

Release notes

Sourced from tailwind-merge's releases.

v2.5.2

Sorry for all the bugs today!

Bug Fixes

Full Changelog: dcastil/tailwind-merge@v2.5.1...v2.5.2

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

v2.5.1

Bug Fixes

Full Changelog: dcastil/tailwind-merge@v2.5.0...v2.5.1

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

v2.5.0

New Features

Bug Fixes

Full Changelog: dcastil/tailwind-merge@v2.4.0...v2.5.0

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

v2.4.0

New Features

  • Allow hooking into class parsing logic (experimental) by @​dcastil in dcastil/tailwind-merge#444
    • There is no info to this in the docs because this is experimental, but there is a new experimentalParseClassName property in the config that allows you to customize how tailwind-merge recognizes classes. If you're interested, you can read how to use it in the inline JSDocs and subscribe to dcastil/tailwind-merge#385 for upcoming more powerful low-level functionality.
  • Create security policy by @​dcastil in dcastil/tailwind-merge#439
    • Added documentation on how to report potential vulnerabilities
  • Avoid @babel/runtime dependency by @​dcastil in dcastil/tailwind-merge#431
    • Now no dependencies in tailwind-merge anymore. This dependency was only used in the tailwind-merge/es5 bundle anyway which I don't optimize for.

Documentation

... (truncated)

Commits
  • a72f2f4 v2.5.2
  • 0f0f53e add changelog for v2.5.2
  • a9ebe22 Merge pull request #459 from dcastil/bugfix/458/fix-multiline-not-working-any...
  • 37339ce accept multiline input again
  • 15c741f add test case for multiline input
  • c795f4b fix typo in changelog
  • 056b2a3 v2.5.1
  • 41e589b add changelog for v2.5.1
  • 80d01a1 Merge pull request #457 from dcastil/bugfix/456/fix-space-at-beginning-causin...
  • 400b90d fix space at beginning of input causing infinite loop
  • Additional commits viewable in compare view

Updates tauri-plugin-clipboard-api from 1.1.0 to 2.1.8

Release notes

Sourced from tauri-plugin-clipboard-api's releases.

v2.1.4

Upgrade clipboard-rs version and optimize bundle size.

Full Changelog: CrossCopy/tauri-plugin-clipboard@v2.1.3...v2.1.4

v2.0.0-beta.0

For Tauri v2. Will stay beta until Tauri v2 is stable.

v1.1.4

New release

What's Changed

Full Changelog: CrossCopy/tauri-plugin-clipboard@v1.1.3...1.1.4

Commits

Updates zustand from 4.5.2 to 4.5.5

Release notes

Sourced from zustand's releases.

v4.5.5

This improves the persist middleware behavior for an edge case.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v4.5.4...v4.5.5

v4.5.4

There was an issue in v4.5.3 with some bundlers.

What's Changed

Full Changelog: pmndrs/zustand@v4.5.3...v4.5.4

v4.5.3

It comes with a minor fix in types, but also some changes in configs.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v4.5.2...v4.5.3

Commits

Updates @tauri-apps/cli from 1.5.14 to 1.6.2

Release notes

Sourced from @​tauri-apps/cli's releases.

@​tauri-apps/cli v1.6.2

[1.6.2]

Dependencies

@​tauri-apps/cli v1.6.1

[1.6.1]

New Features

Bug Fixes

Dependencies

Commits
  • bd3c153 Apply Version Updates From Current Changes (v1) (#11012)
  • 328b11f fix(ci): increase timeout, cache updater fixtures
  • 649e01f fix(tests): start updater server once
  • 02dfb03 fix(tests): use hyper instead of tiny-http to serve updates
  • 963411a chore(tests): enhance e2e test logs and delay for CI
  • 70b8525 fix(ci): install webkit2gtk-4.1 for e2e tests
  • 6d629cb fix: integration tests
  • 5f5c7c7 fix(ci): downgrade mac-notification-sys to 0.6.1
  • 26d243f fix(core): restart cannot handle binary name change on macOS (#10991)
  • 8a0e93b fixes iframes in windows causes window.TAURI_INVOKE is not a function err...
  • Additional commits viewable in compare view

Updates @testing-library/dom from 10.1.0 to 10.4.0

Release notes

Sourced from @​testing-library/dom's releases.

v10.4.0

10.4.0 (2024-07-22)

Features

  • Reduce caught exceptions in prettyDom (reland) (#1323) (a86c54c)

v10.3.2

10.3.2 (2024-07-15)

Bug Fixes

v10.3.1

10.3.1 (2024-07-05)

Bug Fixes

v10.3.0

10.3.0 (2024-07-02)

Features

v10.2.0

10.2.0 (2024-06-24)

Features

  • Support anonymous custom elements when pretty printing DOM (#1319) (0a8ad65)
Commits

Updates @testing-library/jest-dom from 6.4.6 to 6.5.0

Release notes

Sourced from @​testing-library/jest-dom's releases.

v6.5.0

6.5.0 (2024-08-23)

Features

  • toHaveValue: Asserting aria-valuenow (#479) (acbf416)

v6.4.8

6.4.8 (2024-07-23)

Bug Fixes

  • Drop peerDependencies from package.json (#610) (faf534b)

v6.4.7

6.4.7 (2024-07-22)

Bug Fixes

Commits
  • 62f0e3a docs: add waynevanson as a contributor for code, and test (#626)
  • acbf416 feat(toHaveValue): Asserting aria-valuenow (#479)
  • 47a667c docs: add vorant94 as a contributor for code (#619)
  • 06d19ba adjust vitest ambient declaration file according to vitest docs (#612)
  • a073b08 docs: add aleks-elkin as a contributor for maintenance (#618)
  • aa094a5 chore: remove unused @​babel/runtime dependency (#617)
  • d02e80b docs: add ddolcimascolo as a contributor for maintenance (#616)
  • faf534b fix: Drop peerDependencies from package.json (#610)
  • 78a2934 docs: add tonyhallett as a contributor for bug (#615)
  • 5cc6298 fix: Type definition of toHaveClass (#611)
  • See full diff in compare view

Updates @testing-library/react from 16.0.0 to 16.0.1

Release notes

Sourced from @​testing-library/react's releases.

v16.0.1

16.0.1 (2024-08-29)

Bug Fixes

  • Add support for exactOptionalPropertyTypes in TypeScript (#1351) (3dcd8a9)
Commits

Updates @types/jest from 29.5.12 to 29.5.13

Commits

Updates @types/lodash from 4.17.5 to 4.17.7

Commits

Updates @types/node from 20.14.3 to 22.5.5

Commits

Updates @types/react from 18.3.3 to 18.3.6

Commits

Updates @typescript-eslint/eslint-plugin from 7.13.1 to 8.6.0

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v8.6.0

8.6.0 (2024-09-16)

🚀 Features

  • add allow option for restrict-template-expressions (#8556)
  • eslint-plugin: [no-unnecessary-condition] check switch cases (#9912)
  • eslint-plugin: [no-misused-promises] check array predicate return (#9955)
  • type-utils: isNullableType add Void logic (#9937)
  • typescript-estree: disable plugin loading by default in project service (#9964)

🩹 Fixes

  • eslint-plugin: [no-deprecated] don't report recursive types in destructuring assignment twice (#9969)
  • eslint-plugin: [no-deprecated] report on deprecated variables used in destructuring assignment (#9978)
  • eslint-plugin: [no-deprecated] report on deprecated properties with function-like types (#9977)
  • eslint-plugin: [no-unnecessary-condition] properly reflect multiple negations in message (#9940)
  • typescript-estree: don't throw on missing tsconfig.json by default in project service (#9989)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.5.0

8.5.0 (2024-09-09)

🚀 Features

  • eslint-plugin: [no-duplicate-type-constituents] prevent unnecessary | undefined for optional parameters (#9479)
  • eslint-plugin: [no-unsafe-argument] differentiate error types (#9920)
  • typescript-estree: default projectService.defaultProject to 'tsconfig.json' (#9893)

🩹 Fixes

  • deps: update dependency prism-react-renderer to v2.4.0 (#9943)
  • eslint-plugin: [no-unnecessary-type-assertion] fix TSNonNullExpression fixer (#9898)
  • eslint-plugin: [no-misused-promises] handle static method (#9951)
  • eslint-plugin: [no-unnecessary-type-parameters] fix AST quick path scope analysis (#9900)
  • eslint-plugin: [consistent-type-assertions] access parser services lazily (#9921)

❤️ Thank You

... (truncated)

Changelog

Sourced from

Bumps the all group with 34 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@radix-ui/react-dialog](https://github.com/radix-ui/primitives) | `1.0.5` | `1.1.1` |
| [@radix-ui/react-slot](https://github.com/radix-ui/primitives) | `1.0.2` | `1.1.0` |
| [@tauri-apps/api](https://github.com/tauri-apps/tauri) | `1.5.6` | `1.6.0` |
| [date-fns](https://github.com/date-fns/date-fns) | `3.6.0` | `4.0.0` |
| [geist](https://github.com/vercel/geist-font/tree/HEAD/packages/next) | `1.3.0` | `1.3.1` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.395.0` | `0.441.0` |
| [next](https://github.com/vercel/next.js) | `14.2.4` | `14.2.11` |
| [tailwind-merge](https://github.com/dcastil/tailwind-merge) | `2.3.0` | `2.5.2` |
| [tauri-plugin-clipboard-api](https://github.com/CrossCopy/tauri-plugin-clipboard) | `1.1.0` | `2.1.8` |
| [zustand](https://github.com/pmndrs/zustand) | `4.5.2` | `4.5.5` |
| [@tauri-apps/cli](https://github.com/tauri-apps/tauri) | `1.5.14` | `1.6.2` |
| [@testing-library/dom](https://github.com/testing-library/dom-testing-library) | `10.1.0` | `10.4.0` |
| [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) | `6.4.6` | `6.5.0` |
| [@testing-library/react](https://github.com/testing-library/react-testing-library) | `16.0.0` | `16.0.1` |
| [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) | `29.5.12` | `29.5.13` |
| [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) | `4.17.5` | `4.17.7` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.14.3` | `22.5.5` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.3.3` | `18.3.6` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `7.13.1` | `8.6.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `7.13.1` | `8.6.0` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.19` | `10.4.20` |
| [cssnano](https://github.com/cssnano/cssnano) | `7.0.2` | `7.0.6` |
| [eslint](https://github.com/eslint/eslint) | `9.5.0` | `9.10.0` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `14.2.4` | `14.2.11` |
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | `5.1.3` | `5.2.1` |
| [eslint-plugin-simple-import-sort](https://github.com/lydell/eslint-plugin-simple-import-sort) | `12.1.0` | `12.1.1` |
| [husky](https://github.com/typicode/husky) | `9.0.11` | `9.1.6` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `15.2.7` | `15.2.10` |
| [postcss](https://github.com/postcss/postcss) | `8.4.38` | `8.4.47` |
| [postcss-nesting](https://github.com/csstools/postcss-plugins/tree/HEAD/plugins/postcss-nesting) | `12.1.5` | `13.0.0` |
| [prettier](https://github.com/prettier/prettier) | `3.3.2` | `3.3.3` |
| [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) | `0.6.5` | `0.6.6` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.4.4` | `3.4.11` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.4.5` | `5.6.2` |



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-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 `@tauri-apps/api` from 1.5.6 to 1.6.0
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](https://github.com/tauri-apps/tauri/compare/@tauri-apps/api-v1.5.6...@tauri-apps/api-v1.6)

Updates `date-fns` from 3.6.0 to 4.0.0
- [Release notes](https://github.com/date-fns/date-fns/releases)
- [Changelog](https://github.com/date-fns/date-fns/blob/main/CHANGELOG.md)
- [Commits](date-fns/date-fns@v3.6.0...v4.0.0)

Updates `geist` from 1.3.0 to 1.3.1
- [Release notes](https://github.com/vercel/geist-font/releases)
- [Commits](https://github.com/vercel/geist-font/commits/HEAD/packages/next)

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

Updates `next` from 14.2.4 to 14.2.11
- [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.2.4...v14.2.11)

Updates `tailwind-merge` from 2.3.0 to 2.5.2
- [Release notes](https://github.com/dcastil/tailwind-merge/releases)
- [Commits](dcastil/tailwind-merge@v2.3.0...v2.5.2)

Updates `tauri-plugin-clipboard-api` from 1.1.0 to 2.1.8
- [Release notes](https://github.com/CrossCopy/tauri-plugin-clipboard/releases)
- [Commits](https://github.com/CrossCopy/tauri-plugin-clipboard/commits)

Updates `zustand` from 4.5.2 to 4.5.5
- [Release notes](https://github.com/pmndrs/zustand/releases)
- [Commits](pmndrs/zustand@v4.5.2...v4.5.5)

Updates `@tauri-apps/cli` from 1.5.14 to 1.6.2
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](https://github.com/tauri-apps/tauri/compare/@tauri-apps/cli-v1.5.14...@tauri-apps/cli-v1.6.2)

Updates `@testing-library/dom` from 10.1.0 to 10.4.0
- [Release notes](https://github.com/testing-library/dom-testing-library/releases)
- [Changelog](https://github.com/testing-library/dom-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/dom-testing-library@v10.1.0...v10.4.0)

Updates `@testing-library/jest-dom` from 6.4.6 to 6.5.0
- [Release notes](https://github.com/testing-library/jest-dom/releases)
- [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
- [Commits](testing-library/jest-dom@v6.4.6...v6.5.0)

Updates `@testing-library/react` from 16.0.0 to 16.0.1
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/react-testing-library@v16.0.0...v16.0.1)

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

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

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

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

Updates `@typescript-eslint/eslint-plugin` from 7.13.1 to 8.6.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.6.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 7.13.1 to 8.6.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.6.0/packages/parser)

Updates `autoprefixer` from 10.4.19 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.19...10.4.20)

Updates `cssnano` from 7.0.2 to 7.0.6
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/[email protected]@7.0.6)

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

Updates `eslint-config-next` from 14.2.4 to 14.2.11
- [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.11/packages/eslint-config-next)

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

Updates `eslint-plugin-simple-import-sort` from 12.1.0 to 12.1.1
- [Changelog](https://github.com/lydell/eslint-plugin-simple-import-sort/blob/main/CHANGELOG.md)
- [Commits](lydell/eslint-plugin-simple-import-sort@v12.1.0...v12.1.1)

Updates `husky` from 9.0.11 to 9.1.6
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@v9.0.11...v9.1.6)

Updates `lint-staged` from 15.2.7 to 15.2.10
- [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.7...v15.2.10)

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

Updates `postcss-nesting` from 12.1.5 to 13.0.0
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/plugins/postcss-nesting/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/plugins/postcss-nesting)

Updates `prettier` from 3.3.2 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.3.2...3.3.3)

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

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

Updates `typescript` from 5.4.5 to 5.6.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.4.5...v5.6.2)

Updates `@babel/runtime` from 7.24.7 to 7.25.6
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.25.6/packages/babel-runtime)

Updates `@csstools/selector-resolve-nested` from 1.1.0 to 2.0.0
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/packages/selector-resolve-nested/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/packages/selector-resolve-nested)

Updates `@csstools/selector-specificity` from 3.1.1 to 4.0.0
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/packages/selector-specificity/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/packages/selector-specificity)

Updates `@eslint-community/regexpp` from 4.10.1 to 4.11.1
- [Release notes](https://github.com/eslint-community/regexpp/releases)
- [Commits](eslint-community/regexpp@v4.10.1...v4.11.1)

Updates `@eslint/config-array` from 0.16.0 to 0.18.0
- [Release notes](https://github.com/eslint/rewrite/releases)
- [Changelog](https://github.com/eslint/rewrite/blob/main/release-please-config.json)
- [Commits](eslint/rewrite@config-array-v0.16.0...config-array-v0.18.0)

Updates `@eslint/js` from 9.5.0 to 9.10.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/commits/v9.10.0/packages/js)

Updates `@jridgewell/sourcemap-codec` from 1.4.15 to 1.5.0
- [Release notes](https://github.com/jridgewell/sourcemap-codec/releases)
- [Changelog](https://github.com/jridgewell/sourcemap-codec/blob/main/CHANGELOG.md)
- [Commits](jridgewell/sourcemap-codec@v1.4.15...v1.5.0)

Updates `@next/env` from 14.2.4 to 14.2.11
- [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.11/packages/next-env)

Updates `@next/eslint-plugin-next` from 14.2.4 to 14.2.11
- [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.11/packages/eslint-plugin-next)

Updates `@next/swc-darwin-arm64` from 14.2.4 to 14.2.11
- [Release notes](https://github.com/vercel/next.js/releases)
- [Commits](https://github.com/vercel/next.js/commits/v14.2.11/packages/next-swc/crates/napi/npm/darwin-arm64)

Updates `@next/swc-darwin-x64` from 14.2.4 to 14.2.11
- [Release notes](https://github.com/vercel/next.js/releases)
- [Commits](https://github.com/vercel/next.js/commits/v14.2.11/packages/next-swc/crates/napi/npm/darwin-x64)

Updates `@next/swc-linux-arm64-gnu` from 14.2.4 to 14.2.11
- [Release notes](https://github.com/vercel/next.js/releases)
- [Commits](https://github.com/vercel/next.js/commits/v14.2.11/packages/next-swc/crates/napi/npm/linux-arm64-gnu)

Updates `@next/swc-linux-arm64-musl` from 14.2.4 to 14.2.11
- [Release notes](https://github.com/vercel/next.js/releases)
- [Commits](https://github.com/vercel/next.js/commits/v14.2.11/packages/next-swc/crates/napi/npm/linux-arm64-musl)

Updates `@next/swc-linux-x64-gnu` from 14.2.4 to 14.2.11
- [Release notes](https://github.com/vercel/next.js/releases)
- [Commits](https://github.com/vercel/next.js/commits/v14.2.11/packages/next-swc/crates/napi/npm/linux-x64-gnu)

Updates `@next/swc-linux-x64-musl` from 14.2.4 to 14.2.11
- [Release notes](https://github.com/vercel/next.js/releases)
- [Commits](https://github.com/vercel/next.js/commits/v14.2.11/packages/next-swc/crates/napi/npm/linux-x64-musl)

Updates `@next/swc-win32-arm64-msvc` from 14.2.4 to 14.2.11
- [Release notes](https://github.com/vercel/next.js/releases)
- [Commits](https://github.com/vercel/next.js/commits/v14.2.11/packages/next-swc/crates/napi/npm/win32-arm64-msvc)

Updates `@next/swc-win32-ia32-msvc` from 14.2.4 to 14.2.11
- [Release notes](https://github.com/vercel/next.js/releases)
- [Commits](https://github.com/vercel/next.js/commits/v14.2.11/packages/next-swc/crates/napi/npm/win32-ia32-msvc)

Updates `@next/swc-win32-x64-msvc` from 14.2.4 to 14.2.11
- [Release notes](https://github.com/vercel/next.js/releases)
- [Commits](https://github.com/vercel/next.js/commits/v14.2.11/packages/next-swc/crates/napi/npm/win32-x64-msvc)

Updates `@rushstack/eslint-patch` from 1.10.3 to 1.10.4
- [Changelog](https://github.com/microsoft/rushstack/blob/main/eslint/eslint-patch/CHANGELOG.md)
- [Commits](https://github.com/microsoft/rushstack/commits/@rushstack/eslint-patch_v1.10.4/eslint/eslint-patch)

Updates `@tauri-apps/cli-darwin-arm64` from 1.5.14 to 1.6.2
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-cli-v1.5.14...tauri-v1.6.2)

Updates `@tauri-apps/cli-darwin-x64` from 1.5.14 to 1.6.2
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-cli-v1.5.14...tauri-v1.6.2)

Updates `@tauri-apps/cli-linux-arm-gnueabihf` from 1.5.14 to 1.6.2
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-cli-v1.5.14...tauri-v1.6.2)

Updates `@tauri-apps/cli-linux-arm64-gnu` from 1.5.14 to 1.6.2
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-cli-v1.5.14...tauri-v1.6.2)

Updates `@tauri-apps/cli-linux-arm64-musl` from 1.5.14 to 1.6.2
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-cli-v1.5.14...tauri-v1.6.2)

Updates `@tauri-apps/cli-linux-x64-gnu` from 1.5.14 to 1.6.2
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-cli-v1.5.14...tauri-v1.6.2)

Updates `@tauri-apps/cli-linux-x64-musl` from 1.5.14 to 1.6.2
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-cli-v1.5.14...tauri-v1.6.2)

Updates `@tauri-apps/cli-win32-arm64-msvc` from 1.5.14 to 1.6.2
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-cli-v1.5.14...tauri-v1.6.2)

Updates `@tauri-apps/cli-win32-ia32-msvc` from 1.5.14 to 1.6.2
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-cli-v1.5.14...tauri-v1.6.2)

Updates `@tauri-apps/cli-win32-x64-msvc` from 1.5.14 to 1.6.2
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-cli-v1.5.14...tauri-v1.6.2)

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

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

Updates `@typescript-eslint/type-utils` from 7.13.1 to 7.2.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/type-utils/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.2.0/packages/type-utils)

Updates `@typescript-eslint/utils` from 7.13.1 to 7.2.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/utils/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.2.0/packages/utils)

Updates `acorn` from 8.12.0 to 8.12.1
- [Commits](acornjs/acorn@8.12.0...8.12.1)

Updates `ansi-escapes` from 6.2.1 to 7.0.0
- [Release notes](https://github.com/sindresorhus/ansi-escapes/releases)
- [Commits](sindresorhus/ansi-escapes@v6.2.1...v7.0.0)

Updates `aria-query` from 5.3.0 to 5.1.3
- [Changelog](https://github.com/A11yance/aria-query/blob/main/CHANGELOG.md)
- [Commits](A11yance/aria-query@v5.3.0...v5.1.3)

Updates `axe-core` from 4.7.0 to 4.10.0
- [Release notes](https://github.com/dequelabs/axe-core/releases)
- [Changelog](https://github.com/dequelabs/axe-core/blob/develop/CHANGELOG.md)
- [Commits](dequelabs/axe-core@v4.7.0...v4.10.0)

Updates `axobject-query` from 3.2.1 to 4.1.0
- [Changelog](https://github.com/A11yance/axobject-query/blob/main/CHANGELOG.md)
- [Commits](A11yance/axobject-query@v3.2.1...v4.1.0)

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

Updates `caniuse-lite` from 1.0.30001636 to 1.0.30001660
- [Commits](browserslist/caniuse-lite@1.0.30001636...1.0.30001660)

Updates `cli-cursor` from 4.0.0 to 5.0.0
- [Release notes](https://github.com/sindresorhus/cli-cursor/releases)
- [Commits](sindresorhus/cli-cursor@v4.0.0...v5.0.0)

Updates `cssnano-preset-default` from 7.0.2 to 7.0.6
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/[email protected]@7.0.6)

Updates `electron-to-chromium` from 1.4.803 to 1.5.23
- [Changelog](https://github.com/Kilian/electron-to-chromium/blob/master/CHANGELOG.md)
- [Commits](Kilian/electron-to-chromium@v1.4.803...v1.5.23)

Updates `enhanced-resolve` from 5.17.0 to 5.17.1
- [Release notes](https://github.com/webpack/enhanced-resolve/releases)
- [Commits](webpack/enhanced-resolve@v5.17.0...v5.17.1)

Updates `escalade` from 3.1.2 to 3.2.0
- [Release notes](https://github.com/lukeed/escalade/releases)
- [Commits](lukeed/escalade@v3.1.2...v3.2.0)

Updates `eslint-import-resolver-typescript` from 3.6.1 to 3.6.3
- [Release notes](https://github.com/import-js/eslint-import-resolver-typescript/releases)
- [Changelog](https://github.com/import-js/eslint-import-resolver-typescript/blob/master/CHANGELOG.md)
- [Commits](import-js/eslint-import-resolver-typescript@v3.6.1...v3.6.3)

Updates `eslint-module-utils` from 2.8.1 to 2.11.0
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases)
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/utils/CHANGELOG.md)
- [Commits](https://github.com/import-js/eslint-plugin-import/commits/v2.11.0/utils)

Updates `eslint-plugin-import` from 2.29.1 to 2.30.0
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases)
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md)
- [Commits](import-js/eslint-plugin-import@v2.29.1...v2.30.0)

Updates `eslint-plugin-jsx-a11y` from 6.8.0 to 6.10.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.10.0)

Updates `eslint-plugin-react` from 7.34.2 to 7.36.1
- [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.34.2...v7.36.1)

Updates `eslint-scope` from 8.0.1 to 8.0.2
- [Release notes](https://github.com/eslint/eslint-scope/releases)
- [Changelog](https://github.com/eslint/eslint-scope/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint-scope@v8.0.1...v8.0.2)

Updates `esquery` from 1.5.0 to 1.6.0
- [Commits](estools/esquery@v1.5.0...v1.6.0)

Updates `foreground-child` from 3.2.1 to 3.3.0
- [Changelog](https://github.com/tapjs/foreground-child/blob/main/CHANGELOG.md)
- [Commits](tapjs/foreground-child@v3.2.1...v3.3.0)

Updates `get-tsconfig` from 4.7.5 to 4.8.1
- [Release notes](https://github.com/privatenumber/get-tsconfig/releases)
- [Commits](privatenumber/get-tsconfig@v4.7.5...v4.8.1)

Updates `ignore` from 5.3.1 to 5.3.2
- [Release notes](https://github.com/kaelzhang/node-ignore/releases)
- [Changelog](https://github.com/kaelzhang/node-ignore/blob/master/CHANGELOG.md)
- [Commits](kaelzhang/node-ignore@5.3.1...5.3.2)

Updates `is-core-module` from 2.13.1 to 2.15.1
- [Changelog](https://github.com/inspect-js/is-core-module/blob/main/CHANGELOG.md)
- [Commits](inspect-js/is-core-module@v2.13.1...v2.15.1)

Updates `listr2` from 8.2.1 to 8.2.4
- [Release notes](https://github.com/listr2/listr2/releases)
- [Changelog](https://github.com/listr2/listr2/blob/master/release.config.cjs)
- [Commits](https://github.com/listr2/listr2/compare/[email protected]@8.2.4)

Updates `log-update` from 6.0.0 to 6.1.0
- [Release notes](https://github.com/sindresorhus/log-update/releases)
- [Commits](sindresorhus/log-update@v6.0.0...v6.1.0)

Updates `lru-cache` from 10.2.2 to 10.4.3
- [Changelog](https://github.com/isaacs/node-lru-cache/blob/main/CHANGELOG.md)
- [Commits](isaacs/node-lru-cache@v10.2.2...v10.4.3)

Updates `micromatch` from 4.0.7 to 4.0.8
- [Release notes](https://github.com/micromatch/micromatch/releases)
- [Changelog](https://github.com/micromatch/micromatch/blob/master/CHANGELOG.md)
- [Commits](micromatch/micromatch@4.0.7...4.0.8)

Updates `mimic-fn` from 2.1.0 to 4.0.0
- [Release notes](https://github.com/sindresorhus/mimic-fn/releases)
- [Commits](sindresorhus/mimic-function@v2.1.0...v4.0.0)

Updates `ms` from 2.1.2 to 2.1.3
- [Release notes](https://github.com/vercel/ms/releases)
- [Commits](vercel/ms@2.1.2...2.1.3)

Updates `node-releases` from 2.0.14 to 2.0.18
- [Commits](chicoxyzzy/node-releases@v2.0.14...v2.0.18)

Updates `object-inspect` from 1.13.1 to 1.13.2
- [Release notes](https://github.com/inspect-js/object-inspect/releases)
- [Changelog](https://github.com/inspect-js/object-inspect/blob/main/CHANGELOG.md)
- [Commits](inspect-js/object-inspect@v1.13.1...v1.13.2)

Updates `onetime` from 5.1.2 to 6.0.0
- [Release notes](https://github.com/sindresorhus/onetime/releases)
- [Commits](sindresorhus/onetime@v5.1.2...v6.0.0)

Updates `picocolors` from 1.0.1 to 1.1.0
- [Release notes](https://github.com/alexeyraspopov/picocolors/releases)
- [Changelog](https://github.com/alexeyraspopov/picocolors/blob/main/CHANGELOG.md)
- [Commits](alexeyraspopov/picocolors@v1.0.1...v1.1.0)

Updates `postcss-calc` from 10.0.0 to 10.0.2
- [Release notes](https://github.com/postcss/postcss-calc/releases)
- [Changelog](https://github.com/postcss/postcss-calc/blob/master/CHANGELOG.md)
- [Commits](postcss/postcss-calc@v10.0.0...v10.0.2)

Updates `postcss-colormin` from 7.0.0 to 7.0.2
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/[email protected]@7.0.2)

Updates `postcss-convert-values` from 7.0.0 to 7.0.4
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/[email protected]@7.0.4)

Updates `postcss-discard-comments` from 7.0.0 to 7.0.3
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/[email protected]@7.0.3)

Updates `postcss-discard-duplicates` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/[email protected]@7.0.1)

Updates `postcss-merge-longhand` from 7.0.1 to 7.0.4
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/[email protected]@7.0.4)

Updates `postcss-merge-rules` from 7.0.1 to 7.0.4
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/[email protected]@7.0.4)

Updates `postcss-minify-params` from 7.0.0 to 7.0.2
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/[email protected]@7.0.2)

Updates `postcss-minify-selectors` from 7.0.1 to 7.0.4
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/[email protected]@7.0.4)

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

Updates `postcss-normalize-unicode` from 7.0.0 to 7.0.2
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/[email protected]@7.0.2)

Updates `postcss-ordered-values` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/[email protected]@7.0.1)

Updates `postcss-reduce-initial` from 7.0.0 to 7.0.2
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/[email protected]@7.0.2)

Updates `postcss-selector-parser` from 6.1.0 to 6.1.2
- [Release notes](https://github.com/postcss/postcss-selector-parser/releases)
- [Changelog](https://github.com/postcss/postcss-selector-parser/blob/master/CHANGELOG.md)
- [Commits](postcss/postcss-selector-parser@v6.1.0...v6.1.2)

Updates `postcss-unique-selectors` from 7.0.1 to 7.0.3
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/[email protected]@7.0.3)

Updates `restore-cursor` from 4.0.0 to 5.1.0
- [Release notes](https://github.com/sindresorhus/restore-cursor/releases)
- [Commits](sindresorhus/restore-cursor@v4.0.0...v5.1.0)

Updates `signal-exit` from 3.0.7 to 4.1.0
- [Changelog](https://github.com/tapjs/signal-exit/blob/main/CHANGELOG.md)
- [Commits](tapjs/signal-exit@v3.0.7...v4.1.0)

Updates `source-map-js` from 1.2.0 to 1.2.1
- [Release notes](https://github.com/7rulnik/source-map-js/releases)
- [Changelog](https://github.com/7rulnik/source-map-js/blob/patch-0.6.1/CHANGELOG.md)
- [Commits](7rulnik/source-map-js@v1.2.0...v1.2.1)

Updates `stylehacks` from 7.0.1 to 7.0.4
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/[email protected]@7.0.4)

Updates `synckit` from 0.8.8 to 0.9.1
- [Release notes](https://github.com/un-ts/synckit/releases)
- [Changelog](https://github.com/un-ts/synckit/blob/main/CHANGELOG.md)
- [Commits](un-ts/synckit@v0.8.8...v0.9.1)

Updates `tslib` from 2.6.3 to 2.7.0
- [Release notes](https://github.com/Microsoft/tslib/releases)
- [Commits](microsoft/tslib@v2.6.3...v2.7.0)

Updates `undici-types` from 5.26.5 to 6.19.8
- [Release notes](https://github.com/nodejs/undici/releases)
- [Commits](nodejs/undici@v5.26.5...v6.19.8)

Updates `update-browserslist-db` from 1.0.16 to 1.1.0
- [Release notes](https://github.com/browserslist/update-db/releases)
- [Changelog](https://github.com/browserslist/update-db/blob/main/CHANGELOG.md)
- [Commits](https://github.com/browserslist/update-db/commits)

Updates `use-sync-external-store` from 1.2.0 to 1.2.2
- [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/HEAD/packages/use-sync-external-store)

Updates `which-builtin-type` from 1.1.3 to 1.1.4
- [Changelog](https://github.com/inspect-js/which-builtin-type/blob/main/CHANGELOG.md)
- [Commits](inspect-js/which-builtin-type@v1.1.3...v1.1.4)

Updates `yaml` from 2.4.5 to 2.5.1
- [Release notes](https://github.com/eemeli/yaml/releases)
- [Commits](eemeli/yaml@v2.4.5...v2.5.1)

---
updated-dependencies:
- dependency-name: "@radix-ui/react-dialog"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@radix-ui/react-slot"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@tauri-apps/api"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: date-fns
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: geist
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: lucide-react
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: next
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tailwind-merge
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: tauri-plugin-clipboard-api
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: zustand
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@tauri-apps/cli"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@testing-library/dom"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@testing-library/jest-dom"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@testing-library/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/jest"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/lodash"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: autoprefixer
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: cssnano
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: eslint-config-next
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: eslint-plugin-prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: eslint-plugin-simple-import-sort
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: husky
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: postcss-nesting
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: prettier-plugin-tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@babel/runtime"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@csstools/selector-resolve-nested"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: "@csstools/selector-specificity"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: "@eslint-community/regexpp"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@eslint/config-array"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@eslint/js"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@jridgewell/sourcemap-codec"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@next/env"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@next/eslint-plugin-next"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@next/swc-darwin-arm64"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@next/swc-darwin-x64"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@next/swc-linux-arm64-gnu"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@next/swc-linux-arm64-musl"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@next/swc-linux-x64-gnu"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@next/swc-linux-x64-musl"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@next/swc-win32-arm64-msvc"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@next/swc-win32-ia32-msvc"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@next/swc-win32-x64-msvc"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@rushstack/eslint-patch"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@tauri-apps/cli-darwin-arm64"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@tauri-apps/cli-darwin-x64"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@tauri-apps/cli-linux-arm-gnueabihf"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@tauri-apps/cli-linux-arm64-gnu"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@tauri-apps/cli-linux-arm64-musl"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@tauri-apps/cli-linux-x64-gnu"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@tauri-apps/cli-linux-x64-musl"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@tauri-apps/cli-win32-arm64-msvc"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@tauri-apps/cli-win32-ia32-msvc"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@tauri-apps/cli-win32-x64-msvc"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@types/prop-types"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/yargs"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@typescript-eslint/type-utils"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@typescript-eslint/utils"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: acorn
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: ansi-escapes
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: aria-query
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: axe-core
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: axobject-query
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: browserslist
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: caniuse-lite
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: cli-cursor
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: cssnano-preset-default
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: electron-to-chromium
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: enhanced-resolve
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: escalade
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: eslint-import-resolver-typescript
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: eslint-module-utils
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: eslint-plugin-import
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: eslint-plugin-jsx-a11y
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: eslint-plugin-react
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: eslint-scope
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: esquery
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: foreground-child
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: get-tsconfig
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: ignore
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: is-core-module
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: listr2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: log-update
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: lru-cache
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: micromatch
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: mimic-fn
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: ms
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: node-releases
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: object-inspect
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: onetime
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: picocolors
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: postcss-calc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: postcss-colormin
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: postcss-convert-values
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: postcss-discard-comments
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: postcss-discard-duplicates
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: postcss-merge-longhand
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: postcss-merge-rules
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: postcss-minify-params
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: postcss-minify-selectors
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: postcss-nested
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: postcss-normalize-unicode
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: postcss-ordered-values
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: postcss-reduce-initial
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: postcss-selector-parser
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: postcss-unique-selectors
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: restore-cursor
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: signal-exit
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: source-map-js
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: stylehacks
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: synckit
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: tslib
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: undici-types
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: update-browserslist-db
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: use-sync-external-store
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: which-builtin-type
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: yaml
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 16, 2024
Copy link

vercel bot commented Sep 16, 2024

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

Name Status Preview Comments Updated (UTC)
pasta ✅ Ready (Inspect) Visit Preview 💬 Add feedback Sep 16, 2024 9:02pm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants