Channels & Preview
Release channels
Prisma has three different release channels:
- Alpha: The
alphachannel is ideal for contributors and developers who want to try new features as early as possible. Features on thealphachannel are not fully tested and might see significant changes before they are included in astablerelease. - Beta: Features on the
betachannel are tested and unlikely to change before the final release. Thebetachannel is a great way to try new features and provide feedback before they are available in astablerelease. - Stable: We recommend that you run the
stablechannel on your production servers. Releases on thestablechannel follow a bi-weekly cadence and only include very minor changes compared to thebetachannel. This ensures that the combination of features in a release has been thoroughly tested on thebetachannel.

You can learn more about Prisma's release process in this blog post.
Preview releases
Some Prisma features are released in a Preview mode. The Preview mode is orthogonal to the release channels, meaning a feature that's released in Preview mode still goes through the "normal" release stages: alpha, beta and stable.
Preview mode means that the API of the feature is final and, but there might be significant internal improvements as long as the feature is in Preview mode.
Beta access
Prisma CLI
You can get access to the latest beta release of the Prisma CLI by appending the @beta-tag when installing it via NPM:
npm install -g prisma@beta
Prisma server (Docker)
You can find the latest beta Prisma Docker image on Docker Hub. To use the latest version of a Prisma server, you need to configure the image property in your Docker Compose file accordingly by appending -beta to the the version number, e.g.:
version: '3' services: prisma: image: prismagraphql/prisma:1.22-beta restart: always ports: - '4466:4466' environment: PRISMA_CONFIG: | managementApiSecret: __YOUR_MANAGEMENT_API_SECRET__ port: __YOUR_PRISMA_SERVER_PORT__ databases: default: connector: __YOUR_DATABASE_CONNECTOR__ migrations: __ENABLE_DB_MIGRATIONS__ host: __YOUR_DATABASE_HOST__ port: __YOUR_DATABASE_PORT__ user: __YOUR_DATABASE_USER__ password: __YOUR_DATABASE_PASSWORD__Copy
You can also pull the latest beta version directly using the Docker CLI:
docker pull prismagraphql/prisma:1.22-beta