Try It button in EndpointRequestSnippet

The <EndpointRequestSnippet> component now includes a Try It button, allowing users to access the endpoint explorer and test API endpoints directly from code snippets.

Learn more about EndpointRequestSnippet.

Frontmatter availability

Set page availability directly in frontmatter using the availability field. This displays an availability badge on the page and overrides any availability defined in the navigation (docs.yml).

1---
2title: New feature
3availability: beta
4---

Valid values are: stable, generally-available, in-development, pre-release, deprecated, or beta.

Learn more about frontmatter availability.

Folder section overviews with index files

When using folder navigation, add an index.mdx or index.md file to any folder to automatically use it as the section overview. The index file is used as the overview page and excluded from the section contents. This works for both top-level folders and nested subdirectories.

pages
guides
index.mdx# Becomes the section overview page
quickstart.mdx
advanced
index.mdx# Becomes the nested section overview
auth.mdx

Learn more about folders.