UweKnopf / stoex

https://stoex.vercel.app
3 stars 1 forks source link

Bump the prod-major group with 4 updates #127

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 4 months ago

Bumps the prod-major group with 4 updates: @prisma/client, @tabler/icons-svelte, @vercel/analytics and prisma.

Updates @prisma/client from 5.5.2 to 5.10.2

Release notes

Sourced from @​prisma/client's releases.

5.10.2

Today, we are issuing the 5.10.2 patch release.

Fix in Prisma CLI

5.10.1

Today, we are issuing the 5.10.1 patch release.

Fix in Prisma Client / Prisma CLI

5.10.0

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

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

Highlights

Optimized relation queries in MySQL (Preview)

This release brings the optimizations for relation queries from the previous releases to MySQL as well! This means that by enabling the relationJoins Preview feature with the mysql database provider, you now also get access to the relationLoadStrategy option in relation queries that let you choose whether you want to merged relations on the application- or database-level.

If you enable the relationJoins Preview feature, you can choose between the join and query options:

  • join (default): Sends a single query to the database and joins the data on the database-level.
  • query: Sends multiple queries to the database and joins the data on the application-level.

To get started, enable the Preview feature in your Prisma schema:

// schema.prisma
generator client {
  provider        = "prisma-client-js"
  previewFeatures = ["relationJoins"]
}

Be sure to re-generate Prisma Client afterwards:

npx prisma generate

And finally, specify the relation loading strategy for your relation query via the relationLoadStrategy option as follows:

await prisma.user.findMany({
</tr></table> 

... (truncated)

Commits
  • 5077f3f fix(client): Fix non-ascii characters handling in DataProxyEngien too
  • af54665 fix(client): Fix non-ascii characters handling in DataProxyEngien too
  • 7575474 fix(client): Fix base64 encoding of non-ascii schemas
  • 95ce26f feat(client): Mention Accelerate in "Too many connections" errors (#23113)
  • 794b61e chore(deps): update engines to 5.10.0-34.5a9203d0590c951969e85a7d07215503f467...
  • e742c67 chore(deps): update engines to 5.10.0-32.811068771a7c08ca615bdbdfea96f56a3d10...
  • 2daf967 feat(adapters): cloudflare-d1 - mapRow (#22750)
  • 758f22a chore(deps): update e2e tests (#23158)
  • 19511a5 chore(deps): update definitelytyped (#23155)
  • 4c57f19 chore(deps): update devdependencies patch (non-major) (#23157)
  • Additional commits viewable in compare view


Updates @tabler/icons-svelte from 2.40.0 to 2.47.0

Release notes

Sourced from @​tabler/icons-svelte's releases.

Release 2.47.0

18 new icons:

  • border-corner-ios
  • brightness-auto
  • clipboard-smile
  • database-smile
  • glass-champagne
  • glass-cocktail
  • glass-gin
  • image-in-picture
  • math-max-min
  • prong
  • shopping-bag-heart
  • temperature-snow
  • temperature-sun
  • transform-point-bottom-left
  • transform-point-bottom-right
  • transform-point-top-left
  • transform-point-top-right
  • transform-point

Fixed icons: brand-linktree, glass-off, glass, math-max, math-min

Release 2.46.0

18 new icons:

  • arrow-down-from-arc
  • arrow-down-to-arc
  • arrow-left-from-arc
  • arrow-left-to-arc
  • arrow-right-from-arc
  • arrow-right-to-arc
  • arrow-up-from-arc
  • arrow-up-to-arc
  • avocado
  • badge-ad-off
  • bowl-chopsticks
  • bowl-spoon
  • chart-scatter-3d
  • chart-scatter
  • sort-ascending-shapes
  • sort-ascending-small-big
  • sort-deacending-small-big
  • sort-descending-shapes

... (truncated)

Commits


Updates @vercel/analytics from 1.1.1 to 1.2.2

Release notes

Sourced from @​vercel/analytics's releases.

1.2.2

What's Changed

Full Changelog: https://github.com/vercel/analytics/compare/1.2.1...1.2.2

1.2.1

What's Changed

New Contributors

Full Changelog: https://github.com/vercel/analytics/compare/1.2.0...1.2.1

1.2.0

What's Changed

Full Changelog: https://github.com/vercel/analytics/compare/1.1.4...1.2.0

1.2.0-beta.4

Improved route support for race conditions

1.2.0-beta.3

Improve route support in pages router

1.2.0-beta.2

Further improve route support and better testing

1.2.0-beta.1

  • Adds the new /next import which supports upcoming route support

1.1.4

What's Changed

New Contributors

Full Changelog: https://github.com/vercel/analytics/compare/1.1.3...1.1.4

1.1.3

What's Changed

Full Changelog: https://github.com/vercel/analytics/compare/1.1.2...1.1.3

... (truncated)

Commits


Updates prisma from 5.5.2 to 5.10.2

Release notes

Sourced from prisma's releases.

5.10.2

Today, we are issuing the 5.10.2 patch release.

Fix in Prisma CLI

5.10.1

Today, we are issuing the 5.10.1 patch release.

Fix in Prisma Client / Prisma CLI

5.10.0

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

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

Highlights

Optimized relation queries in MySQL (Preview)

This release brings the optimizations for relation queries from the previous releases to MySQL as well! This means that by enabling the relationJoins Preview feature with the mysql database provider, you now also get access to the relationLoadStrategy option in relation queries that let you choose whether you want to merged relations on the application- or database-level.

If you enable the relationJoins Preview feature, you can choose between the join and query options:

  • join (default): Sends a single query to the database and joins the data on the database-level.
  • query: Sends multiple queries to the database and joins the data on the application-level.

To get started, enable the Preview feature in your Prisma schema:

// schema.prisma
generator client {
  provider        = "prisma-client-js"
  previewFeatures = ["relationJoins"]
}

Be sure to re-generate Prisma Client afterwards:

npx prisma generate

And finally, specify the relation loading strategy for your relation query via the relationLoadStrategy option as follows:

await prisma.user.findMany({
</tr></table> 

... (truncated)

Commits


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
vercel[bot] commented 4 months ago

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

Name Status Preview Comments Updated (UTC)
stoex ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 10, 2024 7:18pm