Skip to content

Commit

Permalink
chore(deps): update prisma monorepo to v5.19.1 (#11486)
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.18.0` ->
`5.19.1`](https://renovatebot.com/diffs/npm/@prisma%2fclient/5.18.0/5.19.1)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@prisma%2fclient/5.19.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@prisma%2fclient/5.19.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@prisma%2fclient/5.18.0/5.19.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@prisma%2fclient/5.18.0/5.19.1?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.18.0` ->
`5.19.1`](https://renovatebot.com/diffs/npm/@prisma%2finternals/5.18.0/5.19.1)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@prisma%2finternals/5.19.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@prisma%2finternals/5.19.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@prisma%2finternals/5.18.0/5.19.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@prisma%2finternals/5.18.0/5.19.1?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.18.0` ->
`5.19.1`](https://renovatebot.com/diffs/npm/prisma/5.18.0/5.19.1) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/prisma/5.19.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/prisma/5.19.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/prisma/5.18.0/5.19.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/prisma/5.18.0/5.19.1?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.19.1`](https://redirect.github.com/prisma/prisma/releases/tag/5.19.1)

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

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

#### What's Changed

We've fixed the following issues:

-
[prisma/prisma#25103
-
[prisma/prisma#25137
-
[prisma/prisma#25104
-
[prisma/prisma#25101

**Full Changelog**:
prisma/prisma@5.19.0...5.19.x,
prisma/prisma-engines@5.19.0...5.19.x

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

[Compare
Source](https://redirect.github.com/prisma/prisma/compare/5.18.0...5.19.0)

Today, we are excited to share the `5.19.0` stable release 🎉

🌟 **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.19.0%20%F0%9F%9A%80%0D%0A%0D%0Ahttps://github.com/prisma/prisma/releases/tag/5.19.0)
about the release.** 🌟

#### Highlights

##### Introducing TypedSQL

TypedSQL is a brand new way to interact with your database from Prisma
Client. After enabling the `typedSql` Preview feature, you’re able to
write SQL queries in a new `sql` subdirectory of your `prisma`
directory. These queries are then checked by Prisma during using the new
`--sql` flag of `prisma generate` and added to your client for use in
your code.

To get started with TypedSQL:

1. Make sure that you have the latest version of `prisma` and
`@prisma/client` installed:

        npm install -D prisma@latest
        npm install @&#8203;prisma/client@latest

2.  Enable the `typedSql` Preview feature in your Prisma Schema.

           generator client {
             provider = "prisma-client-js"
             previewFeatures = ["typedSql"]
           }

3.  Create a `sql` subdirectory of your `prisma` directory.

        mkdir -p prisma/sql

4. You can now add `.sql` files to the `sql` directory! Each file can
contain one sql query and the name must be a valid JS identifier. For
this example, say you had the file `getUsersWithPosts.sql` with the
following contents:

    ```sql
    SELECT u.id, u.name, COUNT(p.id) as "postCount"
    FROM "User" u
    LEFT JOIN "Post" p ON u.id = p."authorId"
    GROUP BY u.id, u.name
    ```

5. Import your SQL query into your code with the `@prisma/client/sql`
import:

    ```tsx
       import { PrismaClient } from '@&#8203;prisma/client'
       import { getUsersWithPosts } from '@&#8203;prisma/client/sql'

       const prisma = new PrismaClient()

const usersWithPostCounts = await
prisma.$queryRawTyped(getUsersWithPosts)
       console.log(usersWithPostCounts)
    ```

There’s a lot more to talk about with TypedSQL. We think that the
combination of the high-level Prisma Client API and the low-level
TypedSQL will make for a great developer experience for all of our
users.

To learn more about behind the “why” of TypedSQL [be sure to check out
our announcement blog post](https://pris.ly/typedsql-blog).

For docs, check out our new [TypedSQL
section](https://pris.ly/d/typedsql).

#### Bug fixes

##### Driver adapters and D1

A few issues with our `driverAdapters` Preview feature and Cloudflare D1
support were resolved via
[prisma/prisma-engines#4970
and
[prisma/prisma#24922

- Mathematic operations such as `max`, `min`, `eq`, etc in queries when
using Cloudflare D1.
- Resolved issues when comparing `BigInt` IDs when
`relationMode="prisma"` was enabled and Cloudflare D1 was being used.

##### Joins

-
[prisma/prisma#23742
fixes Prisma Client not supporting deeply nested `some` clauses when the
`relationJoins` Preview feature was enabled.

#### Join us

Looking to make an impact on Prisma in a big way? We're now hiring
engineers for the ORM team!

- [Senior Engineer
(TypeScript)](https://boards.greenhouse.io/prisma/jobs/5350820002): This
person will be primarily working on the TypeScript side and evolving our
Prisma client. Rust knowledge (or desire to learn Rust) is a plus.
- [Senior Engineer
(Rust)](https://boards.greenhouse.io/prisma/jobs/6940273002): This
person will be focused on the `prisma-engines` Rust codebase. TypeScript
knowledge (or, again, a desire to learn) is a plus.

#### Credits

Huge thanks to
[@&#8203;mcuelenaere](https://redirect.github.com/mcuelenaere),
[@&#8203;pagewang0](https://redirect.github.com/pagewang0),
[@&#8203;Druue](https://redirect.github.com/Druue),
[@&#8203;key-moon](https://redirect.github.com/key-moon),
[@&#8203;Jolg42](https://redirect.github.com/Jolg42),
[@&#8203;pranayat](https://redirect.github.com/pranayat),
[@&#8203;ospfranco](https://redirect.github.com/ospfranco),
[@&#8203;yubrot](https://redirect.github.com/yubrot),
[@&#8203;skyzh](https://redirect.github.com/skyzh) 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:eyJjcmVhdGVkSW5WZXIiOiIzOC41OS4yIiwidXBkYXRlZEluVmVyIjoiMzguNTkuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored and Josh-Walker-GM committed Sep 10, 2024
1 parent 3ba6500 commit c26cc76
Show file tree
Hide file tree
Showing 9 changed files with 88 additions and 84 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.18.0",
"@prisma/client": "5.19.1",
"@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.18.0",
"@prisma/internals": "5.19.1",
"@redwoodjs/cli-helpers": "workspace:*",
"@simplewebauthn/browser": "7.4.0",
"core-js": "3.38.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.18.0",
"@prisma/client": "5.19.1",
"@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.18.0",
"@prisma/internals": "5.19.1",
"@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.18.0",
"prisma": "5.19.1",
"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.24.0"
},
"devDependencies": {
"@prisma/client": "5.18.0",
"@prisma/client": "5.19.1",
"@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.18.0",
"@prisma/client": "5.19.1",
"@redwoodjs/api": "workspace:*",
"@redwoodjs/project-config": "workspace:*",
"camelcase": "6.3.0"
},
"devDependencies": {
"@prisma/internals": "5.18.0",
"@prisma/internals": "5.19.1",
"@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.15.4",
"@prisma/client": "5.18.0",
"@prisma/client": "5.19.1",
"@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.18.0",
"@prisma/internals": "5.19.1",
"@redwoodjs/project-config": "workspace:*",
"@types/line-column": "1.0.2",
"camelcase": "6.3.0",
Expand Down
152 changes: 78 additions & 74 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6392,104 +6392,104 @@ __metadata:
languageName: node
linkType: hard

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

"@prisma/debug@npm:5.18.0":
version: 5.18.0
resolution: "@prisma/debug@npm:5.18.0"
checksum: 10c0/fcc1e784748e207410aac9fe5989d0b9b889f8fe1bf52ca742d7fcc09c5abd5897b7ee4dbce33c86ce501681619a06c5802bbe9bd2ba5264435f6c04eeddeeec
"@prisma/debug@npm:5.19.1":
version: 5.19.1
resolution: "@prisma/debug@npm:5.19.1"
checksum: 10c0/4b88719b9a0dd76692bec766fd8188b685a81f0459f3df8fb44b4c492b483a6aadaf7021f7aca90afa5a2f27d84d737a3f2d5abed5f9f818a640487f49d1b8c4
languageName: node
linkType: hard

"@prisma/engines-version@npm:5.18.0-25.4c784e32044a8a016d99474bd02a3b6123742169":
version: 5.18.0-25.4c784e32044a8a016d99474bd02a3b6123742169
resolution: "@prisma/engines-version@npm:5.18.0-25.4c784e32044a8a016d99474bd02a3b6123742169"
checksum: 10c0/6f5683a61414e95f4adf7bdffa2854733bb4b3bed1c020aa3b9241f6ad38ecf6e2cf0be36492fbd9aa3bbf9d0b2b6d4d2b7b0578d4c1b6b65336ef90f52e79b9
"@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
languageName: node
linkType: hard

"@prisma/engines@npm:5.18.0":
version: 5.18.0
resolution: "@prisma/engines@npm:5.18.0"
"@prisma/engines@npm:5.19.1":
version: 5.19.1
resolution: "@prisma/engines@npm:5.19.1"
dependencies:
"@prisma/debug": "npm:5.18.0"
"@prisma/engines-version": "npm:5.18.0-25.4c784e32044a8a016d99474bd02a3b6123742169"
"@prisma/fetch-engine": "npm:5.18.0"
"@prisma/get-platform": "npm:5.18.0"
checksum: 10c0/3d39b8e2e620c54cbb98df303896ef980dd5707f872f26471f6fd3e7dd59d4ddacac70020da1fc9f864c87a69bf38b5a50d3884f7a820314306de53c9aefaa43
"@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
languageName: node
linkType: hard

"@prisma/fetch-engine@npm:5.18.0":
version: 5.18.0
resolution: "@prisma/fetch-engine@npm:5.18.0"
"@prisma/fetch-engine@npm:5.19.1":
version: 5.19.1
resolution: "@prisma/fetch-engine@npm:5.19.1"
dependencies:
"@prisma/debug": "npm:5.18.0"
"@prisma/engines-version": "npm:5.18.0-25.4c784e32044a8a016d99474bd02a3b6123742169"
"@prisma/get-platform": "npm:5.18.0"
checksum: 10c0/98e6a9cdaad41b2f99846f9b56d679295353ab33104bd8074ed9390ab898d7c80a3a62b0726b8fafb685da5748c4eca71254777aaa815b9a8da3041d402bdf4e
"@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
languageName: node
linkType: hard

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

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

"@prisma/internals@npm:5.18.0":
version: 5.18.0
resolution: "@prisma/internals@npm:5.18.0"
"@prisma/internals@npm:5.19.1":
version: 5.19.1
resolution: "@prisma/internals@npm:5.19.1"
dependencies:
"@prisma/debug": "npm:5.18.0"
"@prisma/engines": "npm:5.18.0"
"@prisma/fetch-engine": "npm:5.18.0"
"@prisma/generator-helper": "npm:5.18.0"
"@prisma/get-platform": "npm:5.18.0"
"@prisma/prisma-schema-wasm": "npm:5.18.0-25.4c784e32044a8a016d99474bd02a3b6123742169"
"@prisma/schema-files-loader": "npm:5.18.0"
"@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"
arg: "npm:5.0.2"
prompts: "npm:2.4.2"
checksum: 10c0/616f28a321143bbff739b8604bd75a253db880c04aeaf569417e12ff5373ff859055c18c7747993a63947e6e9737d3f1dbf8281f3ab415bd7086edf95f616314
checksum: 10c0/90876d0840f8143d90ea1e63578917473e203b7d490741c8b0f48638c0034ff33038689ddf8bdf8d230a706b1100e8a10a9f0a21df3b10f65476db3794fb2eaa
languageName: node
linkType: hard

"@prisma/prisma-schema-wasm@npm:5.18.0-25.4c784e32044a8a016d99474bd02a3b6123742169":
version: 5.18.0-25.4c784e32044a8a016d99474bd02a3b6123742169
resolution: "@prisma/prisma-schema-wasm@npm:5.18.0-25.4c784e32044a8a016d99474bd02a3b6123742169"
checksum: 10c0/f07d2c7b93517cdb7a69c7b0872137f7d5ed1707abc31dd56f98361c123cc876cb00bf3a92da496029a1106cec3c379507c6aa6aaa0e7fc684f5a1720f7854b1
"@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
languageName: node
linkType: hard

"@prisma/schema-files-loader@npm:5.18.0":
version: 5.18.0
resolution: "@prisma/schema-files-loader@npm:5.18.0"
"@prisma/schema-files-loader@npm:5.19.1":
version: 5.19.1
resolution: "@prisma/schema-files-loader@npm:5.19.1"
dependencies:
"@prisma/prisma-schema-wasm": "npm:5.18.0-25.4c784e32044a8a016d99474bd02a3b6123742169"
"@prisma/prisma-schema-wasm": "npm:5.19.1-2.69d742ee20b815d88e17e54db4a2a7a3b30324e3"
fs-extra: "npm:11.1.1"
checksum: 10c0/e19fb3e1d0f6154a433743b9a9ce1dc29f22f1d71e00d8924ebfd7030b352da82985cf281da1e39a41ebf5ba62a2ab9aa8c018d9e2aca1b4736d96c08f621925
checksum: 10c0/e557d1be4aa41679488e0a2e3f3a6ef767f82030ff81e9231dc919e40a51bf3710ae7aa281c570402b6d473f48ba59bf18445aadc7a7e2b5b64117b293ed6814
languageName: node
linkType: hard

Expand Down Expand Up @@ -7268,7 +7268,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@redwoodjs/api@workspace:packages/api"
dependencies:
"@prisma/client": "npm:5.18.0"
"@prisma/client": "npm:5.19.1"
"@redwoodjs/framework-tools": "workspace:*"
"@types/aws-lambda": "npm:8.10.145"
"@types/jsonwebtoken": "npm:9.0.6"
Expand Down Expand Up @@ -7532,7 +7532,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.18.0"
"@prisma/internals": "npm:5.19.1"
"@redwoodjs/cli-helpers": "workspace:*"
"@simplewebauthn/browser": "npm:7.4.0"
"@simplewebauthn/typescript-types": "npm:7.4.0"
Expand Down Expand Up @@ -7861,7 +7861,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@redwoodjs/cli-data-migrate@workspace:packages/cli-packages/dataMigrate"
dependencies:
"@prisma/client": "npm:5.18.0"
"@prisma/client": "npm:5.19.1"
"@redwoodjs/babel-config": "workspace:*"
"@redwoodjs/framework-tools": "workspace:*"
"@redwoodjs/project-config": "workspace:*"
Expand Down Expand Up @@ -7951,7 +7951,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.18.0"
"@prisma/internals": "npm:5.19.1"
"@redwoodjs/api-server": "workspace:*"
"@redwoodjs/cli-helpers": "workspace:*"
"@redwoodjs/fastify-web": "workspace:*"
Expand Down Expand Up @@ -7989,7 +7989,7 @@ __metadata:
pluralize: "npm:8.0.0"
portfinder: "npm:1.0.32"
prettier: "npm:3.3.3"
prisma: "npm:5.18.0"
prisma: "npm:5.19.1"
prompts: "npm:2.4.2"
rimraf: "npm:6.0.1"
semver: "npm:7.6.3"
Expand Down Expand Up @@ -8336,7 +8336,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@redwoodjs/jobs@workspace:packages/jobs"
dependencies:
"@prisma/client": "npm:5.18.0"
"@prisma/client": "npm:5.19.1"
"@redwoodjs/cli-helpers": "workspace:*"
"@redwoodjs/framework-tools": "workspace:*"
"@redwoodjs/project-config": "workspace:*"
Expand Down Expand Up @@ -8543,8 +8543,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@redwoodjs/record@workspace:packages/record"
dependencies:
"@prisma/client": "npm:5.18.0"
"@prisma/internals": "npm:5.18.0"
"@prisma/client": "npm:5.19.1"
"@prisma/internals": "npm:5.19.1"
"@redwoodjs/api": "workspace:*"
"@redwoodjs/framework-tools": "workspace:*"
"@redwoodjs/project-config": "workspace:*"
Expand Down Expand Up @@ -8606,7 +8606,7 @@ __metadata:
resolution: "@redwoodjs/storage@workspace:packages/storage"
dependencies:
"@arethetypeswrong/cli": "npm:0.15.4"
"@prisma/client": "npm:5.18.0"
"@prisma/client": "npm:5.19.1"
"@redwoodjs/framework-tools": "workspace:*"
"@redwoodjs/project-config": "workspace:*"
"@types/mime-types": "npm:2.1.4"
Expand All @@ -8629,7 +8629,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.18.0"
"@prisma/internals": "npm:5.19.1"
"@redwoodjs/project-config": "workspace:*"
"@types/fs-extra": "npm:11.0.4"
"@types/line-column": "npm:1.0.2"
Expand Down Expand Up @@ -17938,7 +17938,7 @@ __metadata:
languageName: node
linkType: hard

"fsevents@npm:^2.3.2, fsevents@npm:~2.3.2, fsevents@npm:~2.3.3":
"fsevents@npm:2.3.3, fsevents@npm:^2.3.2, fsevents@npm:~2.3.2, fsevents@npm:~2.3.3":
version: 2.3.3
resolution: "fsevents@npm:2.3.3"
dependencies:
Expand All @@ -17957,7 +17957,7 @@ __metadata:
languageName: node
linkType: hard

"fsevents@patch:fsevents@npm%3A^2.3.2#optional!builtin<compat/fsevents>, fsevents@patch:fsevents@npm%3A~2.3.2#optional!builtin<compat/fsevents>, fsevents@patch:fsevents@npm%3A~2.3.3#optional!builtin<compat/fsevents>":
"fsevents@patch:fsevents@npm%3A2.3.3#optional!builtin<compat/fsevents>, fsevents@patch:fsevents@npm%3A^2.3.2#optional!builtin<compat/fsevents>, fsevents@patch:fsevents@npm%3A~2.3.2#optional!builtin<compat/fsevents>, fsevents@patch:fsevents@npm%3A~2.3.3#optional!builtin<compat/fsevents>":
version: 2.3.3
resolution: "fsevents@patch:fsevents@npm%3A2.3.3#optional!builtin<compat/fsevents>::version=2.3.3&hash=df0bf1"
dependencies:
Expand Down Expand Up @@ -25172,14 +25172,18 @@ __metadata:
languageName: node
linkType: hard

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

Expand Down

0 comments on commit c26cc76

Please sign in to comment.