@mastra/cloudflare-d1 1.1.1 → 1.2.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,39 @@
1
1
  # @mastra/cloudflare-d1
2
2
 
3
+ ## 1.2.0-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Fixed multi-thread message queries so included messages and pagination metadata are returned correctly. ([#20303](https://github.com/mastra-ai/mastra/pull/20303))
8
+
9
+ - Updated dependencies [[`a211d09`](https://github.com/mastra-ai/mastra/commit/a211d09185dc65a746534914cf38b67f21ee9bac), [`05db566`](https://github.com/mastra-ai/mastra/commit/05db566fcbdcbf33d0bffca0c72ec30129e2e3ca), [`8124754`](https://github.com/mastra-ai/mastra/commit/8124754ae89fbc69f8136d1df4a91904d0f84c4e)]:
10
+ - @mastra/core@1.54.0-alpha.2
11
+
12
+ ## 1.2.0-alpha.0
13
+
14
+ ### Minor Changes
15
+
16
+ - Added exact metadata filtering to message history queries across Memory APIs and supported storage providers. ([#19991](https://github.com/mastra-ai/mastra/pull/19991))
17
+
18
+ ```ts
19
+ const messages = await memory.recall({
20
+ threadId: 'thread-1',
21
+ filter: {
22
+ metadata: {
23
+ status: 'done',
24
+ priority: 'high',
25
+ },
26
+ },
27
+ });
28
+ ```
29
+
30
+ Multiple fields use AND semantics. Supported values are strings, finite numbers, booleans, and `null`.
31
+
32
+ ### Patch Changes
33
+
34
+ - Updated dependencies [[`0dca9d0`](https://github.com/mastra-ai/mastra/commit/0dca9d0b1356024a53b72ea6f040db528b126caa)]:
35
+ - @mastra/core@1.54.0-alpha.0
36
+
3
37
  ## 1.1.1
4
38
 
5
39
  ### Patch Changes
@@ -3,7 +3,7 @@ name: mastra-cloudflare-d1
3
3
  description: Documentation for @mastra/cloudflare-d1. Use when working with @mastra/cloudflare-d1 APIs, configuration, or implementation.
4
4
  metadata:
5
5
  package: "@mastra/cloudflare-d1"
6
- version: "1.1.1"
6
+ version: "1.2.0-alpha.1"
7
7
  ---
8
8
 
9
9
  ## When to use
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.1.1",
2
+ "version": "1.2.0-alpha.1",
3
3
  "package": "@mastra/cloudflare-d1",
4
4
  "exports": {},
5
5
  "modules": {}
@@ -6,7 +6,7 @@ The Cloudflare D1 storage implementation provides a serverless SQL database solu
6
6
 
7
7
  > **Observability Not Supported:** Cloudflare D1 storage **doesn't support the observability domain**. Traces from the `MastraStorageExporter` can't be persisted to D1, and [Studio's](https://mastra.ai/docs/studio/overview) observability features won't work with D1 as your only storage provider. To enable observability, use [composite storage](https://mastra.ai/reference/storage/composite) to route observability data to a supported provider like ClickHouse.
8
8
 
9
- > **Row Size Limit:** Cloudflare D1 enforces a **1 MiB maximum row size**. This limit can be exceeded when storing messages with base64-encoded attachments such as images. See [Handling large attachments](https://mastra.ai/docs/memory/storage) for workarounds including uploading attachments to external storage.
9
+ > **Row Size Limit:** Cloudflare D1 enforces a **1 MiB maximum row size**. This limit can be exceeded when storing messages with base64-encoded attachments such as images. See [Handling large attachments](https://mastra.ai/docs/memory/memory-processors) for workarounds including uploading attachments to external storage.
10
10
 
11
11
  ## Installation
12
12