Skip to content

Commit 9d23c24

Browse files
committed
add changelogs
1 parent 41a5b0c commit 9d23c24

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
title: Durable Objects on Workers Free plan
3+
description: Durable Objects now available on Workers Free plan.
4+
products:
5+
- durable-objects
6+
- workers
7+
date: 2025-04-07T13:00:00Z
8+
---
9+
10+
Durable Objects can now be used with zero commitment on the [Workers Free plan](/workers/platform/pricing/) allowing you to build AI agents with [Agents SDK](/agents), collaboration tools, or real-time applications like chat or multiplayer games.
11+
12+
Durable Objects let you build stateful, serverless applications with millions of tiny coordination instances that run your application code alongside, in the same thread!, as your durable storage. Each Durable Object can access its own SQLite database through a [Storage API](/durable-objects/best-practices/access-durable-objects-storage/).
13+
14+
Free plan [limits](/durable-objects/platform/pricing/) apply to Durable Objects compute and storage usage. Limits allow developers to build real-world applications, with every Worker request able to call a Durable Object on the free plan.
15+
16+
For more information, checkout:
17+
- [Documentation](/durable-objects/what-are-durable-objects/)
18+
- Zero-latency SQLite storinage in every Durable Object [blog](https://blog.cloudflare.com/sqlite-in-durable-objects/)
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
title: SQLite in Durable Objects GA
3+
description: SQLite-bakced Durable Objects are generally available.
4+
products:
5+
- durable-objects
6+
- workers
7+
date: 2025-04-07T13:00:00Z
8+
---
9+
10+
SQLite in Durable Objects is now generally available (GA). Since the [beta announcement](https://blog.cloudflare.com/sqlite-in-durable-objects/) in September 2024, we've added feature parity and robustness for the SQLite storage backed compared to the key-value (KV) storage backend that Durable Objects had had before then.
11+
12+
SQLite-backed Durable Objects are recommended for all new Durable Object classes, using `new_sqlite_classes` [wrangler configuration](/durable-objects/best-practices/access-durable-objects-storage/#create-sqlite-backed-durable-object-class). Only SQLite-backed Durable Objects have access to Storage API's [SQL](/durable-objects/api/storage-api/#sql-api) and [point-in-time recovery](/durable-objects/api/storage-api/#pitr-point-in-time-recovery-api) methods, which provide flexible, relational data modeling, SQL access, and better data management.
13+
14+
KV-backend Durable Objects remain for backwards compatibility, and a migration path from key-value storage to SQL storage for existing Durable Object classes will be offered in the future.

0 commit comments

Comments
 (0)