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 versioning group across 1 directory with 46 updates #161

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 25, 2024

Bumps the versioning group with 46 updates in the / directory:

Package From To
@heroicons/react 2.0.18 2.1.4
@prisma/client 5.3.0 5.16.0
@tanstack/match-sorter-utils 8.8.4 8.15.1
@tanstack/react-table 8.9.9 8.17.3
@tanstack/react-virtual 3.0.0-beta.18 3.7.0
@tanstack/table-core 8.9.9 8.17.3
@trpc/client 10.38.3 10.45.2
@trpc/next 10.38.3 10.45.2
@trpc/react-query 10.38.3 10.45.2
@trpc/server 10.38.3 10.45.2
clsx 2.0.0 2.1.1
dayjs 1.11.9 1.11.11
dotenv-cli 7.3.0 7.4.2
jotai 2.4.2 2.8.3
next-auth 4.23.1 4.24.7
next-seo 6.1.0 6.5.0
nodemailer 6.9.5 6.9.14
react 18.2.0 18.3.1
@types/react 18.2.21 18.3.3
react-dom 18.2.0 18.3.1
@types/react-dom 18.2.7 18.3.0
react-hook-form 7.46.1 7.52.0
react-intersection-observer 9.5.2 9.10.3
sharp 0.32.5 0.33.4
tiny-invariant 1.3.1 1.3.3
zod 3.22.2 3.23.8
@faker-js/faker 8.0.2 8.4.1
@playwright/test 1.38.0 1.45.0
@tailwindcss/forms 0.5.6 0.5.7
@testing-library/cypress 10.0.1 10.0.2
@types/react-csv 1.1.4 1.1.10
@types/testing-library__cypress 5.0.10 5.0.13
@vitejs/plugin-react 4.0.4 4.3.1
autoprefixer 10.4.15 10.4.19
cypress 13.2.0 13.12.0
eslint-config-prettier 9.0.0 9.1.0
eslint-plugin-jsx-a11y 6.7.1 6.9.0
postcss 8.4.29 8.4.38
prettier 3.0.3 3.3.2
prettier-plugin-tailwindcss 0.5.4 0.6.5
prisma 5.3.0 5.16.0
start-server-and-test 2.0.0 2.0.4
tailwindcss 3.3.3 3.4.4
ts-node 10.9.1 10.9.2
typescript 5.2.2 5.5.2
vite-tsconfig-paths 4.2.1 4.3.2

Updates @heroicons/react from 2.0.18 to 2.1.4

Release notes

Sourced from @​heroicons/react's releases.

v2.1.4

