Bump prisma from 4.16.2 to 6.13.0
Type: Pull Request
State: Closed
![dependabot[bot]](https://github.com/dependabot.png)
Association: None
Comments: 2
(about 1 month ago)
(26 days ago)
(26 days ago)
dependencies javascript
Bumps prisma from 4.16.2 to 6.13.0.
Release notes
Sourced from prisma's releases.
6.13.0
Today, we are excited to share the
6.13.0
stable release 🎉🌟 Star this repo for notifications about new releases, bug fixes & features — or follow us on X!
Highlights
In this ORM release, we’re moving the Prisma Config file and the multi-schema feature into General Availability. This means these features now are fully production-ready and we’re looking forward to seeing what you are going to build with them!
Additionally, support for SQL views is getting an important update to further stabilize its API.
Configuring Prisma via Prisma Config is now Generally Available
The
prisma.config.ts
file is Prisma ORM’s native way to provide configuration options for your project. It currently lets you specify:
- the locations for various Prisma-related assets, such as your:
- Prisma schema file
- migrations
- SQL view definitions
- TypedSQL queries
- a
seed
command to populate your database based on some executable script- externally managed tables (see below)
- the driver adapters to be used by the Prisma CLI when interacting with your database
Here’s an example Prisma Config file that specified custom locations for various project assets in and a seed script inside a
db
directory:import path from "node:path"; import { defineConfig } from "prisma/config";
export default defineConfig({
schema: path.join("db", "schema.prisma"),
migrations: {
path: path.join("db", "migrations"),
seed: "tsx db/seed.ts"
}
});
Note that you’ll also see warning now if you defined a
prisma.seed
command inpackage.json
.We’re excited to move the
prisma.config.ts
file into General Availability. If you used it before in your projects, you can now dropearlyAccess
from its options:import { defineConfig } from "prisma/config";
export default defineConfig({
- earlyAccess: true,
});
... (truncated)
Commits
ddc1046
chore(cli): Moved MCP.ts to mcp directory, added mcp/README.md, and r… (#27631)cb67f68
fix: fix flacky cli test due to time formatting (#27762)c7f5a71
chore(deps): update engines to 6.13.0-33.4c9c25c84cf1a4c0744a0b15acab20e1c91c...2dcebb3
feat(config): add migrations.seed support (#27724)86b31c2
fix(config): e2e tests (#27725)4ba02d2
feat(config): display warning whenpackage.json#prisma
is detected when loa...ecd6c1a
feat(config): remove earlyAccess: true in favor of scoped experimental flags ...c23cfd5
chore(config): update log/warn/error messages to reflect recent prisma.config...c737091
feat(config): supportc12
(#27672)9e35c80
fix(cli): always return valid JSON from MCP server (#27576)- Additional commits viewable in compare view
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 <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Pull Request Statistics
1
2
+400
-15
Package Dependencies
Technical Details
ID: | 4500424 |
UUID: | 2716510637 |
Node ID: | PR_kwDOOQQe686h6qmt |
Host: | GitHub |
Repository: | CodeForgeX2012/web-scraper-toolkit |
Mergeable: | Yes |
Merge State: | Unstable |