Skip to main content
Version: 2.0 🚧

Upgrading to V2

What's New​

Polymorphic Relations​

Polymorphic relations allows you to model relations over an "abstract interface". This feature is inspired by the following Prisma issues:

See the Polymorphic Relations recipe for more information.

Using auth() in @default()​

You can now use the auth() function inside the @default() attribute. A very common use case is to automatically assign foreign key field when creating entities with relation with the current user. In ZenStack V1, you needed to explicitly assign foreign key value even though the enhanced PrismaClient already implies a current user:

schema.zmodel
model User {
id Int @default(autoincrement())
}

model Post {
id Int @default(autoincrement())
title String
owner User @relation(fields: [ownerId], references: [id])
ownerId Int
}
const db = enhance(prisma, { user });
await db.post.create({
data: {
owner: { connect: { id: user.id } },
title: 'Post1'
}
})

With this feature, you can update the schema to:

schema.zmodel
model User {
id Int @default(autoincrement())
}

model Post {
id Int @default(autoincrement())
title String
owner User @relation(fields: [ownerId], references: [id])
ownerId Int @default(auth().id) // <- assign ownerId automatically
}

and when creating a Post, you don't need to explicitly connect owner anymore.

const db = enhance(prisma, { user });
await db.post.create({ data: { title: 'Post1' } });

Fine-grained Optimistic Updates​

Previously the ZenStack-generated data query hooks (TanStack Query and SWR) support automatic optimistic updates. When a mutation executes, the hooks analyzes what queries are potentially affected and try to compute an optimistically updated piece of data, and use it to update the query cache. This feature is very useful in many cases, but it can't cover all cases. For example, if you create an entity and connect it to a related entity at the same time, the automatic optimistic logic doesn't know how to compute the relation (if it's used in a related query).

In V2, we introduce a optimisticUpdateProvider callback for the caller to decide how to compute the optimistic data for a mutation, for every query cache entry. Here's how to use it:

useCreatePost({
optimisticUpdateProvider: ({ queryModel, queryOperation, queryArgs, currentData, mutationArgs }) => {
return { kind: 'Update', data: ... /* computed result */ };
}
});

See more information [here]:

The callback is invoked for each query cache entry. You can use the return value to control if to use the optimistic data you computed, skip the update, or leave it to the automatic logic.

Permission Checker API 🚧​

Coming soon.

Edge Runtime Support 🚧​

Coming soon.

Upgrading​

NPM Packages​

V2 features will be continuously released using the "@next" npm tag. To upgrade, update your project's dependencies of zenstack and @zenstackhq/* packages to the @next tag.

npm i -D zenstack@next
npm i @zenstackhq/runtime@next
...

VSCode Extension​

The VSCode extension supporting the V2 features is also available in the VSCode marketplace as "pre-release" versions. To use it, please head to the extension manager in VSCode, find "ZenStack Language Tools", and "Switch to Pre-Release Version". You can easily switch back to the production version at any time.

VSCode switch to pre-release

JetBrains Plugin​

The JetBrains plugin for V2 features is not yet available.

Breaking Changes​

The following sections list breaking changes introduced in ZenStack V2 and guide for upgrading your project.

1. Runtime​

Unified enhance API​

In V1, there were several withXXX APIs (like withPolicy, withOmit, etc.) that help you create enhanced PrismaClient instances with specific enhancements. These APIs are now deprecated and unified to the single enhance API. You can use the kinds option to control what enhancements to apply:

const db = enhance(prisma, { user }, { kinds: ['policy', 'omit'] })

By default, all enhancements are enabled.

Changes to the enhance API​

One of the main changes in V2 is that the enhance API is now generated, by default into the node_modules/.zenstack package, together with other supporting modules. The @zenstackhq/runtime/enhance module is simply a reexport of .zenstack/enhance. This change allows us to customize the API of the enhanced PrismaClient based on the enhancements enabled.

The change also simplifies the way how the enhance API is used when you specify a custom output location (usually for checking in the generated files with the source tree). For example, if you use the "--output" CLI switch to output to "./.zenstack" folder:

npx zenstack generate --output ./.zenstack

You can import the enhance API directly from the output location and use it without any other changes:

import { enhance } from './.zenstack/enhance';

const db = enhance(...);

Several options of the enhance API are also removed because they are no more needed:

  • policy
  • modelMeta
  • zodSchemas
  • loadPath

These options were for guiding ZenStack to load the generated modules from a custom location. They are not needed anymore because the generated enhance API can always load them from relative paths.

Another major benefit of generating enhance is the user context object is now strongly typed. The CLI statically analyzes the ZModel schema to identify the fields accessed through auth() (including multi-level accesses into relation fields), and use that information to type the user object. This helps you to identify missing or incorrectly typed fields and avoid unexpected runtime behavior.

Prisma version below 5.0.0 is not supported anymore​

Supporting both Prisma V4 and V5 caused quite some complexities. We decided to require Prisma 5.0.0 and above for ZenStack V2. This also makes it possible to make ZenStack's runtime compatible with Edge environments (TBD).

2. CLI​

Removed support of CLI config file​

The "--config" switch and the "zenstack.config.json" file are removed. They weren't doing anything useful and were only kept in V1 for backward compatibility reasons.

We may introduce a new config file format in the future.

3. Server Adapter​

HTTP status code 422 is used to represent data validation errors​

In V1, when a data validation error happens (due to violation of rules represented by @email, @length, @@validate etc.), the server adapters used 403 to represent such error. This is changed in V2 to use 422 to align with the HTTP status code definition.

The deprecated useSuperJSON initialization options is removed​

The server adapters always use SuperJSON for serialization and deserialization.

4. Zod Plugin​

Changes to the optionality of [Model]Schema schema​

In V1, the generated [Model]Schema schema has all fields marked optional. This is changed in V2 to respect the optionality of fields as they are declared in ZModel.

5. SWR Plugin​

Legacy mutation functions are removed​

In V1, the SWR plugin used to generate a set of legacy mutation functions via the useMutate[Model] hook. These functions (together with the hook) are removed in V2. You should use the individual mutation hooks instead.

Old code:

import { useMutatePost } from '@lib/hooks';

const { createPost } = useMutatePost();
await createPost({ data: {...} });

New code:

import { useCreatePost } from '@lib/hooks';

const { trigger: createPost, isMutating } = useCreatePost();
await createPost({ data: {...} })

The initialData query option is removed​

Use the fallbackData option instead.

6. TanStack Query Plugin​

Default target version is now "v5".​

In V1 the default target version was TanStack Query V4.

Generated hooks got simplified parameters​

The query and mutation hooks generated in V1 had a few parameters like invalidateQueries and optimisticUpdate. These parameters are merged into the options parameter. The options parameter is used for configuring both tanstack-query and the additional behavior of ZenStack.

Old code:

useFindManyPost(
{ where: { ... } }, /* query args */
undefined, /* tanstack-query options */
false /* opt-out optimistic update*/
);

useCreatePost(
undefined /* tanstack-query options */,
false, /* whether to automatically invalidate related queries */
true /* whether to optimistically update related queries */
)

New code:

useFindManyPost({ where: { ... } }, { optimisticUpdate: false });

useCreatePost({ invalidateQueries: false, optimisticUpdate: true });