Fixed

  • Improve tree-shakability of React package (#1192)

v2.1.3

  • Improve project READMEs (#1152)

v2.1.2

  • Include license file with published packages (#1151)

v2.1.1

Fixed

  • Fixed chevrons in mini set (#1106)

v2.1.0

Heroicons Micro

We just released Heroicons v2.1 which includes a brand new micro style — a full set of almost three hundred 16×16 icons designed for tighter, higher density UIs.

Learn more about the new set in the announcement post →

Added

  • Added full set of 16×16 micro icons
  • Added arrow-left-start-on-rectangle and arrow-right-end-on-rectangle icons to all sets

Changes

  • Minor improvements to the receipt-percent, receipt-refund, speaker-wave, speaker-x-mark, tag, ticket, window, video-camera-slash, plus, and minus icons in the mini set
  • Minor improvements to chevron-down, chevron-left, chevron-right, chevron-up, and chevron-up-down icons in all sets

Deprecations

  • Renamed arrow-left-on-rectangle to arrow-left-end-on-rectangle
  • Renamed arrow-right-on-rectangle to arrow-right-start-on-rectangle
  • All *-small icons in the outline and solid sets, use mini set instead
  • All *-small icons in the mini set, use micro set instead
Changelog

Sourced from @​heroicons/react's changelog.

[2.1.4] - 2024-06-17

Fixed

  • Improve tree-shakability of React package (#1192)

[2.1.3] - 2024-03-22

  • Improve project READMEs (#1152)

[2.1.2] - 2024-03-22

  • Include license file with published packages (#1151)

[2.1.1] - 2023-12-18

Fixed

  • Fixed chevrons in mini set (#1106)

[2.1.0] - 2023-12-18

Added

  • Added micro icon set (#1104)
  • Rebuilt some icons for better clarity (#1104)
Commits
Maintainer changes

This version was pushed to npm by thecrypticace, a new releaser for @​heroicons/react since your current version.


Updates @prisma/client from 5.3.0 to 5.16.0

Release notes

Sourced from @​prisma/client's releases.

5.16.0

🌟 Help us spread the word about Prisma by starring the repo or tweeting about the release. 🌟

Highlights

Omit model fields globally

With Prisma ORM 5.16.0 we’re more than happy to announce that we’re expanding the omitApi Preview feature to also include the ability to omit fields globally.

When the Preview feature is enabled, you’re able to define fields to omit when instantiating Prisma Client.

const prisma = new PrismaClient({
  omit: {
    user: {
      // make sure that password is never queried.
      password: true,
    },
  },
});

You’re also able to omit fields from multiple models and multiple fields from the same model

const prisma = new PrismaClient({
  omit: {
    user: { 
      // make sure that password and internalId are never queried.
      password: true,
      internalId: true,
    },
    post: {
      secretkey: true,
    },
  },
});

With both local and global omit, you now have the flexibility to completely remove sensitive fields while also tailoring individual queries. If you need the ability to generally omit a field except in a specific query, you can also overwrite a global omit locally

const prisma = new PrismaClient({
  omit: {
    user: { 
      // password is omitted globally.
      password: true,
    },
  },
});
</tr></table> 

... (truncated)

Commits
  • 1d34b5b chore(deps): update engines to 5.16.0-24.34ace0eb2704183d2c05b60b52fba5c43c13...
  • d433bb7 feat(client): provide a workaround for Vitest's struggles with "getQueryEngin...
  • 65e17a0 chore(deps): update engines to 5.16.0-23.d56fe2ee624826f693e591a3035694073d17...
  • c64e77f chore(deps): update engines to 5.16.0-21.9f3337c21c619aa48465f3766f6466c74ec7...
  • 6a6646c fix(cli): Always resolve output relatively to a file it defined in (#24598)
  • 617042d chore(deps): update engines to 5.16.0-20.bd07760d57443d11e2a958fd18bf524bbac1...
  • a1121f1 chore(deps): update dependency @​swc/core to v1.6.3 (#24546)
  • dbad2af chore(deps): update dependency wrangler to v3.61.0 (#24578)
  • 8808e17 feat(client): Implement global omit configuration (#24513)
  • d988aff chore(deps): update engines to 5.16.0-19.5e01b9388099d5c46de4969759ebb24b001a...
  • Additional commits viewable in compare view

Updates @tanstack/match-sorter-utils from 8.8.4 to 8.15.1

Release notes

Sourced from @​tanstack/match-sorter-utils's releases.

v8.15.1

Version 8.15.1 - 3/28/2024, 5:17 PM

Changes

Fix

  • export AccessorFnColumnDefBase (#5445) (eb6943ff) by Mingyu Cui

Chore

  • split filtering api docs · 3b3b3b3b (#5446) (ac148c74) by Kevin Van Cott
  • dev dependencies refactor (#5431) (e6c6f96f) by Kevin Van Cott

Docs

  • Update global-filtering.md (366ec1f8) by Kevin Van Cott
  • add faker to qwik examples (7a001802) by Kevin Van Cott
  • add sorting example link (411213b5) by Kevin Van Cott
  • qwik example imports (#5429) (313abc77) by Kevin Van Cott
  • more state docs for other frameworks (#5428) (4faa788b) by Kevin Van Cott

Other

  • upgrade packages (#5439) (3952c34b) by Kevin Van Cott
  • Update table-state.md (3a298b24) by Kevin Van Cott

Packages

  • @​tanstack/table-core@​8.15.1
  • @​tanstack/qwik-table@​8.15.1
  • @​tanstack/react-table@​8.15.1
  • @​tanstack/solid-table@​8.15.1
  • @​tanstack/vue-table@​8.15.1
  • @​tanstack/svelte-table@​8.15.1
  • @​tanstack/react-table-devtools@​8.15.1
  • @​tanstack/match-sorter-utils@​8.15.1

v8.15.0

Version 8.15.0 - 3/22/2024, 1:03 AM

Changes

Feat

  • qwik-table adapter (#5420) (f99f5007) by Anxhi Rroshi

Chore

  • package upgrades (#5425) (bbf7fca7) by Kevin Van Cott

... (truncated)

Commits

Updates @tanstack/react-table from 8.9.9 to 8.17.3

Release notes

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

v8.17.3

Version 8.17.3 - 5/14/2024, 2:44 PM

Changes

Fix

  • Add a missing guard for undefined in the getFilteredRowModel function. (#5555) (5411f1a1) by @​jjh2613

Packages

  • @​tanstack/table-core@​8.17.3
  • @​tanstack/qwik-table@​8.17.3
  • @​tanstack/react-table@​8.17.3
  • @​tanstack/solid-table@​8.17.3
  • @​tanstack/vue-table@​8.17.3
  • @​tanstack/svelte-table@​8.17.3
  • @​tanstack/react-table-devtools@​8.17.3
  • @​tanstack/angular-table@​8.17.3

v8.17.2

Version 8.17.2 - 5/13/2024, 1:36 PM

Changes

Fix

Packages

  • @​tanstack/angular-table@​8.17.2

v8.17.1

Version 8.17.1 - 5/12/2024, 10:28 PM

Changes

Fix

  • angular esm exports (#5549) (8a55517d) by Kevin Van Cott

Docs

  • add faker dep to example (e8495089) by Kevin Van Cott
  • add missing faker dep to example (0253d527) by Kevin Van Cott
  • fix example link (a3d07674) by Kevin Van Cott

Packages

... (truncated)

Commits

Updates @tanstack/react-virtual from 3.0.0-beta.18 to 3.7.0

Release notes

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

v3.7.0

Version 3.7.0 - 6/21/2024, 1:17 PM

Changes

Feat

  • add measureElement on virtual item, when we can"t relay on node.isConnected (#737) (afeb2fd) by @​piecyk

Packages

  • @​tanstack/virtual-core@​3.7.0
  • @​tanstack/react-virtual@​3.7.0
  • @​tanstack/solid-virtual@​3.7.0
  • @​tanstack/svelte-virtual@​3.7.0
  • @​tanstack/vue-virtual@​3.7.0

v3.6.0

Version 3.6.0 - 6/21/2024, 9:17 AM

Changes

Feat

Packages

  • @​tanstack/virtual-core@​3.6.0
  • @​tanstack/react-virtual@​3.6.0
  • @​tanstack/solid-virtual@​3.6.0
  • @​tanstack/svelte-virtual@​3.6.0
  • @​tanstack/vue-virtual@​3.6.0

v3.5.1

Version 3.5.1 - 6/5/2024, 9:51 AM

Changes

Fix

  • virtual-core: add support to multi window (#738) (19b4272) by Amber

Docs

  • remove "coming soon" from Vue Virtual docs title (#728) (c3410c2) by @​BrianMitchL
  • update scrollToFn/Offset/Index/ options (#720) (d192756) by Jeffrey Kwan

Packages

... (truncated)

Commits
  • 217514c release: v3.7.0
  • afeb2fd feat: add measureElement on virtual item, when we can't relay on node.isConne...
  • 20fc206 release: v3.6.0
  • b3b8897 feat(virtual-core): add enabled option (#741)
  • 3562e06 release: v3.5.1
  • 19b4272 fix(virtual-core): add support to multi window (#738)
  • c3410c2 docs: remove "coming soon" from Vue Virtual docs title (#728)
  • d192756 docs: update scrollToFn/Offset/Index/ options (#720)
  • 072205b release: v3.5.0
  • ab6ede8 feat: add isScrollingResetDelay option to Virtualizer (#719)
  • Additional commits viewable in compare view

Updates @tanstack/table-core from 8.9.9 to 8.17.3

Release notes

Sourced from @​tanstack/table-core's releases.

v8.17.3

Version 8.17.3 - 5/14/2024, 2:44 PM

Changes

Fix

  • Add a missing guard for undefined in the getFilteredRowModel function. (#5555) (5411f1a1) by @​jjh2613

Packages

  • @​tanstack/table-core@​8.17.3
  • @​tanstack/qwik-table@​8.17.3
  • @​tanstack/react-table@​8.17.3
  • @​tanstack/solid-table@​8.17.3
  • @​tanstack/vue-table@​8.17.3
  • @​tanstack/svelte-table@​8.17.3
  • @​tanstack/react-table-devtools@​8.17.3
  • @​tanstack/angular-table@​8.17.3

v8.17.2

Version 8.17.2 - 5/13/2024, 1:36 PM

Changes

Fix

Packages

  • @​tanstack/angular-table@​8.17.2

v8.17.1

Version 8.17.1 - 5/12/2024, 10:28 PM

Changes

Fix

  • angular esm exports (#5549) (8a55517d) by Kevin Van Cott

Docs

  • add faker dep to example (e8495089) by Kevin Van Cott
  • add missing faker dep to example (0253d527) by Kevin Van Cott
  • fix example link (a3d07674) by Kevin Van Cott

Packages

... (truncated)

Commits
  • 85f3f9e release: v8.17.3
  • 5411f1a fix: Add a missing guard for undefined in the getFilteredRowModel function. (...
  • b9ca88d release: v8.16.0
  • d2ae539 feat: new sortUndefined last and first options (#5486)
  • dad9126 release: v8.15.3
  • fce4725 fix(table-core): column getCanGroup always resolving to true (#4843)
  • 298a60b release: v8.15.2
  • 84a3513 fix(table-core): narrow types for columns created by ColumnHelper (#5424)
  • 75fb746 release: v8.15.1
  • eb6943f fix: export AccessorFnColumnDefBase (#5445)
  • Additional commits viewable in compare view

Updates @trpc/client from 10.38.3 to 10.45.2

Release notes

Sourced from @​trpc/client's releases.

v10.45.2

What's Changed

  • patch(server): upgrade to typescript 5.4 and do fixes due to breaking changes in typescript by @​KATT in trpc/trpc#5560

Full Changelog: trpc/trpc@v10.45.1...v10.45.2

v10.45.1

What's Changed

New Contributors

Full Changelog: trpc/trpc@v10.45.0...v10.45.1

v10.45.0

What's Changed

New Contributors

Full Changelog: trpc/trpc@v10.44.1...v10.45.0

v10.44.1

What's Changed

New Contributors

Full Changelog: trpc/trpc@v10.44.0...v10.44.1

v10.44.0

... (truncated)

Commits

Updates @trpc/next from 10.38.3 to 10.45.2

Release notes

Sourced from @​trpc/next's releases.

v10.45.2

What's Changed

  • patch(server): upgrade to typescript 5.4 and do fixes due to breaking changes in typescript by @​KATT in trpc/trpc#5560

Full Changelog: trpc/trpc@v10.45.1...v10.45.2

v10.45.1

What's Changed

New Contributors

Full Changelog: trpc/trpc@v10.45.0...v10.45.1

v10.45.0

What's Changed

New Contributors

Full Changelog: trpc/trpc@v10.44.1...v10.45.0

v10.44.1

What's Changed

New Contributors

Full Changelog: trpc/trpc@v10.44.0...v10.44.1

v10.44.0

... (truncated)

Commits

Updates @trpc/react-query from 10.38.3 to 10.45.2

Release notes

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

v10.45.2

What's Changed

  • patch(server): upgrade to typescript 5.4 and do fixes due to breaking changes in typescript by @​KATT in trpc/trpc#5560

Full Changelog: trpc/trpc@v10.45.1...v10.45.2

v10.45.1

What's Changed

New Contributors

Full Changelog: trpc/trpc@v10.45.0...v10.45.1

v10.45.0

What's Changed

New Contributors

Full Changelog: trpc/trpc@v10.44.1...v10.45.0

v10.44.1

What's Changed

New Contributors

Full Changelog: trpc/trpc@v10.44.0...v10.44.1

v10.44.0

... (truncated)

Commits

Updates @trpc/server from 10.38.3 to 10.45.2

Release notes

Sourced from @​trpc/server's releases.

v10.45.2

What's Changed

  • patch(server): upgrade to typescript 5.4 and do fixes due to breaking changes in typescript by @​KATT in trpc/trpc#5560

Full Changelog: trpc/trpc@v10.45.1...v10.45.2

v10.45.1

What's Changed

New Contributors

Full Changelog: trpc/trpc@v10.45.0...v10.45.1

v10.45.0

What's Changed

New Contributors

Full Changelog: trpc/trpc@v10.44.1...v10.45.0

v10.44.1

What's Changed

New Contributors

Full Changelog: trpc/trpc@v10.44.0...v10.44.1

v10.44.0

... (truncated)

Commits

Updates clsx from 2.0.0 to 2.1.1

Release notes

Sourced from clsx's releases.

v2.1.1

Patches

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

Chores

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

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

v2.1.0

Features

  • Add new clsx/lite submodule for string-only usage: 1a49142

    This is a 140b version of clsx that is ideal for Tailwind and/or React contexts, which typically follow this clsx usage pattern:

    clsx('foo bar', props.maybe && 'conditional classes', props.className);

    Important: This clsx/lite module ignores all non-string arguments and is therefore not a 1:1 replacement for clsx itself!

    import { clsx } from 'clsx';
    import { clsx as lite } from 'clsx/lite';
    // strings-only usage is identical
    clsx('foo', null, 'bar', true && 'baz'); //=> "foo bar baz"
    lite('foo', null, 'bar', true && 'baz'); //=> "foo bar baz"
    // clsx/lite ignores all non-strings
    clsx('foo', { a: true, b: false, c: true }); //=> "foo a c"
    lite('foo', { a: true, b: false, c: true }); //=> "foo"


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

v2.0.1

Patches

  • (perf) Cache arguments.length & array.length for 6% performance gain (#26): deff09b

... (truncated)

Commits

…ates

Bumps the versioning group with 46 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@heroicons/react](https://github.com/tailwindlabs/heroicons) | `2.0.18` | `2.1.4` |
| [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) | `5.3.0` | `5.16.0` |
| [@tanstack/match-sorter-utils](https://github.com/TanStack/table/tree/HEAD/packages/match-sorter-utils) | `8.8.4` | `8.15.1` |
| [@tanstack/react-table](https://github.com/TanStack/table/tree/HEAD/packages/react-table) | `8.9.9` | `8.17.3` |
| [@tanstack/react-virtual](https://github.com/tanstack/virtual) | `3.0.0-beta.18` | `3.7.0` |
| [@tanstack/table-core](https://github.com/TanStack/table/tree/HEAD/packages/table-core) | `8.9.9` | `8.17.3` |
| [@trpc/client](https://github.com/trpc/trpc/tree/HEAD/packages/client) | `10.38.3` | `10.45.2` |
| [@trpc/next](https://github.com/trpc/trpc/tree/HEAD/packages/next) | `10.38.3` | `10.45.2` |
| [@trpc/react-query](https://github.com/trpc/trpc/tree/HEAD/packages/react) | `10.38.3` | `10.45.2` |
| [@trpc/server](https://github.com/trpc/trpc/tree/HEAD/packages/server) | `10.38.3` | `10.45.2` |
| [clsx](https://github.com/lukeed/clsx) | `2.0.0` | `2.1.1` |
| [dayjs](https://github.com/iamkun/dayjs) | `1.11.9` | `1.11.11` |
| [dotenv-cli](https://github.com/entropitor/dotenv-cli) | `7.3.0` | `7.4.2` |
| [jotai](https://github.com/pmndrs/jotai) | `2.4.2` | `2.8.3` |
| [next-auth](https://github.com/nextauthjs/next-auth) | `4.23.1` | `4.24.7` |
| [next-seo](https://github.com/garmeeh/next-seo) | `6.1.0` | `6.5.0` |
| [nodemailer](https://github.com/nodemailer/nodemailer) | `6.9.5` | `6.9.14` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `18.2.0` | `18.3.1` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.2.21` | `18.3.3` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `18.2.0` | `18.3.1` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.2.7` | `18.3.0` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.46.1` | `7.52.0` |
| [react-intersection-observer](https://github.com/thebuilder/react-intersection-observer) | `9.5.2` | `9.10.3` |
| [sharp](https://github.com/lovell/sharp) | `0.32.5` | `0.33.4` |
| [tiny-invariant](https://github.com/alexreardon/tiny-invariant) | `1.3.1` | `1.3.3` |
| [zod](https://github.com/colinhacks/zod) | `3.22.2` | `3.23.8` |
| [@faker-js/faker](https://github.com/faker-js/faker) | `8.0.2` | `8.4.1` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.38.0` | `1.45.0` |
| [@tailwindcss/forms](https://github.com/tailwindlabs/tailwindcss-forms) | `0.5.6` | `0.5.7` |
| [@testing-library/cypress](https://github.com/testing-library/cypress-testing-library) | `10.0.1` | `10.0.2` |
| [@types/react-csv](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-csv) | `1.1.4` | `1.1.10` |
| [@types/testing-library__cypress](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/testing-library__cypress) | `5.0.10` | `5.0.13` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `4.0.4` | `4.3.1` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.15` | `10.4.19` |
| [cypress](https://github.com/cypress-io/cypress) | `13.2.0` | `13.12.0` |
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `9.0.0` | `9.1.0` |
| [eslint-plugin-jsx-a11y](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y) | `6.7.1` | `6.9.0` |
| [postcss](https://github.com/postcss/postcss) | `8.4.29` | `8.4.38` |
| [prettier](https://github.com/prettier/prettier) | `3.0.3` | `3.3.2` |
| [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) | `0.5.4` | `0.6.5` |
| [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) | `5.3.0` | `5.16.0` |
| [start-server-and-test](https://github.com/bahmutov/start-server-and-test) | `2.0.0` | `2.0.4` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.3.3` | `3.4.4` |
| [ts-node](https://github.com/TypeStrong/ts-node) | `10.9.1` | `10.9.2` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.2.2` | `5.5.2` |
| [vite-tsconfig-paths](https://github.com/aleclarson/vite-tsconfig-paths) | `4.2.1` | `4.3.2` |



Updates `@heroicons/react` from 2.0.18 to 2.1.4
- [Release notes](https://github.com/tailwindlabs/heroicons/releases)
- [Changelog](https://github.com/tailwindlabs/heroicons/blob/master/CHANGELOG.md)
- [Commits](tailwindlabs/heroicons@v2.0.18...v2.1.4)

Updates `@prisma/client` from 5.3.0 to 5.16.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/5.16.0/packages/client)

Updates `@tanstack/match-sorter-utils` from 8.8.4 to 8.15.1
- [Release notes](https://github.com/TanStack/table/releases)
- [Commits](https://github.com/TanStack/table/commits/v8.15.1/packages/match-sorter-utils)

Updates `@tanstack/react-table` from 8.9.9 to 8.17.3
- [Release notes](https://github.com/TanStack/table/releases)
- [Commits](https://github.com/TanStack/table/commits/v8.17.3/packages/react-table)

Updates `@tanstack/react-virtual` from 3.0.0-beta.18 to 3.7.0
- [Release notes](https://github.com/tanstack/virtual/releases)
- [Commits](TanStack/virtual@v3.0.0-beta.18...v3.7.0)

Updates `@tanstack/table-core` from 8.9.9 to 8.17.3
- [Release notes](https://github.com/TanStack/table/releases)
- [Commits](https://github.com/TanStack/table/commits/v8.17.3/packages/table-core)

Updates `@trpc/client` from 10.38.3 to 10.45.2
- [Release notes](https://github.com/trpc/trpc/releases)
- [Commits](https://github.com/trpc/trpc/commits/v10.45.2/packages/client)

Updates `@trpc/next` from 10.38.3 to 10.45.2
- [Release notes](https://github.com/trpc/trpc/releases)
- [Commits](https://github.com/trpc/trpc/commits/v10.45.2/packages/next)

Updates `@trpc/react-query` from 10.38.3 to 10.45.2
- [Release notes](https://github.com/trpc/trpc/releases)
- [Commits](https://github.com/trpc/trpc/commits/v10.45.2/packages/react)

Updates `@trpc/server` from 10.38.3 to 10.45.2
- [Release notes](https://github.com/trpc/trpc/releases)
- [Commits](https://github.com/trpc/trpc/commits/v10.45.2/packages/server)

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

Updates `dayjs` from 1.11.9 to 1.11.11
- [Release notes](https://github.com/iamkun/dayjs/releases)
- [Changelog](https://github.com/iamkun/dayjs/blob/dev/CHANGELOG.md)
- [Commits](iamkun/dayjs@v1.11.9...v1.11.11)

Updates `dotenv-cli` from 7.3.0 to 7.4.2
- [Release notes](https://github.com/entropitor/dotenv-cli/releases)
- [Commits](entropitor/dotenv-cli@v7.3.0...v7.4.2)

Updates `jotai` from 2.4.2 to 2.8.3
- [Release notes](https://github.com/pmndrs/jotai/releases)
- [Commits](pmndrs/jotai@v2.4.2...v2.8.3)

Updates `next-auth` from 4.23.1 to 4.24.7
- [Release notes](https://github.com/nextauthjs/next-auth/releases)
- [Commits](https://github.com/nextauthjs/next-auth/compare/[email protected]@4.24.7)

Updates `next-seo` from 6.1.0 to 6.5.0
- [Release notes](https://github.com/garmeeh/next-seo/releases)
- [Commits](garmeeh/next-seo@v6.1.0...v6.5.0)

Updates `nodemailer` from 6.9.5 to 6.9.14
- [Release notes](https://github.com/nodemailer/nodemailer/releases)
- [Changelog](https://github.com/nodemailer/nodemailer/blob/master/CHANGELOG.md)
- [Commits](nodemailer/nodemailer@v6.9.5...v6.9.14)

Updates `react` from 18.2.0 to 18.3.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v18.3.1/packages/react)

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

Updates `react-dom` from 18.2.0 to 18.3.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v18.3.1/packages/react-dom)

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

Updates `react-hook-form` from 7.46.1 to 7.52.0
- [Release notes](https://github.com/react-hook-form/react-hook-form/releases)
- [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
- [Commits](react-hook-form/react-hook-form@v7.46.1...v7.52.0)

Updates `react-intersection-observer` from 9.5.2 to 9.10.3
- [Release notes](https://github.com/thebuilder/react-intersection-observer/releases)
- [Commits](thebuilder/react-intersection-observer@v9.5.2...v9.10.3)

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

Updates `tiny-invariant` from 1.3.1 to 1.3.3
- [Release notes](https://github.com/alexreardon/tiny-invariant/releases)
- [Commits](alexreardon/tiny-invariant@v1.3.1...v1.3.3)

Updates `zod` from 3.22.2 to 3.23.8
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Changelog](https://github.com/colinhacks/zod/blob/main/CHANGELOG.md)
- [Commits](colinhacks/zod@v3.22.2...v3.23.8)

Updates `@faker-js/faker` from 8.0.2 to 8.4.1
- [Release notes](https://github.com/faker-js/faker/releases)
- [Changelog](https://github.com/faker-js/faker/blob/next/CHANGELOG.md)
- [Commits](faker-js/faker@v8.0.2...v8.4.1)

Updates `@playwright/test` from 1.38.0 to 1.45.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.38.0...v1.45.0)

Updates `@tailwindcss/forms` from 0.5.6 to 0.5.7
- [Release notes](https://github.com/tailwindlabs/tailwindcss-forms/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss-forms/blob/master/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss-forms@v0.5.6...v0.5.7)

Updates `@testing-library/cypress` from 10.0.1 to 10.0.2
- [Release notes](https://github.com/testing-library/cypress-testing-library/releases)
- [Changelog](https://github.com/testing-library/cypress-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/cypress-testing-library@v10.0.1...v10.0.2)

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

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

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

Updates `@types/testing-library__cypress` from 5.0.10 to 5.0.13
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/testing-library__cypress)

Updates `@vitejs/plugin-react` from 4.0.4 to 4.3.1
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/v4.3.1/packages/plugin-react)

Updates `autoprefixer` from 10.4.15 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.15...10.4.19)

Updates `cypress` from 13.2.0 to 13.12.0
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](cypress-io/cypress@v13.2.0...v13.12.0)

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

Updates `eslint-plugin-jsx-a11y` from 6.7.1 to 6.9.0
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/main/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-jsx-a11y@v6.7.1...v6.9.0)

Updates `postcss` from 8.4.29 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.29...8.4.38)

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

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

Updates `prisma` from 5.3.0 to 5.16.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/5.16.0/packages/cli)

Updates `start-server-and-test` from 2.0.0 to 2.0.4
- [Release notes](https://github.com/bahmutov/start-server-and-test/releases)
- [Commits](bahmutov/start-server-and-test@v2.0.0...v2.0.4)

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

Updates `ts-node` from 10.9.1 to 10.9.2
- [Release notes](https://github.com/TypeStrong/ts-node/releases)
- [Changelog](https://github.com/TypeStrong/ts-node/blob/main/development-docs/release-template.md)
- [Commits](TypeStrong/ts-node@v10.9.1...v10.9.2)

Updates `typescript` from 5.2.2 to 5.5.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.2.2...v5.5.2)

Updates `vite-tsconfig-paths` from 4.2.1 to 4.3.2
- [Release notes](https://github.com/aleclarson/vite-tsconfig-paths/releases)
- [Commits](aleclarson/vite-tsconfig-paths@v4.2.1...v4.3.2)

---
updated-dependencies:
- dependency-name: "@heroicons/react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: "@prisma/client"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: "@tanstack/match-sorter-utils"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: "@tanstack/react-table"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: "@tanstack/react-virtual"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: "@tanstack/table-core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: "@trpc/client"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: "@trpc/next"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: "@trpc/react-query"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: "@trpc/server"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: clsx
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: dayjs
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versioning
- dependency-name: dotenv-cli
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: jotai
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: next-auth
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: next-seo
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: nodemailer
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versioning
- dependency-name: react
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: react-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: react-hook-form
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: react-intersection-observer
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: sharp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: tiny-invariant
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versioning
- dependency-name: zod
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: "@faker-js/faker"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: "@tailwindcss/forms"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: versioning
- dependency-name: "@testing-library/cypress"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: versioning
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: "@types/react-csv"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: versioning
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: "@types/testing-library__cypress"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: versioning
- dependency-name: "@vitejs/plugin-react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: autoprefixer
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: versioning
- dependency-name: cypress
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: eslint-config-prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: eslint-plugin-jsx-a11y
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: versioning
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: prettier-plugin-tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: prisma
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: start-server-and-test
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: versioning
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: ts-node
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: versioning
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: versioning
- dependency-name: vite-tsconfig-paths
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: versioning
...

Signed-off-by: dependabot[bot] <[email protected]>
Copy link

vercel bot commented Jun 25, 2024

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

Name Status Preview Comments Updated (UTC)
invoys ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 25, 2024 9:56pm

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jun 25, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants