Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build(deps-dev): Bump prisma from 6.4.1 to 6.5.0 #272

Merged
merged 1 commit into from
Mar 18, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 17, 2025

Bumps prisma from 6.4.1 to 6.5.0.

Release notes

Sourced from prisma's releases.

6.5.0

Today, we are excited to share the 6.5.0 stable release 🎉

🌟 Help us spread the word about Prisma by starring the repo ☝️ or tweeting about the release. 🌟

Highlights

Databases can only be reset manually and explicitly

In previous versions, if Prisma ORM determined that a migrate command could not be applied cleanly to the underlying database, you would get a message like this one:

? We need to reset the "public" schema at "db.url.com:5432"
Do you want to continue? All data will be lost. (y/N)

While "no" was the default, we've determined that having this prompt in the first place was a mistake. In this version we're removing the prompt entirely and instead exiting with an appropriate error message.

To get the previous behavior, you will need to run prisma migrate reset directly.

Support for prisma.config.ts in Prisma Studio

We've expanded support for our prisma.config.ts file to include Prisma Studio!

To use the new config file, including the ability to connect to driver adapter enabled databases with Prisma Studio, add a studio block to your prisma.config.ts file:

import path from 'node:path'
import type { PrismaConfig } from 'prisma'
import { PrismaLibSQL } from '@prisma/adapter-libsql'
import { createClient } from '@libsql/client'
export default {
earlyAccess: true,
schema: {
kind: 'single',
filePath: './prisma/schema.prisma',
},
studio: {
adapter: async (env: unknown) => {
const connectionString = `file:./dev.db'
const libsql = createClient({
url: connectionString,
})
return new PrismaLibSQL(libsql)
},
},
} satisfies PrismaConfig

... (truncated)

Commits
  • 5e5a2b8 chore(deps-dev): bump rimraf from 3.0.2 to 6.0.1 (#26522)
  • 4bb2040 chore(deps-dev): bump @​inquirer/prompts from 7.3.2 to 7.3.3 (#26563)
  • 13d2709 fix: export index.js for compatibility (#26536)
  • e3fd10d feat(cli): define prisma.config.ts without requiring @prisma/config (#26483)
  • ddd5f7b fix(cli): init url showing unnecessary step (#26511)
  • 9a4dba7 chore(deps-dev): bump @​inquirer/prompts from 5.0.5 to 7.3.2 (#26479)
  • f0a2f8f chore(depsDev): replace unmaintained eslint plugins (#25058)
  • b737cce chore(deps-dev): bump @​swc/core from 1.2.204 to 1.11.5 (#26471)
  • f1ef568 chore(deps): bump fs-extra and @​types/fs-extra (#26457)
  • 87e8507 feat(studio): ORM-578 enable use of driver adapters in prisma studio (#26329)
  • Additional commits viewable in compare view

Dependabot compatibility score

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)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 17, 2025
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prisma-6.5.0 branch from 4df659b to 759450d Compare March 18, 2025 16:02
Bumps [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) from 6.4.1 to 6.5.0.
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/6.5.0/packages/cli)

---
updated-dependencies:
- dependency-name: prisma
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prisma-6.5.0 branch from 759450d to b83dad8 Compare March 18, 2025 16:13
@AverageHelper AverageHelper merged commit 095de72 into main Mar 18, 2025
4 checks passed
@AverageHelper AverageHelper deleted the dependabot/npm_and_yarn/prisma-6.5.0 branch March 18, 2025 16:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant