From 515955e06587ccebd9ae8a7e9f1eb8eb84686691 Mon Sep 17 00:00:00 2001 From: doc-claw-bot Date: Tue, 15 Sep 2026 04:50:05 +0000 Subject: [PATCH 1/3] cloud: add cloud release notes for release-20260915 --- tidb-cloud/releases/tidb-cloud-release-notes.md | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/tidb-cloud/releases/tidb-cloud-release-notes.md b/tidb-cloud/releases/tidb-cloud-release-notes.md index e19b83ea1d28e..aa7b32359aa34 100644 --- a/tidb-cloud/releases/tidb-cloud-release-notes.md +++ b/tidb-cloud/releases/tidb-cloud-release-notes.md @@ -12,13 +12,20 @@ This page lists the release notes of [TiDB Cloud](https://www.pingcap.com/tidb-c **General changes** -* **TiDB Cloud CLI** +- **TiDB Cloud Starter** + + - Extend the full-text search capabilities for TiDB Cloud Starter. + + Previously, a table could have only one `MULTILINGUAL` or `STANDARD` full-text index, with a single scored column and no filter pushdown. - [TiDB Cloud CLI (`ti`)](https://github.com/tidbcloud/ti-cli) is now available in public preview for managing [TiDB Cloud Starter](/tidb-cloud/select-cluster-tier.md#starter) instances and TiDB Cloud Filesystems. A TiDB Cloud Filesystem is a serverless distributed file system designed for AI agents and automation workloads. + Now you can: - You can use `ti` directly or let your scripts, CI jobs, and AI agents run it to automate TiDB Cloud workflows. With `ti`, you can create and manage TiDB Cloud Starter instances, execute SQL statements, and create and access persistent Filesystem workspaces through file commands or supported mounts. JSON output by default, JMESPath output queries, and support for `--wait` and `--dry-run` on applicable commands simplify automation. + - **Push metadata filters into full-text index scans.** In column-property mode (`col WITH (...)`), the `exact` attribute supports `=` and `IN`, while `path_hierarchy` supports path-prefix `LIKE` and `UNDER` conditions during the index scan, without accessing table rows. + - **Match prefixes and substrings with the `NGRAM` parser.** `WITH PARSER NGRAM(min_gram, max_gram, granularity, lower_case)` builds character-level n-grams, so a query such as `handle` can match `HandleRequest`, `RequestHandler`, and `handle_error`. + - **Search multiple columns with a single full-text index.** `FTS_MATCH_WORD('query', col1, col2)` searches multiple scored columns in one scan and fuses their BM25 scores at the index level, replacing separate index scans and `UNION ALL` merging. + - **Create multiple full-text indexes on the same table.** The same column can use different parsers across indexes. You can use `USE_INDEX` or `IGNORE_INDEX` to control index selection, `WITH PARSER` in `FTS_MATCH_WORD()` to select a parser, or let the optimizer choose automatically. - For more information, see [Get Started with TiDB Cloud CLI](/ai/ti/ti-quick-start.md) and [TiDB Cloud CLI (`ti`) Overview](/ai/ti/ti-overview.md). + For more information, see [Full-Text Search with SQL](/ai/guides/vector-search-full-text-search-sql.md). ## September 8, 2026 From 0344c8a2b2f0e1de2baf4ebb834d48aaf20a7a9c Mon Sep 17 00:00:00 2001 From: doc-claw-bot Date: Tue, 15 Sep 2026 05:54:35 +0000 Subject: [PATCH 2/3] cloud: keep both Sep 15 release note items --- tidb-cloud/releases/tidb-cloud-release-notes.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tidb-cloud/releases/tidb-cloud-release-notes.md b/tidb-cloud/releases/tidb-cloud-release-notes.md index aa7b32359aa34..6697aa59e3e6b 100644 --- a/tidb-cloud/releases/tidb-cloud-release-notes.md +++ b/tidb-cloud/releases/tidb-cloud-release-notes.md @@ -27,6 +27,14 @@ This page lists the release notes of [TiDB Cloud](https://www.pingcap.com/tidb-c For more information, see [Full-Text Search with SQL](/ai/guides/vector-search-full-text-search-sql.md). +* **TiDB Cloud CLI** + + [TiDB Cloud CLI (`ti`)](https://github.com/tidbcloud/ti-cli) is now available in public preview for managing [TiDB Cloud Starter](/tidb-cloud/select-cluster-tier.md#starter) instances and TiDB Cloud Filesystems. A TiDB Cloud Filesystem is a serverless distributed file system designed for AI agents and automation workloads. + + You can use `ti` directly or let your scripts, CI jobs, and AI agents run it to automate TiDB Cloud workflows. With `ti`, you can create and manage TiDB Cloud Starter instances, execute SQL statements, and create and access persistent Filesystem workspaces through file commands or supported mounts. JSON output by default, JMESPath output queries, and support for `--wait` and `--dry-run` on applicable commands simplify automation. + + For more information, see [Get Started with TiDB Cloud CLI](/ai/ti/ti-quick-start.md) and [TiDB Cloud CLI (`ti`) Overview](/ai/ti/ti-overview.md). + ## September 8, 2026 **Console changes** From fafb47ab071097d0fda92c25817d5c232d028fac Mon Sep 17 00:00:00 2001 From: qiancai Date: Tue, 15 Sep 2026 15:44:55 +0800 Subject: [PATCH 3/3] update links --- tidb-cloud/releases/tidb-cloud-release-notes.md | 4 ++-- tidb-cloud/starter/_index.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tidb-cloud/releases/tidb-cloud-release-notes.md b/tidb-cloud/releases/tidb-cloud-release-notes.md index 6697aa59e3e6b..33c3513e7a932 100644 --- a/tidb-cloud/releases/tidb-cloud-release-notes.md +++ b/tidb-cloud/releases/tidb-cloud-release-notes.md @@ -14,7 +14,7 @@ This page lists the release notes of [TiDB Cloud](https://www.pingcap.com/tidb-c - **TiDB Cloud Starter** - - Extend the full-text search capabilities for TiDB Cloud Starter. + - Extend the full-text search capabilities for [TiDB Cloud Starter](https://docs.pingcap.com/tidbcloud/select-cluster-tier/?plan=starter#starter). Previously, a table could have only one `MULTILINGUAL` or `STANDARD` full-text index, with a single scored column and no filter pushdown. @@ -29,7 +29,7 @@ This page lists the release notes of [TiDB Cloud](https://www.pingcap.com/tidb-c * **TiDB Cloud CLI** - [TiDB Cloud CLI (`ti`)](https://github.com/tidbcloud/ti-cli) is now available in public preview for managing [TiDB Cloud Starter](/tidb-cloud/select-cluster-tier.md#starter) instances and TiDB Cloud Filesystems. A TiDB Cloud Filesystem is a serverless distributed file system designed for AI agents and automation workloads. + [TiDB Cloud CLI (`ti`)](https://github.com/tidbcloud/ti-cli) is now available in public preview for managing [TiDB Cloud Starter](https://docs.pingcap.com/tidbcloud/select-cluster-tier/?plan=starter#starter) instances and TiDB Cloud Filesystems. A TiDB Cloud Filesystem is a serverless distributed file system designed for AI agents and automation workloads. You can use `ti` directly or let your scripts, CI jobs, and AI agents run it to automate TiDB Cloud workflows. With `ti`, you can create and manage TiDB Cloud Starter instances, execute SQL statements, and create and access persistent Filesystem workspaces through file commands or supported mounts. JSON output by default, JMESPath output queries, and support for `--wait` and `--dry-run` on applicable commands simplify automation. diff --git a/tidb-cloud/starter/_index.md b/tidb-cloud/starter/_index.md index f53229405ebf1..ce772b3ad8767 100644 --- a/tidb-cloud/starter/_index.md +++ b/tidb-cloud/starter/_index.md @@ -25,7 +25,7 @@ summary: TiDB Cloud is a fully-managed Database-as-a-Service (DBaaS) that brings [Try Out HTAP](https://docs.pingcap.com/tidbcloud/tidb-cloud-htap-quickstart/?plan=starter) -[Try Out TiDB Cloud CLI](https://docs.pingcap.com/tidbcloud/get-started-with-cli/?plan=starter) +[Try Out TiDB Cloud CLI](https://docs.pingcap.com/ai/ti-quick-start/)