Skip to content

Conversation

@dependabot
Copy link

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

Bumps @prisma/client from 2.30.3 to 3.8.1.

Release notes

Sourced from @​prisma/client'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...
  • 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...
  • 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.1.
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/3.8.1/packages/client)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 17, 2022
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Feb 2, 2022

Superseded by #11.

@dependabot dependabot bot closed this Feb 2, 2022
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/prisma/client-3.8.1 branch February 2, 2022 12:40
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.

1 participant