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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump @prisma/client from 3.13.0 to 3.14.0 #118

Merged
merged 2 commits into from
May 11, 2022

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 11, 2022

Bumps @prisma/client from 3.13.0 to 3.14.0.

Release notes

Sourced from @鈥媝risma/client's releases.

3.14.0

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

Major improvements

CockroachDB connector is now Generally Available!

We are proud to announce the CockroachDB connector is now stable and Generally Available. The connector was built in joined efforts with the team at Cockroach Labs and comes with full Prisma Client and Prisma Migrate support.

If you're upgrading from Prisma version 3.9.0+ or the PostgreSQL connector, you can now run npx prisma db pull and review the changes to your schema. To learn more about CockroachDB-specific native types we support, refer to our docs.

To learn more about the connector and how it differs from PostgreSQL, head to our documentation.

PostgreSQL GIN, GiST, SP-GiST, and BRIN indexes support (Preview)

We introduced the extendedIndexes Preview feature in version 3.5.0, and we have been adding new configuration options for indexes. We've expanded index type support with the GIN, GiST, SP-GiST, and BRIN indexes in this release.

To make use of an index type, you can update your Prisma schema by providing the type argument to the @@index attribute:

datasource db {
  provider = "postgresql"
  url      = env("DATABASE_URL")
}
generator client {
provider        = "prisma-client-js"
previewFeatures = ["extendedIndexes"]
}
model Post {
id      Int     @鈥媔d
title   String
content String?
tags    Json?
@@鈥媔ndex([tags], type: Gin)
}

The following SQL will be generated in your migration when you run prisma migrate dev:

CREATE TABLE "Post" (
    "id" INTEGER NOT NULL,
    "title" TEXT NOT NULL,
    "content" TEXT,
    "tags" JSONB,
    CONSTRAINT "Post_pkey" PRIMARY KEY ("id")
);
CREATE INDEX "Post_tags_idx" ON "Post" USING GIN ("tags");
</tr></table>

... (truncated)

Commits
  • c896178 chore(deps): update engines to 3.14.0-36.2b0c12756921c891fec4f68d9444e18c7d5d...
  • 7c32ecc chore(deps): update engines to 3.14.0-35.b139d939b80290fb7fb7a0455a577fcf02fa...
  • 9bc80fb chore(deps): update engines to 3.14.0-34.5cf26752c9aac4cf41ddca31b999a4a4906f...
  • 2c8a11d fix(client): json stringify overflow (#12916)
  • 8b663d2 chore(deps): update engines to 3.14.0-33.656da0566481bafc47a8a1f135ab368779db...
  • f67fe45 chore(deps): update jest
  • 4ae6ae9 chore(deps): update engines to 3.14.0-32.13d12f1fc9655c2d6bbd8f772677f0dc1e66...
  • c3a1de5 fix(client): Correctly serialize Decimal.js in an input (#13215)
  • 7cfb0e1 fix(client): use correct $-names in error messages (#13190)
  • bd5784a test(client): Make passing custom arguments to functional tests easier (#13226)
  • 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 3.13.0 to 3.14.0.
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/3.14.0/packages/client)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label May 11, 2022
@sabinadams sabinadams merged commit 48d7238 into master May 11, 2022
@sabinadams sabinadams deleted the dependabot/npm_and_yarn/prisma/client-3.14.0 branch May 11, 2022 04:04
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.

None yet

1 participant