Better AI Agents support through .md format, New `high_performance_sql_filtering` config flag,
Dec 11, 2025
NEW
- added a new flag to
app/config.yml-high_performance_sql_filtering. If enabled, filtering on properties will use more efficient SQL queries behind the scenes. Default is false to maintain backward compatibility, but enabling it can lead to significant performance improvements for applications that heavily utilize property filtering. The optimization and backwards incompatibility is caused by removing extra casting to text, which in many scenarios is not necessary and prevents a default index on the column from being used. - added support for
.mdformat - if a Page usesmarkdownconverter, the content can now be accessible through /:slug.md endpoint instead of ahtmlone. Themdis the preferred format for AI agents that consume content from Pages, as it is easier to parse and process compared to HTML.
IMPROVED
- Added
syntaxfield to platformOS Liquid Tags that will be used by LSP servers to provide better code completion
FIXED
- Enforce uniqueness validation for Page
slugattribute in admin_page_* GraphQL mutations.