Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions src/routes/changelog/(entries)/2026-02-06.markdoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
layout: changelog
title: "Relationship queries and up to 18x faster relationship performance"
date: 2026-02-06
cover: /images/blog/announcing-relationship-queries/cover.png
---

Appwrite Databases now supports filter queries directly on relationship columns using dot notation. Query across related data with operators like `equal`, `notEqual`, `greaterThan`, `lessThan`, `between`, and more, without needing to fetch and filter application-side.

Additionally, all relationship operations are now 12-18x faster across the board, with no configuration changes needed.

Now live on Appwrite Cloud.

{% arrow_link href="/blog/post/announcing-relationship-queries" %}
Read the announcement to learn more
{% /arrow_link %}
16 changes: 16 additions & 0 deletions src/routes/changelog/(entries)/2026-02-09.markdoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
layout: changelog
title: "Generate a type-safe SDK from your schema with the Appwrite CLI"
date: 2026-02-09
cover: /images/blog/appwrite-generate/cover.png
---

The Appwrite CLI now includes a `generate` command that creates a type-safe, project-aware SDK directly from your database schema. The generated SDK includes typed helpers with autocomplete for querying and mutating rows, eliminating boilerplate and turning schema-related runtime bugs into type errors.

Run `appwrite generate` in your project directory to get started.

Now live on Appwrite Cloud.

{% arrow_link href="/blog/post/appwrite-generate" %}
Read the announcement to learn more
{% /arrow_link %}
16 changes: 16 additions & 0 deletions src/routes/changelog/(entries)/2026-02-12.markdoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
layout: changelog
title: "New string column types for Appwrite Databases"
date: 2026-02-12
cover: /images/blog/new-string-types/cover.png
---

Appwrite Databases now supports four explicit string column types - `varchar`, `text`, `mediumtext`, and `longtext` - giving you transparent control over storage behavior and indexing.

Each type has defined limits and indexing strategies suited to different use cases, from short identifiers to large content. The legacy `string` type remains supported for backward compatibility.

Now live on Appwrite Cloud.

{% arrow_link href="/blog/post/new-string-types" %}
Read the announcement to learn more
{% /arrow_link %}
15 changes: 15 additions & 0 deletions src/routes/changelog/(entries)/2026-02-17.markdoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
layout: changelog
title: "Advanced filtering across the Console"
date: 2026-02-17
---

Debugging and monitoring just got easier. The Appwrite Console now supports advanced filtering for function executions, site logs, and deployments.

Filter by status, trigger type, HTTP method, response status code, duration, request path, or time range, and combine multiple filters to quickly find exactly what you need.

For example, surface all failed function executions from the last hour, or find slow site requests exceeding 5 seconds.

Now live on Appwrite Cloud.