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 from 2.30.3 to 3.8.1 #46

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps prisma from 2.30.3 to 3.8.1.

Release notes

Sourced from prisma's releases.

3.8.1

Today, we are issuing the 3.8.1 patch release.

Fixes

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",
    },
  },
})

... (truncated)

Commits
  • 470204b chore(build): depcheck on build
  • e423f38 chore(deps): update engines to 3.8.0-43.34df67547cf5598f5a6cd3eb45f14ee70c3fb...
  • 54d642b chore(deps): update engines to 3.8.0-42.154f494ada894d268ec4feb51b8aacc4d3c87...
  • 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...
  • 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...
  • 3a62ea2 chore(deps): update engines to 3.8.0-34.f0098a4f9051ae1680e431ced40ae123aca34...
  • 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)

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 14, 2022
Bumps [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) from 2.30.3 to 3.8.1.
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/3.8.1/packages/cli)

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prisma-3.8.1 branch from c7f0bc2 to 54d9b25 Compare January 30, 2022 13:28
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