Skip to content

Commit d5dedc9

Browse files
fix(deps): update prisma monorepo to v7.5.0 (#1389)
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [@prisma/adapter-better-sqlite3](https://redirect.github.com/prisma/prisma) ([source](https://redirect.github.com/prisma/prisma/tree/HEAD/packages/adapter-better-sqlite3)) | [`7.4.2` → `7.5.0`](https://renovatebot.com/diffs/npm/@prisma%2fadapter-better-sqlite3/7.4.2/7.5.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@prisma%2fadapter-better-sqlite3/7.5.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@prisma%2fadapter-better-sqlite3/7.4.2/7.5.0?slim=true) | | [@prisma/client](https://www.prisma.io) ([source](https://redirect.github.com/prisma/prisma/tree/HEAD/packages/client)) | [`7.4.2` → `7.5.0`](https://renovatebot.com/diffs/npm/@prisma%2fclient/7.4.2/7.5.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@prisma%2fclient/7.5.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@prisma%2fclient/7.4.2/7.5.0?slim=true) | | [@prisma/internals](https://www.prisma.io) ([source](https://redirect.github.com/prisma/prisma/tree/HEAD/packages/internals)) | [`7.4.2` → `7.5.0`](https://renovatebot.com/diffs/npm/@prisma%2finternals/7.4.2/7.5.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@prisma%2finternals/7.5.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@prisma%2finternals/7.4.2/7.5.0?slim=true) | | [prisma](https://www.prisma.io) ([source](https://redirect.github.com/prisma/prisma/tree/HEAD/packages/cli)) | [`7.4.2` → `7.5.0`](https://renovatebot.com/diffs/npm/prisma/7.4.2/7.5.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/prisma/7.5.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/prisma/7.4.2/7.5.0?slim=true) | --- ### Release Notes <details> <summary>prisma/prisma (@&#8203;prisma/adapter-better-sqlite3)</summary> ### [`v7.5.0`](https://redirect.github.com/prisma/prisma/releases/tag/7.5.0) [Compare Source](https://redirect.github.com/prisma/prisma/compare/7.4.2...7.5.0) Today, we are excited to share the `7.5.0` stable release 🎉 **🌟 Star this repo for notifications about new releases, bug fixes & features — or [follow us on X](https://pris.ly/x)!** ##### Highlights ##### ORM ##### Features - **Added support for nested transaction rollbacks via savepoints (**[#&#8203;21678](https://redirect.github.com/prisma/prisma/pull/21678)) Adds support for **nested transaction rollback behavior** for SQL databases: if an outer transaction fails, the inner nested transaction is rolled back as well. Implements this by tracking **transaction ID + nesting depth** so Prisma can reuse an existing open transaction in the underlying engine, and it also enables using **`$transaction` from an interactive transaction client**. ##### Bug fixes **Driver Adapters** - Made the `adapter-mariadb` use the binary MySQL protocol to fix an issue with lossy number conversions ([#&#8203;29285](https://redirect.github.com/prisma/prisma/pull/29285)) - Made `@types/pg` a direct dependency of `adapter-pg` for better TypeScript experience out-of-the-box ([#&#8203;29277](https://redirect.github.com/prisma/prisma/pull/29277)) **Prisma Client** - Resolved `Prisma.DbNull` serializing as empty object in some bundled environments like Next.js ([#&#8203;29286](https://redirect.github.com/prisma/prisma/pull/29286)) - Fixed DateTime fields returning `Invalid Date` with `unixepoch-ms` timestamps in some cases ([#&#8203;29274](https://redirect.github.com/prisma/prisma/pull/29274)) - Fixed a cursor-based pagination issue with `@db.Date` columns ([#&#8203;29327](https://redirect.github.com/prisma/prisma/pull/29327)) **Schema Engine** - Manual partial indexes are now preserved when `partialIndexes` preview feature is disabled, preventing unnecessary drops and additions in migrations ([#&#8203;5790](https://redirect.github.com/prisma/prisma-engines/pull/5790), [#&#8203;5795](https://redirect.github.com/prisma/prisma-engines/pull/5795)) - Enhanced partial index predicate comparison to handle quoted vs unquoted identifiers correctly, eliminating needless recreate cycles ([#&#8203;5788](https://redirect.github.com/prisma/prisma-engines/pull/5788)) - Excluded partial unique indexes from DMMF `uniqueFields` and `uniqueIndexes` to prevent incorrect `findUnique` input type generation ([#&#8203;5792](https://redirect.github.com/prisma/prisma-engines/pull/5792)) ##### Studio With the launch of Prisma ORM v7, we also introduced a rebuilt version of Prisma Studio. With the feedback we’ve gathered since the release, we’ve added some high requested features to help make Studio a better experience. **Multi-cell Selection & Full Table Search** This release brings the ability to select multiple cells when viewing your database. In addition to being able to select multiple cells, you can also search across your database. You can search for a specific table or for specific cells within that table. ![Adobe Express - CleanShot 2026-03-04 at 21 15 08-2](https://redirect.github.com/user-attachments/assets/e3d2aa3d-ae03-47f0-a5d6-3530675864f7) **More intuitive filtering** Filtering is now easier to use, and includes an option for raw SQL filters. ![CleanShot 2026-03-11 at 11 26 35](https://redirect.github.com/user-attachments/assets/ba20f670-3770-4dcf-869f-673519bd847c) And if you are using Studio in Console, you can use ai generated filters: ![CleanShot 2026-03-11 at 11 28 18](https://redirect.github.com/user-attachments/assets/4bd1c328-2429-4fb1-948d-d8d841900f22) **Cmd+k Command Palette** You can now use the keyboard to perform most actions in Studio with the new cmd+k command palette ![CleanShot 2026-03-11 at 11 30 35](https://redirect.github.com/user-attachments/assets/691b7a6e-c677-480c-addc-db42fc2aa9a5) **Run raw SQL queries** Another feature we’ve included in Prisma Studio is the ability to run raw SQL queries against your data. There’s a new “SQL” tab in the sidebar that will bring you to page where you can perform any queries against your data. Below, we’re getting all the rows in the “Todo” table. ![Adobe Express - Screen Recording 2026-03-10 at 2 30 52 PM-2](https://redirect.github.com/user-attachments/assets/9f3cf91f-23d3-49f1-9cd7-661752186432) ##### Open roles at Prisma Interested in joining Prisma? We’re growing and have several exciting opportunities across the company for developers who are passionate about building with Prisma. Explore our open positions on our \[[Careers page](https://www.prisma.io/careers#current)]\(<https://www.prisma.io/careers#current>) and find the role that’s right for you. ##### Enterprise support Thousands of teams use Prisma and many of them already tap into our Enterprise & Agency Support Program for hands-on help with everything from schema integrations and performance tuning to security and compliance. With this program you also get priority issue triage and bug fixes, expert scalability advice, and custom training so that your Prisma-powered apps stay rock-solid at any scale. Learn more or join: <https://prisma.io/enterprise>. </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/cedarjs/cedar). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My42Ni40IiwidXBkYXRlZEluVmVyIjoiNDMuNjYuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiY2hhbmdlc2V0cy1vayIsInJlbGVhc2U6ZGVwZW5kZW5jeSJdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 446abbc commit d5dedc9

File tree

14 files changed

+138
-138
lines changed

14 files changed

+138
-138
lines changed

packages/api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
"test:watch": "vitest watch"
8888
},
8989
"dependencies": {
90-
"@prisma/client": "7.4.2",
90+
"@prisma/client": "7.5.0",
9191
"@whatwg-node/fetch": "0.10.13",
9292
"cookie": "1.1.1",
9393
"humanize-string": "2.1.0",

packages/auth-providers/dbAuth/setup/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"dependencies": {
2727
"@babel/runtime-corejs3": "7.29.0",
2828
"@cedarjs/cli-helpers": "workspace:*",
29-
"@prisma/internals": "7.4.2",
29+
"@prisma/internals": "7.5.0",
3030
"@simplewebauthn/browser": "10.0.0",
3131
"core-js": "3.48.0",
3232
"prompts": "2.4.2",

packages/cli-packages/dataMigrate/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
},
3838
"devDependencies": {
3939
"@cedarjs/framework-tools": "workspace:*",
40-
"@prisma/client": "7.4.2",
40+
"@prisma/client": "7.5.0",
4141
"@types/yargs": "17.0.35",
4242
"memfs": "4.56.11",
4343
"tsx": "4.21.0",

packages/cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"@opentelemetry/resources": "1.30.1",
5252
"@opentelemetry/sdk-trace-node": "1.30.1",
5353
"@opentelemetry/semantic-conventions": "1.38.0",
54-
"@prisma/internals": "7.4.2",
54+
"@prisma/internals": "7.5.0",
5555
"ansis": "4.2.0",
5656
"archiver": "7.0.1",
5757
"boxen": "5.1.2",
@@ -78,7 +78,7 @@
7878
"pluralize": "8.0.0",
7979
"portfinder": "1.0.38",
8080
"prettier": "3.8.1",
81-
"prisma": "7.4.2",
81+
"prisma": "7.5.0",
8282
"prompts": "2.4.2",
8383
"recast": "0.23.11",
8484
"rimraf": "6.1.3",

packages/create-cedar-app/templates/esm-js/api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"version": "0.0.0",
55
"private": true,
66
"dependencies": {
7-
"@prisma/adapter-better-sqlite3": "7.4.2",
7+
"@prisma/adapter-better-sqlite3": "7.5.0",
88
"@cedarjs/api": "2.8.0",
99
"@cedarjs/graphql-server": "2.8.0",
1010
"better-sqlite3": "12.6.2"

packages/create-cedar-app/templates/esm-ts/api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"version": "0.0.0",
55
"private": true,
66
"dependencies": {
7-
"@prisma/adapter-better-sqlite3": "7.4.2",
7+
"@prisma/adapter-better-sqlite3": "7.5.0",
88
"@cedarjs/api": "2.8.0",
99
"@cedarjs/graphql-server": "2.8.0",
1010
"better-sqlite3": "12.6.2"

packages/create-cedar-app/templates/js/api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"dependencies": {
66
"@cedarjs/api": "2.8.0",
77
"@cedarjs/graphql-server": "2.8.0",
8-
"@prisma/adapter-better-sqlite3": "7.4.2",
8+
"@prisma/adapter-better-sqlite3": "7.5.0",
99
"better-sqlite3": "12.6.2"
1010
}
1111
}

packages/create-cedar-app/templates/ts/api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"dependencies": {
66
"@cedarjs/api": "2.8.0",
77
"@cedarjs/graphql-server": "2.8.0",
8-
"@prisma/adapter-better-sqlite3": "7.4.2",
8+
"@prisma/adapter-better-sqlite3": "7.5.0",
99
"better-sqlite3": "12.6.2"
1010
}
1111
}

packages/jobs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
},
4646
"devDependencies": {
4747
"@cedarjs/framework-tools": "workspace:*",
48-
"@prisma/client": "7.4.2",
48+
"@prisma/client": "7.5.0",
4949
"concurrently": "9.2.1",
5050
"publint": "0.3.18",
5151
"tsx": "4.21.0",

packages/project-config/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"test:watch": "vitest watch"
3737
},
3838
"dependencies": {
39-
"@prisma/internals": "7.4.2",
39+
"@prisma/internals": "7.5.0",
4040
"deepmerge": "4.3.1",
4141
"fast-glob": "3.3.3",
4242
"smol-toml": "1.6.0",
@@ -46,7 +46,7 @@
4646
"@arethetypeswrong/cli": "0.18.2",
4747
"@cedarjs/framework-tools": "workspace:*",
4848
"concurrently": "9.2.1",
49-
"prisma": "7.4.2",
49+
"prisma": "7.5.0",
5050
"publint": "0.3.18",
5151
"rimraf": "6.1.3",
5252
"tsx": "4.21.0",

0 commit comments

Comments
 (0)