@mastra/mssql 1.7.0-alpha.2 → 1.7.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/mssql
2
2
 
3
+ ## 1.7.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.7.0-alpha.2
4
15
 
5
16
  ### Patch Changes
@@ -3,7 +3,7 @@ name: mastra-mssql
3
3
  description: Documentation for @mastra/mssql. Use when working with @mastra/mssql APIs, configuration, or implementation.
4
4
  metadata:
5
5
  package: "@mastra/mssql"
6
- version: "1.7.0-alpha.2"
6
+ version: "1.7.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/mssql to obtain the domain-
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: MSSQL storage](references/reference-storage-mssql.md) - Documentation for the MSSQL storage implementation in Mastra.
19
+ - [MSSQL](references/integrations-databases-mssql.md) - Documentation for the MSSQL 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.7.0-alpha.2",
2
+ "version": "1.7.0-alpha.3",
3
3
  "package": "@mastra/mssql",
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
- # MSSQL storage
3
+ # MSSQL
4
4
 
5
5
  The MSSQL storage implementation provides a production-ready storage solution using Microsoft SQL Server databases.
6
6
 
package/dist/index.cjs CHANGED
@@ -2114,6 +2114,7 @@ function buildMssqlMessageMetadataFilter(metadataFilter) {
2114
2114
  };
2115
2115
  }
2116
2116
  var MemoryMSSQL = class MemoryMSSQL extends _mastra_core_storage.MemoryStorage {
2117
+ supportsPartialThreadUpdate = true;
2117
2118
  pool;
2118
2119
  schema;
2119
2120
  db;