You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(site): link launch posts and add Studio Migrations view screenshot to 2026-07-17 entry
Adds the Studio Migrations view launch post and docs links plus the
timeline screenshot to the Studio highlight, and the two new Postgres
posts (pgvector, SKIP LOCKED) to guides.
Linear: DR-7834
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: apps/site/content/changelog/2026-07-17.mdx
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,11 @@ Read the [branching docs](https://www.prisma.io/docs/compute/branching) for how
47
47
48
48
### New · Prisma Studio shows Prisma Next migration history as visual diffs
49
49
50
-
Inspecting an applied Prisma Next migration meant reading its ledger rows by hand. Prisma Studio now shows a Migrations view whenever the connected database carries a `prisma_contract` ledger: a newest-first timeline of every applied migration with its name, apply time, operation count, and destructive-change marker, and a visual diff of what each migration did to models, fields, enums, and indexes. ([prisma/studio#1533](https://github.com/prisma/studio/pull/1533))
50
+
Inspecting an applied Prisma Next migration meant reading its ledger rows by hand. Prisma Studio now shows a Migrations view whenever the connected database carries a `prisma_contract` ledger: a newest-first timeline of every applied migration with its name, apply time, operation count, and destructive-change marker, plus a visual diff of what each migration did to models, fields, enums, and indexes, the SQL that ran, and a schema diff. Prisma Studio reads the history from the database itself, so it works for any Prisma Next PostgreSQL database you can connect to.
51
+
52
+

53
+
54
+
Read the [launch post](https://www.prisma.io/blog/prisma-studio-migrations-view) for a tour of the timeline, SQL, and schema panels, and the [Studio with Prisma Next docs](https://www.prisma.io/docs/studio/prisma-next) for setup. Shipped in [prisma/studio#1533](https://github.com/prisma/studio/pull/1533).
51
55
52
56
## Prisma Next
53
57
@@ -129,6 +133,8 @@ Prisma Studio 0.33.0 is now bundled in the Prisma CLI.
129
133
-[Your AI Agent Needs a Database. Give It One in Five Seconds](https://www.prisma.io/blog/give-your-agent-a-database): how coding agents can provision a temporary Prisma Postgres database with `npx create-db`, no sign-up, with `--json` output agents can parse.
130
134
-[Serverless Postgres: the definitive guide](https://www.prisma.io/blog/serverless-postgres): a category guide comparing serverless PostgreSQL providers and their pricing models, with an interactive decision tree and a worked cost-crossover example.
131
135
-[TypeScript 7 native compiler: faster type checking](https://www.prisma.io/blog/typescript-7-native-compiler-faster-type-checking): migrating a large TypeScript monorepo to the native Go compiler cut whole-repo type checking to roughly a third of the time.
136
+
-[You Don't Need a Vector Database, Postgres Already Has pgvector](https://www.prisma.io/blog/you-dont-need-a-vector-database-postgres-already-has-pgvector): builds working semantic search on a temporary Prisma Postgres database with `pgvector`, with type-safe queries through Prisma Next.
137
+
-[You Don't Need a Job Queue, Postgres Already Has SKIP LOCKED](https://www.prisma.io/blog/you-dont-need-a-job-queue-postgres-already-has-skip-locked): builds a reliable background job queue with retries on Prisma Postgres using `FOR UPDATE SKIP LOCKED`, no separate broker required.
0 commit comments