@mastra/spanner 1.6.0-alpha.2 → 1.6.0-alpha.3

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,16 @@
1
1
  # @mastra/spanner
2
2
 
3
+ ## 1.6.0-alpha.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Fixed a crash where updating a thread without a title (for example during observational memory buffering) could write a null title and violate the database's not-null constraint when running a newer @mastra/memory against an older storage package. Memory now checks whether the connected storage adapter supports partial thread updates and backfills the existing title for older adapters, so mixed-version deployments keep working. See #21041 for the original title-clobbering fix this makes backward compatible. ([#21257](https://github.com/mastra-ai/mastra/pull/21257))
8
+
9
+ - Storage adapters now declare support for partial thread updates, letting newer @mastra/memory preserve existing thread titles instead of overwriting them, while remaining safe against older versions. ([#21257](https://github.com/mastra-ai/mastra/pull/21257))
10
+
11
+ - Updated dependencies [[`dc4a25d`](https://github.com/mastra-ai/mastra/commit/dc4a25d41af4e2fe97a816070eaec6aa963ab53b), [`dc4a25d`](https://github.com/mastra-ai/mastra/commit/dc4a25d41af4e2fe97a816070eaec6aa963ab53b)]:
12
+ - @mastra/core@1.58.0-alpha.15
13
+
3
14
  ## 1.6.0-alpha.2
4
15
 
5
16
  ### Patch Changes
@@ -3,7 +3,7 @@ name: mastra-spanner
3
3
  description: Documentation for @mastra/spanner. Use when working with @mastra/spanner APIs, configuration, or implementation.
4
4
  metadata:
5
5
  package: "@mastra/spanner"
6
- version: "1.6.0-alpha.2"
6
+ version: "1.6.0-alpha.3"
7
7
  ---
8
8
 
9
9
  ## When to use
@@ -14,9 +14,9 @@ Use this skill whenever you are working with @mastra/spanner to obtain the domai
14
14
 
15
15
  Read the individual reference documents for detailed explanations and code examples.
16
16
 
17
- ### Reference
17
+ ### Integrations
18
18
 
19
- - [Reference: Google Cloud Spanner storage](references/reference-storage-spanner.md) - Documentation for the Google Cloud Spanner storage implementation in Mastra.
19
+ - [Google Cloud Spanner](references/integrations-databases-spanner.md) - Documentation for the Google Cloud Spanner storage implementation in Mastra.
20
20
 
21
21
 
22
22
  Read [assets/SOURCE_MAP.json](assets/SOURCE_MAP.json) for source code references.
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.6.0-alpha.2",
2
+ "version": "1.6.0-alpha.3",
3
3
  "package": "@mastra/spanner",
4
4
  "exports": {},
5
5
  "modules": {}
@@ -1,6 +1,6 @@
1
1
  > Discover all available pages from the documentation index: https://mastra.ai/llms.txt
2
2
 
3
- # Google Cloud Spanner storage
3
+ # Google Cloud Spanner
4
4
 
5
5
  The Google Cloud Spanner storage implementation provides a horizontally high-capacity, strongly consistent storage backend for Mastra. It targets the GoogleSQL dialect of Cloud Spanner.
6
6
 
package/dist/index.cjs CHANGED
@@ -6325,6 +6325,7 @@ function buildSpannerMessageMetadataFilter(metadataFilter) {
6325
6325
  * (the durable state surface used by `@mastra/memory`).
6326
6326
  */
6327
6327
  var MemorySpanner = class MemorySpanner extends _mastra_core_storage.MemoryStorage {
6328
+ supportsPartialThreadUpdate = true;
6328
6329
  database;
6329
6330
  db;
6330
6331
  skipDefaultIndexes;