Product Updates

DatoCMS changelog for new features and general improvements
API Clients Security

All API tokens are now fully deletable

August 27th, 2025

From now on, all API tokens — including the default non-editable tokens that are automatically created by DatoCMS — can be deleted.

Previously, default non-editable tokens (such as the read-only token) could not be removed. This change is a matter of security, giving you full control over your API tokens and allowing you to remove any unused or potentially exposed credentials.

💡 Reminder:
If you delete a default non-editable token generated automatically, it cannot be recreated. However, you can always create a new one with the same or custom permissions.

UI Improvement

Single Block fields now can be used as presentation title or image

August 27th, 2025

Many of you use shared Single Block fields to store common elements like title and image across models. Until now, these couldn’t be used as a model’s Presentation Title or Image — now you can!
You can now select a Single Block field in the Presentation tab, and DatoCMS will use the title and image set inside the chosen block as the model’s Presentation Title and Presentation Image.

How to use it

  1. Go to Edit Model → Presentation tab

  2. Select your Single Block field as Presentation Title or Presentation Image

  3. Remember to set the presentation title and image you prefer in your Single Block’s own Presentation settings.

UI Improvement New

Trees also grow on DatoCMS

July 25th, 2025

DatoCMS has long let editors organize records hierarchically. However, the feature was missing some elements to be considered as complete.

We covered the missing parts 💁‍♀️

  • From today, a new "Tabular View" for trees of records is available - aside from the "Compact View", giving a bit more consistency on how records are visible across all model types. It brings all the freedom in playing with columns you know from the regular item list to hierarchically organized records too, without losing out on the drag-and-drop fun.

  • We also removed the limitation to the number of records that can be organized in a tree: both the tabular and the compact view are now paginated, and records are incrementally shown as they are loaded.

Security API Clients Content Delivery API Content Management API

We no longer create a default full-access API token for new projects

May 5th, 2025

To promote safer and more intentional permission management, new DatoCMS projects will no longer generate a default full-access API token (i.e. one with both read and write permissions for all APIs).

Previously, new projects came with two tokens by default: a full-access token and a read-only token. From now on, only the read-only token will be created automatically. This change encourages users to explicitly define the scope of each token based on their specific needs.

🔒 Reminder:
Existing projects still have this legacy token. If you’re using it, we strongly recommend ensuring it’s used only in trusted environments.

API Clients Content Management API

Legacy batch uploads operations endpoints will be sunset on May 14th

April 14th, 2025

Starting May 14th, 2025, our legacy uploads batch operation endpoints — which have been deprecated for years — will be discontinued and will return error responses. Documentation for these endpoints can be found here:

Required action

If you're using any of these endpoints, please update your integration to use their replacements. Documentation for the current endpoints can be found here:

Impact assessment

Based on our monitoring over the last 30 days, no projects are actively using these deprecated endpoints.

UI Improvement

Fixed Headers for a more consistent UX

April 8th, 2025

We’re introducing a unified fixed header across all CMS sections, ensuring a smoother, more predictable interface.

What’s New?

We’ve standardized the header behavior so that key navigation elements stay accessible at all times—no matter where you are in the CMS.

  • Fixed headers everywhere – The header now stays in place as you scroll.

  • Consistent UI patterns – The same styling, spacing, and interaction logic apply across all sections, reducing cognitive load.

  • Quick access to actions – Important buttons (like Save, Publish) remain within reach without unnecessary scrolling.

How Does It Work?

No setup is needed—just log in, and you’ll see the updated interface immediately!

Why Does It Matter?

This update eliminates inconsistencies, making the CMS more intuitive and reducing friction in your daily tasks. If you’ve ever lost time scrolling back up to access a button or felt disoriented by shifting layouts, this change will make navigation feel effortless.

Plugins New

Introducing DatoCMS Recipes

March 26th, 2025

With the release of the recent plugin its now possible to export JSON files of your models and blocks, and easily import them into another DatoCMS project.

To make it easier to get started with new projects and build out common schema models, we've released DatoCMS Recipes in the marketplace — a curated selection of ready-to-use models and blocks that you can import into your projects.

Simply choose a recipe, click install, choose which project you'd like it in, and we'll import the corresponding model with all blocks, relations, and plugins as required.

Want to create your own recipes? Install the plugin to export models and reimport them into another DatoCMS project!

Content Delivery API

Improving the exposure of Inline Blocks in the Content Delivery API

March 24th, 2025

Based on early feedback from the recent release of inline blocks for Structured Text fields, we're introducing a small but impactful update to how our Content Delivery API handles them.

Previously, inline blocks were included within the blocks GraphQL selector. With this update, they now have a dedicated inlineBlocks selector:

Before the update:

query Before {
blogPost {
content {
value
blocks {
__typename
... on BlockModelRecord {
title
}
... on InlineBlockModelRecord {
title
}
}
}
}
}

After the update:

query After {
blogPost {
content {
value
blocks {
__typename
... on BlockModelRecord {
title
}
}
inlineBlocks {
__typename
... on InlineBlockModelRecord {
title
}
}
}
}
}

Why this change?

By separating inlineBlocks from blocks, developers gain more precise control over rich text content, making it easier to manage and render structured text accurately, especially when using TypeScript. This improvement enhances both flexibility and consistency when working with inline blocks in GraphQL queries.

We appreciate your feedback and will continue refining the experience to make content management even smoother! 🚀

New Docs, Guides and Demos

Introducing Automatic Data Export Options [Enterprise Feature]

March 5th, 2025

For Enterprise Customers

We've recently rolled out the ability for enterprise customers to schedule frequent exports of their DatoCMS data to AWS S3 buckets.

While it's important to note that this is not an automatic backup & restore function, the Project Export feature allows Enterprise customers to export all content and assets from their DatoCMS project to their own AWS S3 bucket. 

Here's some important considerations:

  • Not a Backup Solution: The export does not offer a one-click restoration process.

  • Primary Environment Only: Only the primary project environment is included in the export.

  • Automated and Scheduled: Exports occur on a predefined schedule, with a minimum frequency of once per month and a maximum of once per day.

  • AWS S3 Storage Required: Customers must configure their own S3 bucket to receive the exported data.

The exported data includes:

  • Schema Models: Fields and fieldsets.

  • Schema Blocks: Block definitions and fields.

  • Records: Current and published versions, including block records.

  • Uploads: Metadata and references for uploaded assets.

  • Project Settings: Locales, SEO settings, workflows, and installed plugins.

  • Asset Files: All uploaded files from the media area.

To look into how to use this, refer to the docs.

For All Users

That being said, there's several existing methods for all users to ensure data integrity with some recommended DIY approaches to data exports, backups, and recovery options.

These include several options including Plugins, Scripts, and Environment clones. Refer to our docs on Available Export & Backup Options for more info.

Dashboard UI Improvement

Improved Build Triggers Activity view

March 4th, 2025

Similar to our recent updates in the Webhooks Activity section, we have also enhanced the Build Triggers Activity view.

Previously, the CMS displayed only the 30 most recent build events.

We have now improved this by providing options to view events from the past weeks, and to apply filters or custom ordering, while also updating the UI to align with the overall design of the CMS.

Start using DatoCMS today
According to Gartner 89% of companies plan to compete primarily on the basis of customer experience this year. Don't get caught unprepared.
  • No credit card
  • Easy setup
Subscribe to our newsletter! 📥
One update per month. All the latest news and sneak peeks directly in your inbox.
support@datocms.com ©2025 Dato srl, all rights reserved P.IVA 06969620480