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

⬆️ Bump @prisma/client from 2.30.3 to 3.8.0 #41

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 12, 2022

Bumps @prisma/client from 2.30.3 to 3.8.0.

Release notes

Sourced from @​prisma/client's releases.

3.8.0

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

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

Major improvements and new features

Full-text search support for MySQL is now in Preview 🚀

We're back from the holidays with a special treat for you.

Prisma now supports full-text search in MySQL. You can enable full-text support by adding the fullTextIndex and fullTextSearch Preview flags in your Prisma schema and defining @@fulltext() indexes on fields you'd like to use full-text search on.

generator client {
  provider        = "prisma-client-js"
  previewFeatures = ["fullTextIndex", "fullTextSearch"]
}
datasource db {
provider = "mysql"
url      = env("DATABASE_URL")
}
model Post {
id     Int    @​id @​default(autoincrement())
title  String @​unique
@@​fulltext([title])
}

Run prisma db push or prisma migrate dev to update your database schema. Prisma Client will also be re-generated, enabling you to use full-text search in your application.

// search for titles that contain cat, but not fox
await prisma.post.findMany({
  where: {
    title: {
      search: "+cat -fox",
    },
  },
})

Learn more in our documentation.

dataProxy and interactiveTransactions Preview Features are now mutually exclusive

Before Prisma 3.8.0, Prisma $transaction queries would fail whenever the Data Proxy and Interactive Transactions Preview features were used together. The interactiveTransactions and dataProxy Preview flags cannot be used together in this release. Generating the Prisma Client when both Preview features are enabled will throw an error.

... (truncated)

Commits
  • e423f38 chore(deps): update engines to 3.8.0-43.34df67547cf5598f5a6cd3eb45f14ee70c3fb...
  • 54d642b chore(deps): update engines to 3.8.0-42.154f494ada894d268ec4feb51b8aacc4d3c87...
  • f295916 chore(deps): update dependency @​types/mssql to v7 (#11051)
  • 7aba6a3 refactor: jestSnapshotSerializer / jestContext (#10984)
  • c84b719 chore(deps): update engines to 3.8.0-41.8f1d9bccda3c881608903cfbefae0d55e2b68...
  • 2af6f7b chore(deps): update engines to 3.8.0-40.86293e7666d029e71a76a359a476deaa169c1...
  • 747f4c6 style: Fix typo used in db field (#11031)
  • 465c93d docs: fix typos in docs and comments (#11030)
  • a50d77b chore(deps): update engines to 3.8.0-39.c3eecc84ac8d11972b9167175f8c4038487ba...
  • 9ba2ddb chore(deps): update engines to 3.8.0-38.b3ff46a994fc945624bc0f91e23ef57f96b66...
  • 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 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)

Bumps [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) from 2.30.3 to 3.8.0.
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/3.8.0/packages/client)

---
updated-dependencies:
- dependency-name: "@prisma/client"
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 12, 2022
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 14, 2022

Superseded by #45.

@dependabot dependabot bot closed this Jan 14, 2022
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/prisma/client-3.8.0 branch January 14, 2022 14:49
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants