@mastra/mssql 0.5.0-alpha.0 → 0.5.1-alpha.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +39 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,44 @@
1
1
  # @mastra/mssql
2
2
 
3
+ ## 0.5.1-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - update peerdeps ([`5ca1cca`](https://github.com/mastra-ai/mastra/commit/5ca1ccac61ffa7141e6d9fa8f22d3ad4d03bf5dc))
8
+
9
+ - Updated dependencies [[`5ca1cca`](https://github.com/mastra-ai/mastra/commit/5ca1ccac61ffa7141e6d9fa8f22d3ad4d03bf5dc), [`6d7e90d`](https://github.com/mastra-ai/mastra/commit/6d7e90db09713e6250f4d6c3d3cff1b4740e50f9), [`f78b908`](https://github.com/mastra-ai/mastra/commit/f78b9080e11af765969b36b4a619761056030840), [`23c2614`](https://github.com/mastra-ai/mastra/commit/23c26140fdbf04b8c59e8d7d52106d67dad962ec), [`e365eda`](https://github.com/mastra-ai/mastra/commit/e365eda45795b43707310531cac1e2ce4e5a0712)]:
10
+ - @mastra/core@0.24.0-alpha.0
11
+
12
+ ## 0.5.0
13
+
14
+ ### Minor Changes
15
+
16
+ - Implemented AI tracing and observability features ([#9368](https://github.com/mastra-ai/mastra/pull/9368))
17
+ - Added createAISpan, updateAISpan, getAITrace, getAITracesPaginated
18
+ - Added batchCreateAISpans, batchUpdateAISpans, batchDeleteAITraces
19
+ - Automatic performance indexes for AI spans
20
+
21
+ Implemented workflow update methods
22
+ - Added updateWorkflowResults with row-level locking (UPDLOCK, HOLDLOCK)
23
+ - Added updateWorkflowState with row-level locking
24
+ - Concurrent update protection for parallel workflow execution
25
+
26
+ Added index management API
27
+ - Added createIndex, listIndexes, describeIndex, dropIndex methods
28
+ - Exposed index management methods directly on store instance
29
+ - Support for composite indexes, unique constraints, and filtered indexes
30
+
31
+ Documentation improvements
32
+ - Comprehensive README with complete API reference (58 methods)
33
+ - Detailed feature descriptions for all storage capabilities
34
+ - Index management examples and best practices
35
+ - Updated to reflect all atomic transaction usage
36
+
37
+ ### Patch Changes
38
+
39
+ - Updated dependencies [[`f57a81e`](https://github.com/mastra-ai/mastra/commit/f57a81e6ce644e45bf1c9618778cc54c50a84ad4), [`2afd345`](https://github.com/mastra-ai/mastra/commit/2afd3450825b76e41f7973baddf13867ea042e40), [`fc79af3`](https://github.com/mastra-ai/mastra/commit/fc79af3915d1c456729cbd753673b0c0564340d8), [`eefc89e`](https://github.com/mastra-ai/mastra/commit/eefc89ee69f05bb71661473a807fc7dc03d56f17), [`60bd45d`](https://github.com/mastra-ai/mastra/commit/60bd45de021f0dfbe6583928f6da5169cb5585ba), [`a30093d`](https://github.com/mastra-ai/mastra/commit/a30093de98c1836dcd5dfddf09649010712b8c95), [`0fe7adb`](https://github.com/mastra-ai/mastra/commit/0fe7adb0f20f59a6bb41f235d01f8b7a880ea6e7), [`a42e496`](https://github.com/mastra-ai/mastra/commit/a42e49686a7486e2e9e9397fa98e5ff7a71dc1b0), [`3670db7`](https://github.com/mastra-ai/mastra/commit/3670db7e8e798f9d65fac5bfb732134a1f26ba7b), [`e40d4d0`](https://github.com/mastra-ai/mastra/commit/e40d4d0a0971b4505e7c9de73c656066c7565653), [`fc843ff`](https://github.com/mastra-ai/mastra/commit/fc843ff4d1d149317b6324553ce5ad7972062a78), [`ff16f9b`](https://github.com/mastra-ai/mastra/commit/ff16f9b9dbc701b26b6c4e9872f759f3880f9327), [`35e6cf7`](https://github.com/mastra-ai/mastra/commit/35e6cf722fef16ea0301eb9cf5a32fe9ccb12d22), [`30a2e36`](https://github.com/mastra-ai/mastra/commit/30a2e369485e0e59c4faa1d83c5635c2260b304c)]:
40
+ - @mastra/core@0.23.2
41
+
3
42
  ## 0.5.0-alpha.0
4
43
 
5
44
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/mssql",
3
- "version": "0.5.0-alpha.0",
3
+ "version": "0.5.1-alpha.0",
4
4
  "description": "MSSQL provider for Mastra - db storage capabilities",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -30,13 +30,13 @@
30
30
  "tsup": "^8.5.0",
31
31
  "typescript": "^5.8.3",
32
32
  "vitest": "^3.2.4",
33
- "@internal/lint": "0.0.55",
34
- "@internal/storage-test-utils": "0.0.51",
35
- "@internal/types-builder": "0.0.30",
36
- "@mastra/core": "0.23.2-alpha.0"
33
+ "@internal/types-builder": "0.0.32",
34
+ "@internal/lint": "0.0.57",
35
+ "@internal/storage-test-utils": "0.0.53",
36
+ "@mastra/core": "0.24.0-alpha.0"
37
37
  },
38
38
  "peerDependencies": {
39
- "@mastra/core": ">=0.18.1-0 <0.24.0-0"
39
+ "@mastra/core": ">=0.18.1-0 <0.25.0-0"
40
40
  },
41
41
  "files": [
42
42
  "dist",