build(deps-dev): Bump prisma from 5.22.0 to 6.13.0
Type: Pull Request
State: Open
Association: Contributor
Comments: 2
(11 months ago)
(11 months ago)
dependencies javascript
Bumps prisma from 5.22.0 to 6.13.0.
Release notes
Sourced from prisma's releases.
6.13.0
Today, we are excited to share the
6.13.0stable 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.tsfile 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
seedcommand 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
dbdirectory: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.seedcommand inpackage.json.We’re excited to move the
prisma.config.tsfile into General Availability. If you used it before in your projects, you can now dropearlyAccessfrom its options:import { defineConfig } from "prisma/config";export default defineConfig({
- earlyAccess: true,
});
... (truncated)
Commits
ddc1046chore(cli): Moved MCP.ts to mcp directory, added mcp/README.md, and r… (#27631)cb67f68fix: fix flacky cli test due to time formatting (#27762)c7f5a71chore(deps): update engines to 6.13.0-33.4c9c25c84cf1a4c0744a0b15acab20e1c91c...2dcebb3feat(config): add migrations.seed support (#27724)86b31c2fix(config): e2e tests (#27725)4ba02d2feat(config): display warning whenpackage.json#prismais detected when loa...ecd6c1afeat(config): remove earlyAccess: true in favor of scoped experimental flags ...c23cfd5chore(config): update log/warn/error messages to reflect recent prisma.config...c737091feat(config): supportc12(#27672)9e35c80fix(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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill 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
0
0
+0
-0
Package Dependencies
Technical Details
| ID: | 4299714 |
| UUID: | 3273736816 |
| Node ID: | PR_kwDOKKyu2M6hLwKE |
| Host: | GitHub |
| Repository: | AtCoder-NoviSteps/AtCoderNoviSteps |