Skip to content

Commit 1a682cf

Browse files
committed
release notes
1 parent 1dbbcae commit 1a682cf

File tree

3 files changed

+30
-7
lines changed

3 files changed

+30
-7
lines changed

app/views/pages/release-notes.liquid

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ metadata:
2424
<br/>
2525
<span>Unreleased</span>
2626
</li>
27+
<li>
28+
<a href="/release-notes/11-DEC-25">Better AI Agents support through .md format, New `high_performance_sql_filtering` config flag,</a>
29+
<br/>
30+
<span>Dec 11</span>
31+
</li>
2732
<li>
2833
<a href="/release-notes/23-NOV-25">Added transaction and rollback liquid tags, activity_streams part of pos-cli clone</a>
2934
<br/>
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
converter: markdown
3+
metadata:
4+
title: Better AI Agents support through .md format, New `high_performance_sql_filtering` config flag,
5+
description: Dec 11, 2025
6+
skip_contribute_button: true
7+
last_edit: false
8+
slug: release-notes/11-DEC-25
9+
---
10+
11+
#### {{ page.metadata.description }}
12+
13+
<h4 class="release-note release-note__new">NEW</h4>
14+
15+
* 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.
16+
* added support for `.md` format - if a Page uses `markdown` converter, the content can now be accessible through /:slug.md endpoint instead of a `html` one. The `md` is the preferred format for AI agents that consume content from Pages, as it is easier to parse and process compared to HTML.
17+
18+
<h4 class="release-note release-note__improved">IMPROVED</h4>
19+
20+
* Added `syntax` field to platformOS Liquid Tags that will be used by LSP servers to provide better code completion
21+
22+
<h4 class="release-note release-note__fixed">FIXED</h4>
23+
24+
* Enforce uniqueness validation for Page `slug` attribute in admin_page_* GraphQL mutations.

app/views/pages/release-notes/unreleased.liquid

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,7 @@ metadata:
99

1010
#### {{ page.metadata.description }}
1111

12-
<h4 class="release-note release-note__new">NEW</h4>
13-
14-
* 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.
15-
* added support for `.md` format - if a Page uses `markdown` converter, the content can now be accessible through /:slug.md endpoint instead of a `html` one. The `md` is the preferred format for AI agents that consume content from Pages, as it is easier to parse and process compared to HTML.
16-
<!--
17-
* Added option to sort by distance (at the top level) when using geo queries; the sort is optional and can be used alongside other sort criteria; also, the sort can be specified in ascending or descending order.
18-
-->
12+
<!--<h4 class="release-note release-note__new">NEW</h4>-->
1913

2014
<!--<h4 class="release-note release-note__improved">IMPROVED</h4>-->
2115

0 commit comments

Comments
 (0)