Sanity logosanity.ioAll Systems Operational© Sanity 2026
Change Site Theme
Sanity logo

Documentation

    • Overview
    • Platform introduction
    • Next.js quickstart
    • Nuxt.js quickstart
    • Astro quickstart
    • React Router quickstart
    • Studio quickstart
    • Build with AI
    • Content Lake
    • Functions
    • APIs and SDKs
    • Agent Actions
    • Visual Editing
    • Blueprints
    • Platform management
    • Dashboard
    • Studio
    • Canvas
    • Media Library
    • App SDK
    • Content Agent
    • HTTP API
    • CLI
    • Libraries
    • Specifications
    • Changelog
    • User guides
    • Developer guides
    • Courses and certifications
    • Join the community
    • Templates

Changelog

Track new features, improvements, and fixes across all Sanity products.

Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...

On this page

Back to Changelog
  1. Changelog
  2. Sanity Studio

Media Library experience, customizable all fields group and version UI dialog improvements

Published: August 5, 2025

v4.3.0
Sanity Studio

Media library integration updates

Upgrades the Media Library asset selection dialog to use the full-app experience and enables browsing by collections and upload sessions, as well as management of assets such as editing aspects and collections directly in the dialog.

Customizable "All fields" group

Developers can now customize, and even hide, the "All fields" group when using field groups. Use the new ALL_FIELDS_GROUP export, and override the existing properties as you would with your own groups.

import {ALL_FIELDS_GROUP, defineField, defineType} from 'sanity'

export default defineType({
  name: 'mySchemaType',
  type: 'document',
  groups: [
    {
      name: 'details',
      title: 'Details',
    },
    {
      ...ALL_FIELDS_GROUP,
      hidden: true,
    },
  ],
  ...
})

Sanity version dialog improvements

Adds various improvements to the Studio UI when a new version is available.

Other features

  • @sanity/ui@3.x is marked as supported
  • Excludes current user from list of present Studio users

Install or upgrade Sanity Studio

To initiate a new Sanity Studio project or upgrade an existing one, please refer to our comprehensive guide on Installing and Upgrading Sanity Studio.

If you are updating from a version earlier than 3.37.0, you should also check out this article to ensure your dependencies are up to date.

Related documentation

  • Field Groups

On this page

  • Media library integration updates
  • Customizable "All fields" group
  • Sanity version dialog improvements
  • Other features
  • Install or upgrade Sanity Studio
Back to Changelog
import {ALL_FIELDS_GROUP, defineField, defineType} from 'sanity'

export default defineType({
  name: 'mySchemaType',
  type: 'document',
  groups: [
    {
      name: 'details',
      title: 'Details',
    },
    {
      ...ALL_FIELDS_GROUP,
      hidden: true,
    },
  ],
  ...
})

Related documentation

  • Field Groups