Prisma: 2.23.0 Release

Release date:
May 19, 2021
Previous version:
2.22.1 (released May 6, 2021)
Magnitude:
647 Diff Delta
Contributors:
5 total committers
Data confidence:
Commits:

62 Commits in this Release

Ordered by the degree to which they evolved the repo in this version.

Authored May 17, 2021
Authored May 10, 2021
Authored May 12, 2021
Authored May 6, 2021
Authored May 10, 2021
Authored May 17, 2021

Top Contributors in 2.23.0

Jolg42
williamluke4
pantharshit00
janpio
renovate-bot

Directory Browser for 2.23.0

We haven't yet finished calculating and confirming the files and directories changed in this release. Please check back soon.

Release Notes Published

Today, we are excited to share theย 2.23.0ย stable releaseย ๐ŸŽ‰

๐ŸŒŸย Help us spread the word about Prisma by starring the repoย orย tweetingย about the release. ๐ŸŒŸ

Major improvements & new features

JSON Filtering is now in Preview

Starting today, you can now filter rows by data inside a Json type. JSON filtering support is available in PostgreSQL and MySQL. You can try it today by adding the filterJson preview flag to your generator block. This has been one of our most popular feature requests, so we're very excited to be getting it into your hands!

To get an idea of how JSON filtering works, let's see how you might query application logs stored in your database. Given the following Prisma schema:

generator client {
  provider        = "prisma-client-js"
  previewFeatures = ["filterJson"]
}

model Log {
  id      Int    @id @default(autoincrement())
  level   Level
  message String
  meta    Json
}

enum Level {
  INFO
  WARN
  ERROR
}

And the following records in your PostgreSQL database:

| id | level | message | meta | | --- | ----- | ---------------------------------- | ------------------------------------------------------------ | | 2 | INFO | application listening on port 3000 | {"host": "bob"} | | 3 | INFO | upgrading account | {"host": "alice", "request_id": 10} | | 4 | INFO | charging customer | {"host": "alice", "amount": 20, "request_id": 10} | | 5 | ERROR | credit card expired | {"host": "alice", "amount": 20, "request_id": 10} | | 6 | INFO | signing up | {"host": "bob", "request_id": 1} | | 7 | INFO | application listening on port 3000 | {"host": "alice"} | | 8 | INFO | signed up | {"host": "bob", "email": "[email protected]", "request_id": 1} |

We can now filter logs by the data inside the meta field. Let's query by the request_id inside the meta field to track the journey that led up to the error.

We can write the following query:

const logs = await prisma.log.findMany({
  where: {
    meta: {
      // path looks for the request_id key inside meta
      path: ["request_id"],
      // and we select rows whose request_id is 10
      equals: 10,
    },
  },
  orderBy: {
    id: "asc",
  },
});

Giving us the entire journey of this person's request:

[
  {
    id: 3,
    level: 'INFO',
    message: 'upgrading account',
    meta: { host: 'alice', request_id: 10 }
  },
  {
    id: 4,
    level: 'INFO',
    message: 'charging customer',
    meta: { host: 'alice', amount: 20, request_id: 10 }
  },
  {
    id: 5,
    level: 'ERROR',
    message: 'credit card expired',
    meta: { host: 'alice', amount: 20, request_id: 10 }
  }
]

Please note that the path syntax varies depending on the database. We pass the path query directly to the database, so there will be syntactical differences.

For example, querying by key in Postgres is request_id, while in MySQL it would be $.request_id. Please consult your database's documentation to learn more.

If you run into any questions or have any feedback, we're available in this issue.

๐Ÿ“š Documentation: Working with Json fields

Improvement for prisma db seed

In previous versions, a seed file could only be executed as a script. prisma db seed was simply executing the script by either calling node ./prisma/seed.js for JavaScript or ts-node ./prisma/seed.ts for TypeScript.

Now, you can directly export a function that Prisma executes on your behalf. Here's the rules that describe the new behavior: Prisma checks if the seed file has ...

  • ... an exported function named seed and executes it
  • ... an exported function (via a default export) and executes it

If there's no function exported as seed or via a default export, the behaviour of prisma db seed is exactly the same as before, meaning it will simply be executed as a script file.

Breaking changes

Options in groupBy queries are now prefixed with an underscore

The options in groupBy are now prefixed with an underscore, for example:

// API
const result = await prisma.user.groupBy({
  by: ['name'],
-   count: true,
+   _count: true,
})

Here's an overview of the exact changes of each option:

| Before 2.23.0 | 2.23.0 and later | | --------------- | ------------------ | | count | _count | | max | _max | | min | _min | | avg | _avg | | sum | _sum |

Note that this also changes the names of the fields in the objects that are returned by Prisma Client. For example, in the above case you now access the returned count value like so:

- console.log(result.count)
+ console.log(result._count)

We made this change to avoid clashes with user-defined fields. You can learn more about the problem in these issues.

We're sorry for the inconvenience! If you have any questions or need any help, please reach out in this discussion.

Deprecations

Deprecating options in aggregate queries

With the changes to groupBy discussed above and recent features like orderBy an aggregate, we took this opportunity to unify min, max, avg, sum and count keywords across Prisma Client queries.

  const result = await prisma.user.aggregate({
-   avg: {
+   _avg: {
      age: true,
    },
  })

- result.avg
+ result._avg

Similar to groupBy, this is the case for all of our aggregations:

| Before 2.23.0 | 2.23.0 and later | | --------------- | ------------------ | | count | _count | | max | _max | | min | _min | | avg | _avg | | sum | _sum |

This is not a breaking change. The aggregate queries you wrote prior to 2.23.0 will continue to work as expected. We ask that you make adjustments when you can to future-proof your application.

If you have any questions or need any help, please reach out in this discussion.

Fixes and improvements

Prisma Migrate

Prisma Client

Prisma Studio

Prisma Engines

Credits

Huge thanks to @Sytten, @schiller-manuel, @mongolyy, @paularah, @Iamshankhadeep, @meeq for helping!

๐Ÿ“บ Join us for another "What's new in Prisma" livestream

Learn about the latest release and other news from the Prisma community by joining us for another "What's new in Prisma" livestream.

The stream takes place on Youtube on Thursday, May 20 at 5pm Berlin | 8am San Francisco.

๐ŸŒŽ Prisma Day is coming

Save the date for Prisma Day 2021 and join us for two days of talks and workshops by the most exciting members of the Prisma community.

We look forward to seeing you there!