stevensblueprint / aad-admin

CRM Platform for Mentors & Mentees
7 stars 0 forks source link

chore(deps): bump the dependencies group with 23 updates #175

Closed dependabot[bot] closed 5 months ago

dependabot[bot] commented 5 months ago

Bumps the dependencies group with 23 updates:

Package From To
@emotion/styled 11.11.0 11.11.5
@mui/icons-material 5.15.12 5.15.14
@mui/material 5.15.12 5.15.14
@mui/styled-engine-sc 6.0.0-alpha.15 6.0.0-alpha.18
@prisma/client 5.10.2 5.11.0
@t3-oss/env-nextjs 0.7.3 0.9.2
@tanstack/react-query 4.36.1 5.28.9
ajv-formats 2.1.1 3.0.1
next 14.1.3 14.1.4
react-hook-form 7.51.0 7.51.2
typescript 5.4.2 5.4.3
@types/eslint 8.56.5 8.56.6
@types/node 20.11.25 20.12.2
@types/react 18.2.64 18.2.73
@types/react-dom 18.2.21 18.2.23
@typescript-eslint/eslint-plugin 6.21.0 7.4.0
@typescript-eslint/parser 6.21.0 7.4.0
autoprefixer 10.4.18 10.4.19
eslint-config-next 14.1.3 14.1.4
postcss 8.4.35 8.4.38
prettier-plugin-tailwindcss 0.5.12 0.5.13
prisma 5.10.2 5.11.0
tailwindcss 3.4.1 3.4.3

Updates @emotion/styled from 11.11.0 to 11.11.5

Release notes

Sourced from @​emotion/styled's releases.

@​emotion/styled@​11.11.5

Patch Changes

Commits


Updates @mui/icons-material from 5.15.12 to 5.15.14

Release notes

Sourced from @​mui/icons-material's releases.

v5.15.14

Mar 19, 2024

A big thanks to the 15 contributors who made this release possible. This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/material@5.15.14

@pigment-css/react@0.0.3

pigment-css/nextjs-plugin@0.0.3

Docs

Core

... (truncated)

Changelog

Sourced from @​mui/icons-material's changelog.

v5.15.14

Mar 18, 2024

A big thanks to the 15 contributors who made this release possible. This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/material@5.15.14

@pigment-css/react@0.0.3

pigment-css/nextjs-plugin@0.0.3

Docs

Core

... (truncated)

Commits


Updates @mui/material from 5.15.12 to 5.15.14

Release notes

Sourced from @​mui/material's releases.

v5.15.14

Mar 19, 2024

A big thanks to the 15 contributors who made this release possible. This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/material@5.15.14

@pigment-css/react@0.0.3

pigment-css/nextjs-plugin@0.0.3

Docs

Core

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

v5.15.14

Mar 18, 2024

A big thanks to the 15 contributors who made this release possible. This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/material@5.15.14

@pigment-css/react@0.0.3

pigment-css/nextjs-plugin@0.0.3

Docs

Core

... (truncated)

Commits


Updates @mui/styled-engine-sc from 6.0.0-alpha.15 to 6.0.0-alpha.18

Commits


Updates @prisma/client from 5.10.2 to 5.11.0

Release notes

Sourced from @​prisma/client's releases.

5.11.0

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

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

Highlights

Edge function support for Cloudflare and Vercel (Preview)

We’re thrilled to announce that support for edge function deployments with Prisma ORM is now in Preview 🥳 As of this release, you can deploy your apps that are using Prisma ORM to:

  • Vercel Edge Functions and Vercel Edge Middleware
  • Cloudflare Workers and Cloudflare Pages

In order to deploy to an edge function, you’ll need to use a compatible database driver (along with its Prisma driver adapter):

  • Neon Serverless Driver (for PostgreSQL databases hosted via Neon)
  • PlanetScale Serverless Driver (for MySQL databases hosted via PlanetScale)
  • pg driver (for traditional PostgreSQL databases)
  • @libsql/client driver (for SQLite databases hosted via Turso)

Check out our documentation to learn how you can deploy an edge function using any combination of supported edge function provider and database.

You can also read more about it in the announcement blog post!

Performance improvements in nested create operations

With Prisma ORM, you can create multiple new records in nested queries, for example:

const user = await prisma.user.update({
  where: { id: 9 },
  data: {
    name: 'Elliott',
    posts: {
      create: {
        data: [{ title: 'My first post' }, { title: 'My second post' }],
      },
    },
  },
})

In previous versions, Prisma ORM would translate this into multiple SQL INSERT queries, each requiring its own roundtrip to the database. As of this release, these nested create queries are optimized and the INSERT queries are sent to the database in bulk in a single roundtrip. These optimizations apply to one-to-many as well as many-to-many relations.

With this change, using the nested create option to create multiple records effectively becomes equivalent to using a nested createMany operation (except that createMany only works with one-to-many relations, whereas create works both with one-to-many and many-to-many).

Note: Only the deepest nested operation is optimized. If a user specified create (1) -> create (2) -> create (3) in their query, only create (3) will be optimized.

Fixes and improvements

... (truncated)

Commits
  • 3b45747 fix(client): fix runtime.prettyName (#23446)
  • 894eef9 fix(client): runtimeDescription is not defined #23153 (#23164)
  • a211ad7 chore(deps): update engines to 5.11.0-15.efd2449663b3d73d637ea1fd226bafbcf45b...
  • 69abf11 chore(deps): update dependency @​types/node to v16.18.86 (#23374)
  • 009563e chore(deps): update engines to 5.11.0-9.3d9a0d64e7107d8985df64fce153a82e7821a...
  • ff59f63 chore(deps): update dependency @​inquirer/prompts to v4.2.1 (#23414)
  • ff2d725 chore(deps): update dependency wrangler to v3.32.0 (#23404)
  • 9b90143 fix(client): engine loading on vercel & improved custom output dx (#22958)
  • 63c4535 chore(deps): update engines to 5.11.0-7.ea1d441684437cb0347ae41a974507fb424a3...
  • 4aee142 chore(deps): update engines to 5.11.0-6.6795ad985c527cdaf71c052574c604901054b...
  • Additional commits viewable in compare view


Updates @t3-oss/env-nextjs from 0.7.3 to 0.9.2

Changelog

Sourced from @​t3-oss/env-nextjs's changelog.

0.9.2

Patch Changes

0.9.1

Patch Changes

0.9.0

Minor Changes

Patch Changes

0.8.0

Minor Changes

Patch Changes

Commits
  • e415846 chore(release): 📦 version packages (#187)
  • ff17d1d this works? (#186)
  • c928a4a chore(release): 📦 version... _Description has been truncated_
dependabot[bot] commented 5 months ago

Looks like these dependencies are updatable in another way, so this is no longer needed.