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.16.0#1722

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

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

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 8, 2021

Bumps @prisma/client from 2.14.0 to 2.16.0.

Release notes

Sourced from @prisma/client's releases.

2.16.0

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

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

Major improvements

The Prisma CLI moves from the @prisma/cli to the prisma npm package

Going forward, you can install the Prisma CLI via the prisma npm package:

npm install prisma --save-dev

or

yarn add prisma --dev

The reason for this is that a number of users were experiencing issues when running the npx prisma command. Without a local installation of the @prisma/cli package, this would invoke the Prisma 1 CLI leading to an error message. From now on, npx prisma is always going to work.

We will also deprecate the @prisma/cli package. Please do a find and replace across your codebase to transition over from @prisma/cli to prisma. To make this transition easier, we'll keep publishing updates to both packages for another month and plan to stop updating the @prisma/cli package with release 2.18.0.

There are no changes to the @prisma/client npm package name.

Efficient bulk creates with createMany

Insert data a whole lot faster with createMany. Here's an example:

const result = await prisma.user.createMany({
  data: [
    { email: "alice@prisma.io" },
    { email: "mark@prisma.io" },
    { email: "jackie@prisma.io" },
    { email: "bob@prisma.io" },
  ],
});
console.log(Created ${result.count} users!);

This feature is in preview right now. Enable it with the createMany preview flag:

generator client {
  provider        = "prisma-client-js"
  previewFeatures = ["createMany"]
</tr></table> 

... (truncated)

Commits
  • 92368ce chore: fix build script [skip ci]
  • 9e84e47 fix(deps): update engines to v2.16.0-44.854c8ba7f0dce66f115af36af24e66989a8c02a1
  • 2c23662 fix(deps): update engines to v2.16.0-43.a973e24a4e5194f8fe3301bfa7ff982b24f97...
  • 3d55ec9 chore(deps): update studio to v0.346.0 (#5414)
  • d18ceb4 fix(deps): update engines to v2.16.0-42.abf73b00c32ac832220839da2b8ec439b02e2519
  • 36adb6c fix(deps): update engines to v2.16.0-41.d479879fdfa8572ecf449d91f255b99df3197...
  • a2638c5 fix(deps): update engines to v2.16.0-40.862b9eb4be65fdb5bd306443588d42f21d6ff...
  • 70c5522 test: add @ignore and @@ignore test (#5397)
  • 14a0951 test(client): basic orderBy relation (#5398)
  • f29a0d6 fix(deps): update engines to v2.16.0-39.814043c397de250569743363ffe6b901ef371...
  • 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) from 2.14.0 to 2.16.0.
- [Release notes](https://github.com/prisma/prisma/releases)
- [Changelog](https://github.com/prisma/prisma/blob/master/docs/releases.md)
- [Commits](prisma/prisma@2.14.0...2.16.0)

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 Feb 8, 2021
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 8, 2021

Superseded by #1725.

@dependabot dependabot bot closed this Feb 8, 2021
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/prisma/client-2.16.0 branch February 8, 2021 12:08
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