Sanity Studio v5.13.0: Grid layout for primitive arrays, new blueprints plan preview, and improved Studio validation and media handling
This release adds grid layout support for primitive type arrays, introduces a new blueprints plan feature to preview deployments, improves array size limit handling, and fixes issues with Word paste formatting and video field loading.
Previously, primitive type arrays allowed you to set a grid layout, but didn’t display it. They now show a grid layout as expected if the option is chosen in the schema.
New blueprints plan feature: this command outputs a summarized plan generated by the Blueprints API detailing what will happen during a deploy. It uses the same server-side logic as a real Stack update.
We’ve also updated the blueprints doctor output to be better organized and more specific to help diagnose issues locally and in the Stack deployment configuration.
There’s a new icon in the document pane that lets you copy a link to the document (in studio), or copy the document’s ID.

When unknown fields include a reference, the warning will now provide additional details about the reference itself to help with debugging.

When array fields reach their maximum valid size, the Studio UI now more clearly expresses this by disabling the ability to add new items to the array. Thanks to @wotan-allfather for this contribution! We ❤️ PRs from the community.
Studio will now show an improved warning when trying to view a release that no longer exists.
The DocumentLocation type now supports optional icon and showHref properties for customizing location entries in the Presentation tool.
resolve: {
locations: {
page: defineLocations({
select: { title: 'title', slug: 'slug.current' },
resolve: (doc) => ({
locations: [
{
title: 'Email Preview',
href: `/email/${doc?.slug}`,
icon: EnvelopeIcon, // Custom icon
showHref: false, // Hide URL
},
{
title: 'Web View',
href: `/pages/${doc?.slug}`,
// Defaults: DesktopIcon, URL visible
},
],
}),
}),
},
}
Existing configurations will continue to work without changes.



Fetched April 11, 2026