Skip to content

Commit

Permalink
fix(deps): update prisma monorepo to v5.10.2 (#10088)
Browse files Browse the repository at this point in the history
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@prisma/client](https://www.prisma.io)
([source](https://togithub.com/prisma/prisma/tree/HEAD/packages/client))
| [`5.9.1` ->
`5.10.2`](https://renovatebot.com/diffs/npm/@prisma%2fclient/5.9.1/5.10.2)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@prisma%2fclient/5.10.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@prisma%2fclient/5.10.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@prisma%2fclient/5.9.1/5.10.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@prisma%2fclient/5.9.1/5.10.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [@prisma/internals](https://www.prisma.io)
([source](https://togithub.com/prisma/prisma/tree/HEAD/packages/internals))
| [`5.9.1` ->
`5.10.2`](https://renovatebot.com/diffs/npm/@prisma%2finternals/5.9.1/5.10.2)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@prisma%2finternals/5.10.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@prisma%2finternals/5.10.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@prisma%2finternals/5.9.1/5.10.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@prisma%2finternals/5.9.1/5.10.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [prisma](https://www.prisma.io)
([source](https://togithub.com/prisma/prisma/tree/HEAD/packages/cli)) |
[`5.9.1` ->
`5.10.2`](https://renovatebot.com/diffs/npm/prisma/5.9.1/5.10.2) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/prisma/5.10.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/prisma/5.10.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/prisma/5.9.1/5.10.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/prisma/5.9.1/5.10.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

<details>
<summary>prisma/prisma (@&#8203;prisma/client)</summary>

[Compare
Source](https://togithub.com/prisma/prisma/compare/5.10.1...5.10.2)

Today, we are issuing the `5.10.2` patch release.

- [`Invalid character` error persists on 5.10.1 in Prisma
Studio](https://togithub.com/prisma/prisma/issues/23225)

[Compare
Source](https://togithub.com/prisma/prisma/compare/5.10.0...5.10.1)

Today, we are issuing the `5.10.1` patch release.

- [Error: Invalid character when schema.prisma includes
Chinese/Non-ASCII characters in a
comment](https://togithub.com/prisma/prisma/issues/23201)

[Compare
Source](https://togithub.com/prisma/prisma/compare/5.9.1...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](https://twitter.com/intent/post?text=Check%20out%20the%20latest%20%40prisma%20release%20v5.10.0%20%F0%9F%9A%80%0D%0A%0D%0Ahttps%3A%2F%2Fgithub.com%2Fprisma%2Fprisma%2Freleases%2Ftag%2F5.10.0) about
the release.**

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:

```prisma
// 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:

```ts
await prisma.user.findMany({
  relationLoadStrategy: 'join', // or 'query'
  include: {
    posts: true,
  },
})
```

Note that in the example above, the `relationLoadStrategy` could be
omitted altogether because `join` is used as the default value.

A few notes about `relationLoadStrategy` support on MySQL:

- `relationLoadStrategy` is supported for MySQL v8.0.14 and higher.
MariaDB is not supported.
- Prisma ORM uses correlated sub-queries for MySQL (as opposed to
`LATERAL` JOINs which are used on PostgreSQL).

This feature enables you to configure the following transaction options
on a global level via the `PrismaClient` constructor:

- `isolationLevel`: Sets the [transaction isolation
level](https://www.prisma.io/docs/orm/prisma-client/queries/transactions#transaction-isolation-level).
By default, this is set to the value currently configured in your
database.
- `timeout`: The maximum amount of time the interactive transaction can
run before being canceled and rolled back. The default value is 5
seconds.
- `maxWait`: The maximum amount of time Prisma Client will wait to
acquire a transaction from the database. The default value is 2 seconds.

Here is an example of how you can set this value globally for all
transactions:

```ts
const prisma = new PrismaClient({
  transactionOptions: {
    isolationLevel: 'ReadCommitted',
    timeout: 1_000, // 1 sec
    maxWait: 2_000  // 2 sec
  }
})
```

Thanks a lot to our fantastic community member
[`@tockn`](https://togithub.com/tockn), who took the initiative to
implement this feature in Prisma ORM 🎉

Note that you can still override the global values by [setting them on a
particular
transaction](https://www.prisma.io/docs/orm/prisma-client/queries/transactions#transactions-options).

We introduced a new error code for “Too many database connections
opened” errors: `P2037`. You can find all error codes in our
[documentation](https://www.prisma.io/docs/orm/reference/error-reference#prisma-client-query-engine).

Now available in Early Access, you can manage your workspace and
configure [Prisma Accelerate](https://www.prisma.io/docs/accelerate) and
[Prisma Pulse](https://www.prisma.io/docs/pulse) directly from the
terminal.

Visit our
[docs](https://www.prisma.io/docs/platform/platform-cli/commands) to
learn more about the integration and try it out for yourself!

- [called `Option::unwrap()` on a `None` value when using the
relationJoins preview feature with driver
adapters](https://togithub.com/prisma/prisma/issues/22294)
- [\[5.9.0 Bug\] `Prisma.TransactionClient` appears to be missing
types](https://togithub.com/prisma/prisma/issues/22870)
- [Error after Upgrading from 5.8.1 to
5.9.0](https://togithub.com/prisma/prisma/issues/22875)
- [\[5.9.0\] `@prisma/client` in Next.js
middleware](https://togithub.com/prisma/prisma/issues/22877)
- [\[v5.9.0\] `$extends` always return
`any`](https://togithub.com/prisma/prisma/issues/22884)
- [Prisma edge runtime
error](https://togithub.com/prisma/prisma/issues/22886)
- [\[5.9.0\] All queries result in any
type](https://togithub.com/prisma/prisma/issues/22888)
- [`Error: Prisma Client is unable to run in an edge runtime. As an
alternative, try Accelerate:
https://pris.ly/d/accelerate.`](https://togithub.com/prisma/prisma/issues/22889)
- [\[5.9.0\] Error: Prisma Client is unable to run in an edge runtime.
As an alternative, try Accelerate:
https://pris.ly/d/accelerate.](https://togithub.com/prisma/prisma/issues/22893)
- [v5.9.0 / Don't generate type. And the error from the previous version
is still there](https://togithub.com/prisma/prisma/issues/22896)
- [\[5.9.0\] Getting strange types after
generating](https://togithub.com/prisma/prisma/issues/22903)
- [relationJoins: "The column `t3.bookGenreTitle` does not exist in the
current database"](https://togithub.com/prisma/prisma/issues/22926)
- [Missing export
@&#8203;prisma/client/generator-build](https://togithub.com/prisma/prisma/issues/22927)
- [`relationJoins` preview feature: called `Option::unwrap()` on a
`None` value](https://togithub.com/prisma/prisma/issues/22971)

</details>

---

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/redwoodjs/redwood).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjAuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIyMC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominic Saadi <[email protected]>
  • Loading branch information
renovate[bot] and jtoar committed Mar 1, 2024
1 parent d7f2d5b commit 595f31c
Show file tree
Hide file tree
Showing 7 changed files with 79 additions and 71 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## Unreleased

- fix(deps): update prisma monorepo to v5.10.2 (#10088)

This release updates Prisma to v5.10.2. Here are quick links to all the release notes since the last version (v5.9.1):

- https://github.com/prisma/prisma/releases/tag/5.10.0
- https://github.com/prisma/prisma/releases/tag/5.10.1
- https://github.com/prisma/prisma/releases/tag/5.10.2

- fix(esm): fix initial ESM blockers for Redwood apps (#10083) by @jtoar and @Josh-Walker-GM

This PR makes some initial fixes that were required for making a Redwood app ESM. Redwood apps aren't ready to transition to ESM yet, but we're working towards it and these changes were backwards-compatible.
Expand Down
2 changes: 1 addition & 1 deletion packages/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
},
"dependencies": {
"@babel/runtime-corejs3": "7.23.9",
"@prisma/client": "5.9.1",
"@prisma/client": "5.10.2",
"@whatwg-node/fetch": "0.9.14",
"core-js": "3.35.1",
"humanize-string": "2.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-packages/dataMigrate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"yargs": "17.7.2"
},
"devDependencies": {
"@prisma/client": "5.9.1",
"@prisma/client": "5.10.2",
"@redwoodjs/framework-tools": "7.0.6",
"@types/fs-extra": "11.0.4",
"@types/yargs": "17.0.32",
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"@opentelemetry/resources": "1.21.0",
"@opentelemetry/sdk-trace-node": "1.21.0",
"@opentelemetry/semantic-conventions": "1.21.0",
"@prisma/internals": "5.9.1",
"@prisma/internals": "5.10.2",
"@redwoodjs/api-server": "7.0.6",
"@redwoodjs/cli-helpers": "7.0.6",
"@redwoodjs/fastify-web": "7.0.6",
Expand Down Expand Up @@ -73,7 +73,7 @@
"pluralize": "8.0.0",
"portfinder": "1.0.32",
"prettier": "2.8.8",
"prisma": "5.9.1",
"prisma": "5.10.2",
"prompts": "2.4.2",
"rimraf": "5.0.5",
"semver": "7.5.4",
Expand Down
4 changes: 2 additions & 2 deletions packages/record/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@
},
"dependencies": {
"@babel/runtime-corejs3": "7.23.9",
"@prisma/client": "5.9.1",
"@prisma/client": "5.10.2",
"@redwoodjs/project-config": "7.0.6",
"core-js": "3.35.1"
},
"devDependencies": {
"@babel/cli": "7.23.9",
"@babel/core": "^7.22.20",
"@prisma/internals": "5.9.1",
"@prisma/internals": "5.10.2",
"esbuild": "0.20.0",
"vitest": "1.2.2"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/structure/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"dependencies": {
"@babel/runtime-corejs3": "7.23.9",
"@iarna/toml": "2.2.5",
"@prisma/internals": "5.9.1",
"@prisma/internals": "5.10.2",
"@redwoodjs/project-config": "7.0.6",
"@types/line-column": "1.0.0",
"camelcase": "6.3.0",
Expand Down
128 changes: 64 additions & 64 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6561,93 +6561,93 @@ __metadata:
languageName: node
linkType: hard

"@prisma/client@npm:5.9.1":
version: 5.9.1
resolution: "@prisma/client@npm:5.9.1"
"@prisma/client@npm:5.10.2":
version: 5.10.2
resolution: "@prisma/client@npm:5.10.2"
peerDependencies:
prisma: "*"
peerDependenciesMeta:
prisma:
optional: true
checksum: 10c0/5447007e42d507e45960210d804736000b53556b076dd15797dfaed0c58e462dc24eb27e9c6636b8a145dd1a103fc7f6cd876f1906217e8fd8b74c6533169287
checksum: 10c0/d2bd28d72601c24a180910a8b0264a9b01c2c9120b5255e51ae95559e21630c77120d9258f2ea5fac1c353c8f0b2390276481fcedc6594b6b79cc31c0b02c7c9
languageName: node
linkType: hard

"@prisma/debug@npm:5.9.1":
version: 5.9.1
resolution: "@prisma/debug@npm:5.9.1"
checksum: 10c0/0e116019f5e8df7ec30503bcfd033e54c94a20e2a6d6abeed525eac3e0be8f40f8cd3b0cf43abad91d1ec80c3dbca8d827f753b2ccbf9eea20a05ff1cd1d12f5
"@prisma/debug@npm:5.10.2":
version: 5.10.2
resolution: "@prisma/debug@npm:5.10.2"
checksum: 10c0/9a76f4197d0072f1588c4bf1501aaf6df0729edc929485551d3f90df0b1f5d5933fcc88b9dae8dfeda028c705debe4c436c4bca007687d32bbbf95c5771c7f1f
languageName: node
linkType: hard

"@prisma/engines-version@npm:5.9.0-32.23fdc5965b1e05fc54e5f26ed3de66776b93de64":
version: 5.9.0-32.23fdc5965b1e05fc54e5f26ed3de66776b93de64
resolution: "@prisma/engines-version@npm:5.9.0-32.23fdc5965b1e05fc54e5f26ed3de66776b93de64"
checksum: 10c0/861dd5f88fec224c5bd5885f0a33f8ab0cd39190497806d27d411ea8abde2b684eb27518c47bb0b560e025219284b94d2c5d85abc715f2765f2500e766bf2fdd
"@prisma/engines-version@npm:5.10.0-34.5a9203d0590c951969e85a7d07215503f4672eb9":
version: 5.10.0-34.5a9203d0590c951969e85a7d07215503f4672eb9
resolution: "@prisma/engines-version@npm:5.10.0-34.5a9203d0590c951969e85a7d07215503f4672eb9"
checksum: 10c0/b712c8222915d9cb4bf8284d2687ff080d4f8cac61faf0da1d2967f66d086f9202d916f65a6657af11983c5f33890a90657a3360146cbaad6a92876aea889054
languageName: node
linkType: hard

"@prisma/engines@npm:5.9.1":
version: 5.9.1
resolution: "@prisma/engines@npm:5.9.1"
"@prisma/engines@npm:5.10.2":
version: 5.10.2
resolution: "@prisma/engines@npm:5.10.2"
dependencies:
"@prisma/debug": "npm:5.9.1"
"@prisma/engines-version": "npm:5.9.0-32.23fdc5965b1e05fc54e5f26ed3de66776b93de64"
"@prisma/fetch-engine": "npm:5.9.1"
"@prisma/get-platform": "npm:5.9.1"
checksum: 10c0/2148c14ec3d46709477319b23dae0e837c91a8119ee01e0a06daf73e6f008bfda5439603d29d722e17b297f2ebe2e73eedb50a4e914a2103931d3de2b4409436
"@prisma/debug": "npm:5.10.2"
"@prisma/engines-version": "npm:5.10.0-34.5a9203d0590c951969e85a7d07215503f4672eb9"
"@prisma/fetch-engine": "npm:5.10.2"
"@prisma/get-platform": "npm:5.10.2"
checksum: 10c0/bea6988d78c8e7733af18ec0f2d8f60375a311424f2b45911c9077c4f9d1b04e539802ad62239b8355579214aaccb094af34b5ac86e4a7642d7ac0ed9d7a85b7
languageName: node
linkType: hard

"@prisma/fetch-engine@npm:5.9.1":
version: 5.9.1
resolution: "@prisma/fetch-engine@npm:5.9.1"
"@prisma/fetch-engine@npm:5.10.2":
version: 5.10.2
resolution: "@prisma/fetch-engine@npm:5.10.2"
dependencies:
"@prisma/debug": "npm:5.9.1"
"@prisma/engines-version": "npm:5.9.0-32.23fdc5965b1e05fc54e5f26ed3de66776b93de64"
"@prisma/get-platform": "npm:5.9.1"
checksum: 10c0/3abe9ce5dcdea042a6047ba6497730f6d7ce05103de7cf1634e7543742369abc4a62179a8de1cb219e132f5e45729c95c04fc039cebee5b93c23400722ba0583
"@prisma/debug": "npm:5.10.2"
"@prisma/engines-version": "npm:5.10.0-34.5a9203d0590c951969e85a7d07215503f4672eb9"
"@prisma/get-platform": "npm:5.10.2"
checksum: 10c0/38f8506ca98280cc011b872ee8d650e857fca07ffeab7214d58c104ee70285739e2dd2b93e78a20d1e57067fc85565bf8ebc23acc350021dcd9ccc4eecb0a831
languageName: node
linkType: hard

"@prisma/generator-helper@npm:5.9.1":
version: 5.9.1
resolution: "@prisma/generator-helper@npm:5.9.1"
"@prisma/generator-helper@npm:5.10.2":
version: 5.10.2
resolution: "@prisma/generator-helper@npm:5.10.2"
dependencies:
"@prisma/debug": "npm:5.9.1"
checksum: 10c0/34179bc1aded0fec379393f9849046cf3ec3792ca9c052a5486720127af0a234aa0ce3f2b31b04246ac481549a028ddbd9c08259ddcbdce81e8f88db77d5d1f4
"@prisma/debug": "npm:5.10.2"
checksum: 10c0/ed55784d09780234002149d9712c4410739b7b06cd3aaf22a00639108783df6b43108e56423f5a6cbb28164c864a323988003a830240e9cbbf3d563cf26929ea
languageName: node
linkType: hard

"@prisma/get-platform@npm:5.9.1":
version: 5.9.1
resolution: "@prisma/get-platform@npm:5.9.1"
"@prisma/get-platform@npm:5.10.2":
version: 5.10.2
resolution: "@prisma/get-platform@npm:5.10.2"
dependencies:
"@prisma/debug": "npm:5.9.1"
checksum: 10c0/ac7aa5fca0d5c2a6f04b04bc30eef8df4524ec34e9b2761b47c9fa58ab9b718c5525cb20a944d10e66d7978a4f8ec1ba6cb44a41139d26f885dbfd69c17d385b
"@prisma/debug": "npm:5.10.2"
checksum: 10c0/c3f12262f3dbfe47010ac08a04d29bdc97ca7d112d6abb125c0c90e0001bf7816274715f0605edc261327ec705734bf5ba54101cb7f2b0bb6aa93964f05791e3
languageName: node
linkType: hard

"@prisma/internals@npm:5.9.1":
version: 5.9.1
resolution: "@prisma/internals@npm:5.9.1"
dependencies:
"@prisma/debug": "npm:5.9.1"
"@prisma/engines": "npm:5.9.1"
"@prisma/fetch-engine": "npm:5.9.1"
"@prisma/generator-helper": "npm:5.9.1"
"@prisma/get-platform": "npm:5.9.1"
"@prisma/prisma-schema-wasm": "npm:5.9.0-32.23fdc5965b1e05fc54e5f26ed3de66776b93de64"
"@prisma/internals@npm:5.10.2":
version: 5.10.2
resolution: "@prisma/internals@npm:5.10.2"
dependencies:
"@prisma/debug": "npm:5.10.2"
"@prisma/engines": "npm:5.10.2"
"@prisma/fetch-engine": "npm:5.10.2"
"@prisma/generator-helper": "npm:5.10.2"
"@prisma/get-platform": "npm:5.10.2"
"@prisma/prisma-schema-wasm": "npm:5.10.0-34.5a9203d0590c951969e85a7d07215503f4672eb9"
arg: "npm:5.0.2"
prompts: "npm:2.4.2"
checksum: 10c0/1afc0e9cbdef678260524b32111d5d2d8aaa684c5800f407055f20c68d39e6afa3e5c0378ce9223a58c6021023c19b08b7ed4a2ee0418552e9213d39b8eeec17
checksum: 10c0/a648c4320ed036a1649a8ee708971c41469225e469e059ce0388594755a849d7bfe8a732496a778828b38a6aa0399e2a1c138d3dd7934fc6d275a6634d30c774
languageName: node
linkType: hard

"@prisma/prisma-schema-wasm@npm:5.9.0-32.23fdc5965b1e05fc54e5f26ed3de66776b93de64":
version: 5.9.0-32.23fdc5965b1e05fc54e5f26ed3de66776b93de64
resolution: "@prisma/prisma-schema-wasm@npm:5.9.0-32.23fdc5965b1e05fc54e5f26ed3de66776b93de64"
checksum: 10c0/ad61814eb28b57f540fbaa508db7056742905305e0393ee6a5bc3624ed9e54dba75f8472f1bff620b6c47364355e3caa69a1dd2009735e4c4ecbe5cd2110204e
"@prisma/prisma-schema-wasm@npm:5.10.0-34.5a9203d0590c951969e85a7d07215503f4672eb9":
version: 5.10.0-34.5a9203d0590c951969e85a7d07215503f4672eb9
resolution: "@prisma/prisma-schema-wasm@npm:5.10.0-34.5a9203d0590c951969e85a7d07215503f4672eb9"
checksum: 10c0/4a79514d15294dc364670d83eecbcbab71bf2ff04ff7a9fcebdc794e9047b6fef7686d84c0db829514bd2ea1afdd101ab4fcb2574cc27abef285d526cb63df1b
languageName: node
linkType: hard

Expand Down Expand Up @@ -7424,7 +7424,7 @@ __metadata:
"@babel/cli": "npm:7.23.9"
"@babel/core": "npm:^7.22.20"
"@babel/runtime-corejs3": "npm:7.23.9"
"@prisma/client": "npm:5.9.1"
"@prisma/client": "npm:5.10.2"
"@types/aws-lambda": "npm:8.10.126"
"@types/jsonwebtoken": "npm:9.0.5"
"@types/memjs": "npm:1"
Expand Down Expand Up @@ -7945,7 +7945,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@redwoodjs/cli-data-migrate@workspace:packages/cli-packages/dataMigrate"
dependencies:
"@prisma/client": "npm:5.9.1"
"@prisma/client": "npm:5.10.2"
"@redwoodjs/babel-config": "npm:7.0.6"
"@redwoodjs/framework-tools": "npm:7.0.6"
"@redwoodjs/project-config": "npm:7.0.6"
Expand Down Expand Up @@ -8031,7 +8031,7 @@ __metadata:
"@opentelemetry/resources": "npm:1.21.0"
"@opentelemetry/sdk-trace-node": "npm:1.21.0"
"@opentelemetry/semantic-conventions": "npm:1.21.0"
"@prisma/internals": "npm:5.9.1"
"@prisma/internals": "npm:5.10.2"
"@redwoodjs/api-server": "npm:7.0.6"
"@redwoodjs/cli-helpers": "npm:7.0.6"
"@redwoodjs/fastify-web": "npm:7.0.6"
Expand Down Expand Up @@ -8069,7 +8069,7 @@ __metadata:
pluralize: "npm:8.0.0"
portfinder: "npm:1.0.32"
prettier: "npm:2.8.8"
prisma: "npm:5.9.1"
prisma: "npm:5.10.2"
prompts: "npm:2.4.2"
rimraf: "npm:5.0.5"
semver: "npm:7.5.4"
Expand Down Expand Up @@ -8567,8 +8567,8 @@ __metadata:
"@babel/cli": "npm:7.23.9"
"@babel/core": "npm:^7.22.20"
"@babel/runtime-corejs3": "npm:7.23.9"
"@prisma/client": "npm:5.9.1"
"@prisma/internals": "npm:5.9.1"
"@prisma/client": "npm:5.10.2"
"@prisma/internals": "npm:5.10.2"
"@redwoodjs/project-config": "npm:7.0.6"
core-js: "npm:3.35.1"
esbuild: "npm:0.20.0"
Expand Down Expand Up @@ -8606,7 +8606,7 @@ __metadata:
"@babel/core": "npm:^7.22.20"
"@babel/runtime-corejs3": "npm:7.23.9"
"@iarna/toml": "npm:2.2.5"
"@prisma/internals": "npm:5.9.1"
"@prisma/internals": "npm:5.10.2"
"@redwoodjs/project-config": "npm:7.0.6"
"@types/fs-extra": "npm:11.0.4"
"@types/line-column": "npm:1.0.0"
Expand Down Expand Up @@ -27870,14 +27870,14 @@ __metadata:
languageName: node
linkType: hard

"prisma@npm:5.9.1":
version: 5.9.1
resolution: "prisma@npm:5.9.1"
"prisma@npm:5.10.2":
version: 5.10.2
resolution: "prisma@npm:5.10.2"
dependencies:
"@prisma/engines": "npm:5.9.1"
"@prisma/engines": "npm:5.10.2"
bin:
prisma: build/index.js
checksum: 10c0/f934bd94bea6863902d8abe2711fd7655ed25da267f92f33eef763a20c325e98e63111613b645ba6ae241e8add652aa598dd61ada560a40dcc47572229bb9960
checksum: 10c0/f57f9e2032766d02d9f8c5ffbd8a9b52459fe69c2a19abe472ef97057256d2fc23d25efebddcd76bb07c35c0c5ba94c91b74bcde7e061b4a01aa21794076195a
languageName: node
linkType: hard

Expand Down

0 comments on commit 595f31c

Please sign in to comment.