@mastra/mssql 0.3.0-alpha.1 → 0.3.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 +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,44 @@
1
1
  # @mastra/mssql
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 8c5a2b0: feat(mssql): implement comprehensive scoring system, enhance storage operations & format storage into domains
8
+ - Add full CRUD operations for scoring system (getScoreById, saveScore, getScoresByScorerId, etc.)
9
+ - Implement message deletion functionality with thread timestamp updates
10
+ - Enhance thread management with sorting options and improved pagination
11
+ - Add batch trace insertion for improved performance
12
+ - Implement proper storage domain initialization with all operation bindings
13
+ - Enhance message parsing and formatting with better v1/v2 support
14
+ - Improve table operations with better foreign key handling
15
+ - Add float data type support in schema creation
16
+ - Enhance timestamp handling with proper SQL DateTime2 usage
17
+ - Update core dependency to latest version
18
+ - Format storage into domains and separate these into different files
19
+
20
+ BREAKING CHANGE: deleteMessages support is now enabled (was previously false)
21
+
22
+ ### Patch Changes
23
+
24
+ - 2871020: update safelyParseJSON to check for value of param when handling parse
25
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
26
+ - Updated dependencies [cb36de0]
27
+ - Updated dependencies [d0496e6]
28
+ - Updated dependencies [a82b851]
29
+ - Updated dependencies [ea0c5f2]
30
+ - Updated dependencies [41a0a0e]
31
+ - Updated dependencies [2871020]
32
+ - Updated dependencies [94f4812]
33
+ - Updated dependencies [e202b82]
34
+ - Updated dependencies [e00f6a0]
35
+ - Updated dependencies [4a406ec]
36
+ - Updated dependencies [b0e43c1]
37
+ - Updated dependencies [5d377e5]
38
+ - Updated dependencies [1fb812e]
39
+ - Updated dependencies [35c5798]
40
+ - @mastra/core@0.13.0
41
+
3
42
  ## 0.3.0-alpha.1
4
43
 
5
44
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/mssql",
3
- "version": "0.3.0-alpha.1",
3
+ "version": "0.3.0",
4
4
  "description": "MSSQL provider for Mastra - db storage capabilities",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -30,10 +30,10 @@
30
30
  "tsup": "^8.5.0",
31
31
  "typescript": "^5.8.3",
32
32
  "vitest": "^3.2.4",
33
- "@internal/lint": "0.0.26",
34
- "@internal/storage-test-utils": "0.0.22",
35
- "@internal/types-builder": "0.0.1",
36
- "@mastra/core": "0.13.0-alpha.2"
33
+ "@internal/storage-test-utils": "0.0.23",
34
+ "@internal/lint": "0.0.27",
35
+ "@mastra/core": "0.13.0",
36
+ "@internal/types-builder": "0.0.2"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "@mastra/core": ">=0.13.0-0 <0.14.0-0"