UweKnopf / stoex

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

Bump the prod-major group with 3 updates #112

Closed dependabot[bot] closed 6 months ago

dependabot[bot] commented 6 months ago

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

Updates @prisma/client from 5.5.2 to 5.8.1

Release notes

Sourced from @​prisma/client's releases.

5.8.1

Today, we are issuing the 5.8.1 patch release.

Fix in Prisma Client

5.8.0

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

Highlights

Happy New Year from your friends at Prisma! 🎊

In the last 4 weeks, we resolved some bugs on the ORM and made some progress on some exciting features that we’re not yet ready to announce. Stay tuned for the upcoming releases, in which we’ll be announcing new features. 😉

relationJoins improvements: Relation loading strategy per query (Preview)

In version 5.7.0, we released relationJoins into Preview. The relationJoins feature enables support for JOINs for relation queries.

This release adds support for the ability to specify the strategy used to fetch relational data per query when the Preview feature is enabled. This will enable you to choose the most efficient strategy for fetching relation data depending on your use case.

You can now load relation data using either of the following strategies:

  • join — uses JOINs to fetch relation data
  • query — uses separate queries to fetch relation data

When the relationJoins Preview feature is enabled, by default, the relation fetching strategy used is join. You can override the default behavior by using the relationLoadStrategy query option.

To get started, enable the Preview feature:

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

… and specify the relation loading strategy for your query as follows:

await prisma.user.findMany({
  relationLoadStrategy: 'query',
  include: {
    posts: true,
  },
})

... (truncated)

Commits
  • b70db9b chore(deps): patch 5.8.x 5.8.1-1.78caf6feeaed953168c64e15a249c3e9a033ebe2 (#2...
  • 688a50a feat(client): integrate relationLoadStrategy support (#22483)
  • 468fd2a chore(deps): update engines to 5.8.0-35.98ee70609b272493d461f616accbf44531c21...
  • feec06f chore(deps): update engines to 5.8.0-33.babfd598f1377beef44addb85eb86ac93bdf4...
  • 811f1aa chore(deps): update opentelemetry packages (#22473)
  • e62475d chore(deps): update dependency esbuild to v0.19.10 (#22471)
  • 6604348 chore(deps): update engines to 5.8.0-31.01382e5cb656d1344b51fced95d399caaac3d...
  • 1eacb61 chore(deps): update engines to 5.8.0-30.6363e0950d0b1c496c0219c4289695f6ddc5c...
  • e0935eb chore(deps): update engines to 5.8.0-26.388f03a4b4ce34a3e2039545f4b40bb33c43e...
  • c52c211 chore(deps): update engines to 5.8.0-25.f8ac68b940bcb96a1531920e361ab5fc74000...
  • Additional commits viewable in compare view


Updates @tabler/icons-svelte from 2.40.0 to 2.46.0

Release notes

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

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

Fixed icons: circle-dashed-percentage, circle-percentage, square-percentage, square-rounded-percentage

Release 2.45.0

18 new icons:

  • brand-apple-filled
  • brand-bluesky
  • brand-livewire
  • brand-pnpm
  • brand-stocktwits
  • brand-yarn
  • circle-dashed-percentage
  • circle-percentage
  • meter-cube
  • meter-square
  • paywall
  • pilcrow-left
  • pilcrow-right
  • protocol
  • receipt-rupee
  • square-percentage
  • square-rounded-percentage
  • transaction-rupee

... (truncated)

Commits


Updates prisma from 5.5.2 to 5.8.1

Release notes

Sourced from prisma's releases.

5.8.1

Today, we are issuing the 5.8.1 patch release.

Fix in Prisma Client

5.8.0

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

Highlights

Happy New Year from your friends at Prisma! 🎊

In the last 4 weeks, we resolved some bugs on the ORM and made some progress on some exciting features that we’re not yet ready to announce. Stay tuned for the upcoming releases, in which we’ll be announcing new features. 😉

relationJoins improvements: Relation loading strategy per query (Preview)

In version 5.7.0, we released relationJoins into Preview. The relationJoins feature enables support for JOINs for relation queries.

This release adds support for the ability to specify the strategy used to fetch relational data per query when the Preview feature is enabled. This will enable you to choose the most efficient strategy for fetching relation data depending on your use case.

You can now load relation data using either of the following strategies:

  • join — uses JOINs to fetch relation data
  • query — uses separate queries to fetch relation data

When the relationJoins Preview feature is enabled, by default, the relation fetching strategy used is join. You can override the default behavior by using the relationLoadStrategy query option.

To get started, enable the Preview feature:

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

… and specify the relation loading strategy for your query as follows:

await prisma.user.findMany({
  relationLoadStrategy: 'query',
  include: {
    posts: true,
  },
})

... (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 6 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 Jan 15, 2024 4:42pm
dependabot[bot] commented 6 months ago

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