Skip to content

Commit

Permalink
chore(deps): update prisma monorepo to v5.20.0 (#11615)
Browse files Browse the repository at this point in the history
This PR contains the following updates:

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

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

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

###
[`v5.20.0`](https://redirect.github.com/prisma/prisma/releases/tag/5.20.0)

[Compare
Source](https://redirect.github.com/prisma/prisma/compare/5.19.1...5.20.0)

🌟 **Help us spread the word about Prisma by starring the repo or
[posting on
X](https://twitter.com/intent/tweet?text=Check%20out%20the%20latest%20@&#8203;prisma%20release%20v5.20.0%20%F0%9F%9A%80%0D%0A%0D%0Ahttps://github.com/prisma/prisma/releases/tag/5.20.0)
about the release.** 🌟

#### Highlights

##### `strictUndefinedChecks` in Preview

With Prisma ORM 5.20.0, the Preview feature `strictUndefinedChecks` will
disallow any value that is explicitly `undefined` and will be a runtime
error. This change is direct feedback from [this GitHub
issue](https://redirect.github.com/prisma/prisma/issues/20169) and
follows [our latest
proposal](https://redirect.github.com/prisma/prisma/issues/20169#issuecomment-2338360300)
on the same issue.

To demonstrate the change, take the following code snippet:

```tsx
prisma.table.deleteMany({
  where: {
    // If `nullableThing` is nullish, this query will remove all data.
    email: nullableThing?.property,
  }
})
```

In Prisma ORM 5.19.0 and below, this could result in unintended
behavior. In Prisma ORM 5.20.0, if the `strictUndefinedChecks` Preview
feature is enabled, you will get a runtime error instead:

```tsx
Invalid \`prisma.user.findMany()\` invocation in
/client/tests/functional/strictUndefinedChecks/test.ts:0:0
  XX })
  XX 
  XX test('throws on undefined input field', async () => {
→ XX   const result = prisma.user.deleteMany({
         where: {
           email: undefined
                  ~~~~~~~~~
         }
       })
Invalid value for argument \`where\`: explicitly \`undefined\` values are not allowed."
```

We have also introduced the `Prisma.skip` symbol, which will allow you
to get the previous behavior if desired.

```tsx
prisma.table.findMany({
  where: {
    // Use Prisma.skip to skip parts of the query
    email: nullableEmail ?? Prisma.skip
  }
})
```

From Prisma ORM 5.20.0 onward, we recommend enabling
`strictUndefinedChecks`, along with the TypeScript compiler option
`exactOptionalPropertyTypes`, which will help catch cases of undefined
values at compile time. Together, these two changes will help protect
your Prisma queries from potentially destructive behavior.

`strictUndefinedChecks` will be a valid Preview feature for the
remainder of Prisma ORM 5. With our next major version, this behavior
will become the default and the Preview feature will be “graduated” to
Generally Available.

If you have any questions or feedback about `strictUndefinedChecks`,
please ask/comment in our dedicated [Preview feature GitHub
discussion](https://redirect.github.com/prisma/prisma/discussions/25271).

##### `typedSql` bug fix

Thank you to everyone who has tried out our [`typedSql` Preview
feature](https://www.prisma.io/blog/announcing-typedsql-make-your-raw-sql-queries-type-safe-with-prisma-orm)
and [provided
feedback](https://redirect.github.com/prisma/prisma/discussions/25106)!
This release has a quick fix for typescript files generated when Prisma
Schema enums had hyphens.

#### Fixes and improvements

##### Prisma

- [Prisma incorrectly parses CRDB's FK constraint error as `not
available`.](https://redirect.github.com/prisma/prisma/issues/24072)
- [Invalid TypeScript files created by `generate` when typedSql is
enabled and enum contains
hyphens.](https://redirect.github.com/prisma/prisma/issues/25163)
- [`@prisma/internals` didn't list `ts-toolbelt` in
dependencies.](https://redirect.github.com/prisma/prisma/issues/17952)
- [using `$extends` prevents model comments from being passed to
TypeScript](https://redirect.github.com/prisma/prisma/issues/24648)

##### Prisma Engines

- [Planetscale engine tests:
interactive_tx](https://redirect.github.com/prisma/prisma-engines/issues/4469)
- [Fix broken engine size publishing
workflow](https://redirect.github.com/prisma/prisma-engines/issues/4991)

#### Credits

Huge thanks to
[@&#8203;mcuelenaere](https://redirect.github.com/mcuelenaere),
[@&#8203;pagewang0](https://redirect.github.com/pagewang0),
[@&#8203;key-moon](https://redirect.github.com/key-moon),
[@&#8203;pranayat](https://redirect.github.com/pranayat),
[@&#8203;yubrot](https://redirect.github.com/yubrot),
[@&#8203;thijmenjk](https://redirect.github.com/thijmenjk),
[@&#8203;mydea](https://redirect.github.com/mydea),
[@&#8203;HRM](https://redirect.github.com/HRM),
[@&#8203;haaawk](https://redirect.github.com/haaawk),
[@&#8203;baileywickham](https://redirect.github.com/baileywickham),
[@&#8203;brian-dlee](https://redirect.github.com/brian-dlee),
[@&#8203;nickcarnival](https://redirect.github.com/nickcarnival),
[@&#8203;eruditmorina](https://redirect.github.com/eruditmorina),
[@&#8203;nzakas](https://redirect.github.com/nzakas), and
[@&#8203;gutyerrez](https://redirect.github.com/gutyerrez) for helping!

</details>

---

### Configuration

📅 **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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/redwoodjs/redwood).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Sep 24, 2024
1 parent f0b78e3 commit e881431
Show file tree
Hide file tree
Showing 9 changed files with 82 additions and 82 deletions.
2 changes: 1 addition & 1 deletion packages/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"test:watch": "vitest watch"
},
"dependencies": {
"@prisma/client": "5.19.1",
"@prisma/client": "5.20.0",
"@whatwg-node/fetch": "0.9.21",
"cookie": "0.6.0",
"humanize-string": "2.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/auth-providers/dbAuth/setup/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
},
"dependencies": {
"@babel/runtime-corejs3": "7.25.0",
"@prisma/internals": "5.19.1",
"@prisma/internals": "5.20.0",
"@redwoodjs/cli-helpers": "workspace:*",
"@simplewebauthn/browser": "7.4.0",
"core-js": "3.38.1",
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.19.1",
"@prisma/client": "5.20.0",
"@redwoodjs/framework-tools": "workspace:*",
"@types/fs-extra": "11.0.4",
"@types/yargs": "17.0.33",
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"@opentelemetry/resources": "1.22.0",
"@opentelemetry/sdk-trace-node": "1.22.0",
"@opentelemetry/semantic-conventions": "1.22.0",
"@prisma/internals": "5.19.1",
"@prisma/internals": "5.20.0",
"@redwoodjs/api-server": "workspace:*",
"@redwoodjs/cli-helpers": "workspace:*",
"@redwoodjs/fastify-web": "workspace:*",
Expand Down Expand Up @@ -70,7 +70,7 @@
"pluralize": "8.0.0",
"portfinder": "1.0.32",
"prettier": "3.3.3",
"prisma": "5.19.1",
"prisma": "5.20.0",
"prompts": "2.4.2",
"rimraf": "6.0.1",
"semver": "7.6.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/jobs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"type-fest": "4.26.1"
},
"devDependencies": {
"@prisma/client": "5.19.1",
"@prisma/client": "5.20.0",
"@redwoodjs/framework-tools": "workspace:*",
"concurrently": "8.2.2",
"publint": "0.2.10",
Expand Down
4 changes: 2 additions & 2 deletions packages/record/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@
"test:watch": "vitest watch"
},
"dependencies": {
"@prisma/client": "5.19.1",
"@prisma/client": "5.20.0",
"@redwoodjs/api": "workspace:*",
"@redwoodjs/project-config": "workspace:*",
"camelcase": "6.3.0"
},
"devDependencies": {
"@prisma/internals": "5.19.1",
"@prisma/internals": "5.20.0",
"@redwoodjs/framework-tools": "workspace:*",
"esbuild": "0.23.1",
"publint": "0.2.10",
Expand Down
2 changes: 1 addition & 1 deletion packages/storage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
},
"devDependencies": {
"@arethetypeswrong/cli": "0.16.4",
"@prisma/client": "5.19.1",
"@prisma/client": "5.20.0",
"@redwoodjs/framework-tools": "workspace:*",
"@types/mime-types": "2.1.4",
"concurrently": "8.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 @@ -26,7 +26,7 @@
},
"dependencies": {
"@babel/runtime-corejs3": "7.25.0",
"@prisma/internals": "5.19.1",
"@prisma/internals": "5.20.0",
"@redwoodjs/project-config": "workspace:*",
"@types/line-column": "1.0.2",
"camelcase": "6.3.0",
Expand Down
144 changes: 72 additions & 72 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6405,104 +6405,104 @@ __metadata:
languageName: node
linkType: hard

"@prisma/client@npm:5.19.1":
version: 5.19.1
resolution: "@prisma/client@npm:5.19.1"
"@prisma/client@npm:5.20.0":
version: 5.20.0
resolution: "@prisma/client@npm:5.20.0"
peerDependencies:
prisma: "*"
peerDependenciesMeta:
prisma:
optional: true
checksum: 10c0/3fd0c77c831cf592155539d0d369849d5c4f6bbe483b7e5ed476aad29434491a0d5a63ebcda86852484b808fa94bdd614c7715fb2084c0696fdcedd21d3671fb
checksum: 10c0/e7480e49830c1bd2292ea92de979cce4502f886c7e9ac43efb639771bb8fe6150e8688e6ff11de77af999536ad6bf7db1595649352a8527e81b951ad6c43f57f
languageName: node
linkType: hard

"@prisma/debug@npm:5.19.1":
version: 5.19.1
resolution: "@prisma/debug@npm:5.19.1"
checksum: 10c0/4b88719b9a0dd76692bec766fd8188b685a81f0459f3df8fb44b4c492b483a6aadaf7021f7aca90afa5a2f27d84d737a3f2d5abed5f9f818a640487f49d1b8c4
"@prisma/debug@npm:5.20.0":
version: 5.20.0
resolution: "@prisma/debug@npm:5.20.0"
checksum: 10c0/820e3e2c25f1a046024383a3a83f28707a99af1e04f46016c78d6b6231a901353755202578ce27760e00a654b357b634a3e79b99bfe710ba6d6a7f480fcdf6b9
languageName: node
linkType: hard

"@prisma/engines-version@npm:5.19.1-2.69d742ee20b815d88e17e54db4a2a7a3b30324e3":
version: 5.19.1-2.69d742ee20b815d88e17e54db4a2a7a3b30324e3
resolution: "@prisma/engines-version@npm:5.19.1-2.69d742ee20b815d88e17e54db4a2a7a3b30324e3"
checksum: 10c0/9bf4ad5b199054fe56a96ddbda1b835e7f103d690d2b7d04c159f29399261356516ec8881e8caf637bd4523395ccc4ce450013a0c9a8a3ffa16d2fc15b93bfa8
"@prisma/engines-version@npm:5.20.0-12.06fc58a368dc7be9fbbbe894adf8d445d208c284":
version: 5.20.0-12.06fc58a368dc7be9fbbbe894adf8d445d208c284
resolution: "@prisma/engines-version@npm:5.20.0-12.06fc58a368dc7be9fbbbe894adf8d445d208c284"
checksum: 10c0/1dbe962b5b55015e7f4483e5644bdaec9bf348676d72496f56a6ba365c41d4404a311ed2dd144099146048ccfa45b2752fd9e09765282404d266c4d34179d904
languageName: node
linkType: hard

"@prisma/engines@npm:5.19.1":
version: 5.19.1
resolution: "@prisma/engines@npm:5.19.1"
"@prisma/engines@npm:5.20.0":
version: 5.20.0
resolution: "@prisma/engines@npm:5.20.0"
dependencies:
"@prisma/debug": "npm:5.19.1"
"@prisma/engines-version": "npm:5.19.1-2.69d742ee20b815d88e17e54db4a2a7a3b30324e3"
"@prisma/fetch-engine": "npm:5.19.1"
"@prisma/get-platform": "npm:5.19.1"
checksum: 10c0/d12893935d842fea1c5344e3ab0f769b01ec1c71a91bec3ac9ceb58838fe7f745d226d5b8b9ac386ad503c56773272586bb73188d592ec8d4e05f43285009155
"@prisma/debug": "npm:5.20.0"
"@prisma/engines-version": "npm:5.20.0-12.06fc58a368dc7be9fbbbe894adf8d445d208c284"
"@prisma/fetch-engine": "npm:5.20.0"
"@prisma/get-platform": "npm:5.20.0"
checksum: 10c0/1197d2796f4daef24bc8cf6c5e85ac360e3a1ab6cd0b0a4751650fd728a53f6c66681c39fab9b68b0f78f95586bef174f383dda9e0bca08274d2c1cdcd3b1f9f
languageName: node
linkType: hard

"@prisma/fetch-engine@npm:5.19.1":
version: 5.19.1
resolution: "@prisma/fetch-engine@npm:5.19.1"
"@prisma/fetch-engine@npm:5.20.0":
version: 5.20.0
resolution: "@prisma/fetch-engine@npm:5.20.0"
dependencies:
"@prisma/debug": "npm:5.19.1"
"@prisma/engines-version": "npm:5.19.1-2.69d742ee20b815d88e17e54db4a2a7a3b30324e3"
"@prisma/get-platform": "npm:5.19.1"
checksum: 10c0/670d3f604549c4778d32febe56d948896b5c16dad5b51814c5b168a6007c9782d453cebee43cb81ddd58c9e9538811ea1a793516420ecf2c84ae4c3b4ed34f6c
"@prisma/debug": "npm:5.20.0"
"@prisma/engines-version": "npm:5.20.0-12.06fc58a368dc7be9fbbbe894adf8d445d208c284"
"@prisma/get-platform": "npm:5.20.0"
checksum: 10c0/854f4fce34b734e5046e4a5e660f2b689a40231f3dfe7c77f805c4011afab1c58570e4d45f915aa69b8889c06ea64ecb763d6f71ba8cc50b26c4365e762dbd63
languageName: node
linkType: hard

"@prisma/generator-helper@npm:5.19.1":
version: 5.19.1
resolution: "@prisma/generator-helper@npm:5.19.1"
"@prisma/generator-helper@npm:5.20.0":
version: 5.20.0
resolution: "@prisma/generator-helper@npm:5.20.0"
dependencies:
"@prisma/debug": "npm:5.19.1"
checksum: 10c0/d214013b730949849d625cb5d320d41af136ccf946e4adb08b916f881663d47af2aace027b9a3420b88053f1b7567bab2c6639631314ed125d104e81cf696e93
"@prisma/debug": "npm:5.20.0"
checksum: 10c0/3628b960b0c3dad40b781e9f226d6bf79423fcb4708c408852e265735709346cf037ae42cad5624cae3ea3884e6919098a0dfeba70d8d379b8dd1049a7a59fb0
languageName: node
linkType: hard

"@prisma/get-platform@npm:5.19.1":
version: 5.19.1
resolution: "@prisma/get-platform@npm:5.19.1"
"@prisma/get-platform@npm:5.20.0":
version: 5.20.0
resolution: "@prisma/get-platform@npm:5.20.0"
dependencies:
"@prisma/debug": "npm:5.19.1"
checksum: 10c0/a53b5c894cf4074af6164d9c503e387aba92c518ad7bad82be40f834a0030270c60f6149b20951c3e1db32bd836f582053e63c4bf7099461f0160dd5956f063e
"@prisma/debug": "npm:5.20.0"
checksum: 10c0/2a12bf0ffee6842907dd3ea40ce44430ccfcd1135e636a151e9cdbaa91a5bf62eb5f9913066d6caea2f7c87be9fd660d80258a7f775f141d20ddf8067ca651c2
languageName: node
linkType: hard

"@prisma/internals@npm:5.19.1":
version: 5.19.1
resolution: "@prisma/internals@npm:5.19.1"
"@prisma/internals@npm:5.20.0":
version: 5.20.0
resolution: "@prisma/internals@npm:5.20.0"
dependencies:
"@prisma/debug": "npm:5.19.1"
"@prisma/engines": "npm:5.19.1"
"@prisma/fetch-engine": "npm:5.19.1"
"@prisma/generator-helper": "npm:5.19.1"
"@prisma/get-platform": "npm:5.19.1"
"@prisma/prisma-schema-wasm": "npm:5.19.1-2.69d742ee20b815d88e17e54db4a2a7a3b30324e3"
"@prisma/schema-files-loader": "npm:5.19.1"
"@prisma/debug": "npm:5.20.0"
"@prisma/engines": "npm:5.20.0"
"@prisma/fetch-engine": "npm:5.20.0"
"@prisma/generator-helper": "npm:5.20.0"
"@prisma/get-platform": "npm:5.20.0"
"@prisma/prisma-schema-wasm": "npm:5.20.0-12.06fc58a368dc7be9fbbbe894adf8d445d208c284"
"@prisma/schema-files-loader": "npm:5.20.0"
arg: "npm:5.0.2"
prompts: "npm:2.4.2"
checksum: 10c0/90876d0840f8143d90ea1e63578917473e203b7d490741c8b0f48638c0034ff33038689ddf8bdf8d230a706b1100e8a10a9f0a21df3b10f65476db3794fb2eaa
checksum: 10c0/c76557ac752388e6aa2e95b4e1279ee4fc5dcb9c6190418c7d0218d349a5fc5bc1f6d7810502a2c62066b17d02745dad1f7f313db8d1499d77554ed8d38e0212
languageName: node
linkType: hard

"@prisma/prisma-schema-wasm@npm:5.19.1-2.69d742ee20b815d88e17e54db4a2a7a3b30324e3":
version: 5.19.1-2.69d742ee20b815d88e17e54db4a2a7a3b30324e3
resolution: "@prisma/prisma-schema-wasm@npm:5.19.1-2.69d742ee20b815d88e17e54db4a2a7a3b30324e3"
checksum: 10c0/c681d2a3d7dedacfe19e19395378415a3d1a39c05d5593df624a68cf0bb83b4317c86fee0d2403630a4b845325af237d00a28591abd7ae7cbfd57cfe83c90ce7
"@prisma/prisma-schema-wasm@npm:5.20.0-12.06fc58a368dc7be9fbbbe894adf8d445d208c284":
version: 5.20.0-12.06fc58a368dc7be9fbbbe894adf8d445d208c284
resolution: "@prisma/prisma-schema-wasm@npm:5.20.0-12.06fc58a368dc7be9fbbbe894adf8d445d208c284"
checksum: 10c0/e55eea9f79063cca32b31d6de5ef74bc390dfab5066d9ad95e6079670aafe10c0205930e33dc229ff378e2fccef565a18e0146eacf21277e85673ee4fd60df43
languageName: node
linkType: hard

"@prisma/schema-files-loader@npm:5.19.1":
version: 5.19.1
resolution: "@prisma/schema-files-loader@npm:5.19.1"
"@prisma/schema-files-loader@npm:5.20.0":
version: 5.20.0
resolution: "@prisma/schema-files-loader@npm:5.20.0"
dependencies:
"@prisma/prisma-schema-wasm": "npm:5.19.1-2.69d742ee20b815d88e17e54db4a2a7a3b30324e3"
"@prisma/prisma-schema-wasm": "npm:5.20.0-12.06fc58a368dc7be9fbbbe894adf8d445d208c284"
fs-extra: "npm:11.1.1"
checksum: 10c0/e557d1be4aa41679488e0a2e3f3a6ef767f82030ff81e9231dc919e40a51bf3710ae7aa281c570402b6d473f48ba59bf18445aadc7a7e2b5b64117b293ed6814
checksum: 10c0/2980da4f7757a7998a675d3538296cbd7e18d05d94ca1729280e099d03822dab57a89b202dcff241d87e55720c0042b9c67418eb6a0d7556623b6d4da8916be5
languageName: node
linkType: hard

Expand Down Expand Up @@ -7281,7 +7281,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@redwoodjs/api@workspace:packages/api"
dependencies:
"@prisma/client": "npm:5.19.1"
"@prisma/client": "npm:5.20.0"
"@redwoodjs/framework-tools": "workspace:*"
"@types/aws-lambda": "npm:8.10.145"
"@types/jsonwebtoken": "npm:9.0.7"
Expand Down Expand Up @@ -7545,7 +7545,7 @@ __metadata:
"@babel/cli": "npm:7.24.8"
"@babel/core": "npm:^7.22.20"
"@babel/runtime-corejs3": "npm:7.25.0"
"@prisma/internals": "npm:5.19.1"
"@prisma/internals": "npm:5.20.0"
"@redwoodjs/cli-helpers": "workspace:*"
"@simplewebauthn/browser": "npm:7.4.0"
"@simplewebauthn/typescript-types": "npm:7.4.0"
Expand Down Expand Up @@ -7874,7 +7874,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@redwoodjs/cli-data-migrate@workspace:packages/cli-packages/dataMigrate"
dependencies:
"@prisma/client": "npm:5.19.1"
"@prisma/client": "npm:5.20.0"
"@redwoodjs/babel-config": "workspace:*"
"@redwoodjs/framework-tools": "workspace:*"
"@redwoodjs/project-config": "workspace:*"
Expand Down Expand Up @@ -7964,7 +7964,7 @@ __metadata:
"@opentelemetry/resources": "npm:1.22.0"
"@opentelemetry/sdk-trace-node": "npm:1.22.0"
"@opentelemetry/semantic-conventions": "npm:1.22.0"
"@prisma/internals": "npm:5.19.1"
"@prisma/internals": "npm:5.20.0"
"@redwoodjs/api-server": "workspace:*"
"@redwoodjs/cli-helpers": "workspace:*"
"@redwoodjs/fastify-web": "workspace:*"
Expand Down Expand Up @@ -8002,7 +8002,7 @@ __metadata:
pluralize: "npm:8.0.0"
portfinder: "npm:1.0.32"
prettier: "npm:3.3.3"
prisma: "npm:5.19.1"
prisma: "npm:5.20.0"
prompts: "npm:2.4.2"
rimraf: "npm:6.0.1"
semver: "npm:7.6.3"
Expand Down Expand Up @@ -8349,7 +8349,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@redwoodjs/jobs@workspace:packages/jobs"
dependencies:
"@prisma/client": "npm:5.19.1"
"@prisma/client": "npm:5.20.0"
"@redwoodjs/cli-helpers": "workspace:*"
"@redwoodjs/framework-tools": "workspace:*"
"@redwoodjs/project-config": "workspace:*"
Expand Down Expand Up @@ -8556,8 +8556,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@redwoodjs/record@workspace:packages/record"
dependencies:
"@prisma/client": "npm:5.19.1"
"@prisma/internals": "npm:5.19.1"
"@prisma/client": "npm:5.20.0"
"@prisma/internals": "npm:5.20.0"
"@redwoodjs/api": "workspace:*"
"@redwoodjs/framework-tools": "workspace:*"
"@redwoodjs/project-config": "workspace:*"
Expand Down Expand Up @@ -8620,7 +8620,7 @@ __metadata:
resolution: "@redwoodjs/storage@workspace:packages/storage"
dependencies:
"@arethetypeswrong/cli": "npm:0.16.4"
"@prisma/client": "npm:5.19.1"
"@prisma/client": "npm:5.20.0"
"@redwoodjs/framework-tools": "workspace:*"
"@redwoodjs/project-config": "workspace:*"
"@types/mime-types": "npm:2.1.4"
Expand All @@ -8643,7 +8643,7 @@ __metadata:
"@babel/cli": "npm:7.24.8"
"@babel/core": "npm:^7.22.20"
"@babel/runtime-corejs3": "npm:7.25.0"
"@prisma/internals": "npm:5.19.1"
"@prisma/internals": "npm:5.20.0"
"@redwoodjs/project-config": "workspace:*"
"@types/fs-extra": "npm:11.0.4"
"@types/line-column": "npm:1.0.2"
Expand Down Expand Up @@ -25109,18 +25109,18 @@ __metadata:
languageName: node
linkType: hard

"prisma@npm:5.19.1":
version: 5.19.1
resolution: "prisma@npm:5.19.1"
"prisma@npm:5.20.0":
version: 5.20.0
resolution: "prisma@npm:5.20.0"
dependencies:
"@prisma/engines": "npm:5.19.1"
"@prisma/engines": "npm:5.20.0"
fsevents: "npm:2.3.3"
dependenciesMeta:
fsevents:
optional: true
bin:
prisma: build/index.js
checksum: 10c0/efbe4966fc5450e8c3c7e09f8e9950c2068e90f44b1cbb3584f4e48d7188a4d5230ec8fb12c3b9ba75fa7407fe45c0527123579e121a31ef652512f39c29c2d9
checksum: 10c0/8b4ba34421b0552a055e671cecef53a5f244bf79c7fb767c9493f347a1f24f458ed84cdf78e32e067f67b173d98482edf68df1cd6072d523669cf914b4e376a9
languageName: node
linkType: hard

Expand Down

0 comments on commit e881431

Please sign in to comment.