invoys icon indicating copy to clipboard operation
invoys copied to clipboard

chore(deps): bump the versioning group across 1 directory with 45 updates

Open dependabot[bot] opened this issue 9 months ago • 1 comments

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

Package From To
@heroicons/react 2.0.18 2.1.3
@prisma/client 5.3.0 5.14.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.5.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.1
next-auth 4.23.1 4.24.7
next-seo 6.1.0 6.5.0
nodemailer 6.9.5 6.9.13
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.51.5
react-intersection-observer 9.5.2 9.10.2
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.44.1
@tailwindcss/forms 0.5.6 0.5.7
@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.0
autoprefixer 10.4.15 10.4.19
cypress 13.2.0 13.10.0
eslint-config-prettier 9.0.0 9.1.0
eslint-plugin-jsx-a11y 6.7.1 6.8.0
postcss 8.4.29 8.4.38
prettier 3.0.3 3.2.5
prettier-plugin-tailwindcss 0.5.4 0.5.14
prisma 5.3.0 5.14.0
start-server-and-test 2.0.0 2.0.3
tailwindcss 3.3.3 3.4.3
ts-node 10.9.1 10.9.2
typescript 5.2.2 5.4.5
vite-tsconfig-paths 4.2.1 4.3.2

Updates @heroicons/react from 2.0.18 to 2.1.3

Release notes

Sourced from @​heroicons/react's releases.

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

Updates @prisma/client from 5.3.0 to 5.14.0

Release notes

Sourced from @​prisma/client's releases.

5.14.0

Today, we are excited to share the 5.14.0 stable release 🎉

🌟 Help us spread the word about Prisma by starring the repo ☝️ or posting on X about the release. 🌟

Highlights

Share your feedback about Prisma ORM

We want to know how you like working with Prisma ORM in your projects! Please take our 2min survey and let us know what you like or where we can improve 🙏

createManyAndReturn()

We’re happy to announce the availability of a new, top-level Prisma Client query: createManyAndReturn(). It works similarly to createMany() but uses a RETURNING clause in the SQL query to retrieve the records that were just created.

Here’s an example of creating multiple posts and then immediately returning those posts.

const postBodies = req.json()['posts']

const posts = prisma.post.createManyAndReturn({ data: postBodies });

return posts

Additionally,createManyAndReturn() supports the same options as findMany(), such as the ability to return only specific fields.

const postBodies = req.json()['posts']

const postTitles = prisma.post.createManyAndReturn({ data: postBodies, select: { title: true, }, });

return postTitles

Full documentation for this feature can be found in the Prisma Client API Reference.

Note: Because createManyAndReturn() uses the RETURNING clause, it is only supported by PostgreSQL, CockroachDB, and SQLite databases. At this time, relationLoadStrategy: join is not supported in createManyAndReturn() queries.

MongoDB performance improvements

Previously, Prisma ORM suffered from performance issues when using the in operator or when including related models in queries against a MongoDB database. These queries were translated by the Prisma query engine in such a way that indexes were skipped and collection scans were used, leading to slower queries especially on large datasets.

... (truncated)

Commits
  • e0006b1 chore(deps): update engines to 5.14.0-25.e9771e62de70f79a5e1c604a2d7c8e2a0a87...
  • 271d834 chore(deps): update engines to 5.14.0-24.879beb2a005f47f60608de797a554c8a500e...
  • d2701d4 feat: create no models flag for generate command (#24160)
  • 51ff5e4 chore(deps): update engines to 5.14.0-23.079da82321947525558fa7146f7737149538...
  • ea28e76 chore(deps): update dependency wrangler to v3.55.0 (#24147)
  • 7e66bc6 chore(deps): update engines to 5.14.0-21.6eec1600785bbff7acedfa57bc6826cdac2e...
  • 6fcc818 feat(cli): add prismaSchemaFolder support to prisma generate via `mergeSc...
  • 23aba0b docs: remove references to Prisma Slack (#24128)
  • 52589ae chore: Remove issue link from "Client did not initialize yet" (#24117)
  • c22724e feat(cli): ground work for prismaSchemaFolder, implementing validate, `form...
  • 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.5.0

Release notes

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

v3.5.0

Version 3.5.0 - 4/29/2024, 9:10 AM

Changes

Feat

  • add isScrollingResetDelay option to Virtualizer (#719) (ab6ede8) by @​piecyk

Packages

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

v3.4.2

Version 3.4.2 - 4/29/2024, 7:02 AM

Changes

Fix

Packages

  • @​tanstack/vue-virtual@​3.4.2

v3.4.1

Version 3.4.1 - 4/26/2024, 12:25 PM

Changes

Fix

Packages

  • @​tanstack/vue-virtual@​3.4.1

v3.4.0

Version 3.4.0 - 4/18/2024, 2:55 PM

Changes

Feat

... (truncated)

Commits

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: https://github.com/trpc/trpc/compare/v10.45.1...v10.45.2

v10.45.1

What's Changed

New Contributors

Full Changelog: https://github.com/trpc/trpc/compare/v10.45.0...v10.45.1

v10.45.0

What's Changed

New Contributors

Full Changelog: https://github.com/trpc/trpc/compare/v10.44.1...v10.45.0

v10.44.1

What's Changed

New Contributors

Full Changelog: https://github.com/trpc/trpc/compare/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: https://github.com/trpc/trpc/compare/v10.45.1...v10.45.2

v10.45.1

What's Changed

New Contributors

Full Changelog: https://github.com/trpc/trpc/compare/v10.45.0...v10.45.1

v10.45.0

What's Changed

New Contributors

Full Changelog: https://github.com/trpc/trpc/compare/v10.44.1...v10.45.0

v10.44.1

What's Changed

New Contributors

Full Changelog: https://github.com/trpc/trpc/compare/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: https://github.com/trpc/trpc/compare/v10.45.1...v10.45.2

v10.45.1

What's Changed

New Contributors

Full Changelog: https://github.com/trpc/trpc/compare/v10.45.0...v10.45.1

v10.45.0

What's Changed

New Contributors

Full Changelog: https://github.com/trpc/trpc/compare/v10.44.1...v10.45.0

v10.44.1

What's Changed

New Contributors

Full Changelog: https://github.com/trpc/trpc/compare/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: https://github.com/trpc/trpc/compare/v10.45.1...v10.45.2

v10.45.1

What's Changed

New Contributors

Full Changelog: https://github.com/trpc/trpc/compare/v10.45.0...v10.45.1

v10.45.0

What's Changed

New Contributors

Full Changelog: https://github.com/trpc/trpc/compare/v10.44.1...v10.45.0

v10.44.1

What's Changed

New Contributors

Full Changelog: https://github.com/trpc/trpc/compare/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: https://github.com/lukeed/clsx/compare/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: https://github.com/lukeed/clsx/compare/v2.0.1...v2.1.0

v2.0.1

Patches

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

... (truncated)

Commits

dependabot[bot] avatar May 23 '24 21:05 dependabot[bot]