v8.0.0-rc.11
This release moves the toolchain onto @prisma/cli-engine@0.4.0, which adds a Markdown output format to every CLI command. Nothing else changed since rc.10.
The upgrade recipes for this hop: the app recipe and the extension recipe.
Breaking changes
- The engine peer moves to
@prisma/cli-engine@0.4.0—@prisma/orm-toolchaindeclares the unified CLI's engine as an exact peer, and this release peers 0.4.0 (up from 0.3.0), so a project that pins the engine itself must change its pin. Under a host CLI running on that engine, every command supports--format markdown, which prints the command's output as Markdown; the engine'sFormattype widens from"human" | "json"to"human" | "json" | "markdown". No other public API changed. Projects assembled by theprismaCLI resolve the engine automatically; a project that pins@prisma/cli-engineitself must move the pin to0.4.0. (prisma/prisma-cli#260)