Skip to content
This repository was archived by the owner on Apr 19, 2023. It is now read-only.

⬆️ Bump @prisma/client from 2.14.0 to 2.30.0#1830

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/prisma/client-2.30.0
Closed

⬆️ Bump @prisma/client from 2.14.0 to 2.30.0#1830
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/prisma/client-2.30.0

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 24, 2021

Bumps @prisma/client from 2.14.0 to 2.30.0.

Release notes

Sourced from @​prisma/client's releases.

2.30.0

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

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

New features & improvements

Full-Text Search for PostgreSQL is now in Preview 🚀

We're excited to announce that Prisma Client now has preview support for Full-Text Search on PostgreSQL.

You can give this a whirl in 2.30.0 by enabling the fullTextSearch preview flag:

datasource db {
  provider = "postgresql"
  url      = env("DATABASE_URL")
}
generator client {
provider        = "prisma-client-js"
previewFeatures = ["fullTextSearch"]
}
model Post {
id     Int    @​id @​default(autoincrement())
title  String @​unique
body   String
status Status
}
enum Status {
Draft
Published
}

After you regenerate your client, you'll see a new search field on your String fields that you can query on. Here are a few examples:

// returns all posts that contain the words cat *or* dog.
const result = await prisma.post.findMany({
  where: {
    body: {
      search: 'cat | dog',
    },
  },
})
</tr></table>

... (truncated)

Commits
  • 120f04c feat(fts): engine integration (#8849)
  • c0c551f Revert "chore: pnpm bump-engines 2.30.0-28.60b19f4a1de4fe95741da371b4c44a92f4...
  • 62165cd chore: pnpm bump-engines 2.30.0-28.60b19f4a1de4fe95741da371b4c44a92f4d1adcb
  • 3db4b6c test: engineType in getConfig response (#8881)
  • 48aa094 fix: Move GraphQL query lower in GH issue template (#8820)
  • ecfbabb chore(deps): update engines to 2.30.0-22.6ee261c643b2c461a20371f48ffa5090ed57...
  • a01f129 chore(deps): update engines to 2.30.0-21.222465dda7cc7803b17526d3971e77de27fe...
  • 402825a chore(deps): update engines to 2.30.0-20.d7a8e3ff9a51eba24cbafcb8ce0c3d1daf74...
  • f0307dd chore(deps): update engines to 2.30.0-19.b3a8da145d2339d1d2f88812187e51321b71...
  • 6fd75dc chore(deps): update engines to 2.30.0-18.b404b6c51ff6f8ad999e94e470006af50e6f...
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by prismabot, a new releaser for @​prisma/client since your current version.


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) from 2.14.0 to 2.30.0.
- [Release notes](https://github.com/prisma/prisma/releases)
- [Changelog](https://github.com/prisma/prisma/blob/main/docs/releases.md)
- [Commits](prisma/prisma@2.14.0...2.30.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 24, 2021
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 30, 2021

Superseded by #1833.

@dependabot dependabot bot closed this Aug 30, 2021
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/prisma/client-2.30.0 branch August 30, 2021 21:15
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

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.

0 participants