@mastra/mssql 0.2.1 → 0.2.3-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.
@@ -1,23 +1,23 @@
1
1
 
2
- > @mastra/mssql@0.2.1-alpha.1 build /home/runner/work/mastra/mastra/stores/mssql
2
+ > @mastra/mssql@0.2.3-alpha.0 build /home/runner/work/mastra/mastra/stores/mssql
3
3
  > tsup src/index.ts --format esm,cjs --experimental-dts --clean --treeshake=smallest --splitting
4
4
 
5
5
  CLI Building entry: src/index.ts
6
6
  CLI Using tsconfig: tsconfig.json
7
7
  CLI tsup v8.5.0
8
8
  TSC Build start
9
- TSC ⚡️ Build success in 10081ms
9
+ TSC ⚡️ Build success in 10815ms
10
10
  DTS Build start
11
11
  CLI Target: es2022
12
12
  Analysis will use the bundled TypeScript version 5.8.3
13
13
  Writing package typings: /home/runner/work/mastra/mastra/stores/mssql/dist/_tsup-dts-rollup.d.ts
14
14
  Analysis will use the bundled TypeScript version 5.8.3
15
15
  Writing package typings: /home/runner/work/mastra/mastra/stores/mssql/dist/_tsup-dts-rollup.d.cts
16
- DTS ⚡️ Build success in 13034ms
16
+ DTS ⚡️ Build success in 13274ms
17
17
  CLI Cleaning output folder
18
18
  ESM Build start
19
19
  CJS Build start
20
- CJS dist/index.cjs 65.07 KB
21
- CJS ⚡️ Build success in 1904ms
22
- ESM dist/index.js 63.86 KB
23
- ESM ⚡️ Build success in 1907ms
20
+ ESM dist/index.js 63.89 KB
21
+ ESM ⚡️ Build success in 1819ms
22
+ CJS dist/index.cjs 65.10 KB
23
+ CJS ⚡️ Build success in 1815ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # Changelog for mastra-mssql
2
2
 
3
+ ## 0.2.3-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 4230a13: dependencies updates:
8
+ - Updated dependency [`mssql@^10.0.4` ↗︎](https://www.npmjs.com/package/mssql/v/10.0.4) (from `^10.0.0`, in `dependencies`)
9
+ - Updated dependencies [27cc97a]
10
+ - Updated dependencies [41daa63]
11
+ - Updated dependencies [254a36b]
12
+ - Updated dependencies [0b89602]
13
+ - Updated dependencies [4d37822]
14
+ - Updated dependencies [ff9c125]
15
+ - Updated dependencies [b8efbb9]
16
+ - Updated dependencies [71466e7]
17
+ - Updated dependencies [0c99fbe]
18
+ - @mastra/core@0.12.0-alpha.2
19
+
20
+ ## 0.2.2
21
+
22
+ ### Patch Changes
23
+
24
+ - ce088f5: Update all peerdeps to latest core
25
+ - @mastra/core@0.11.1
26
+
3
27
  ## 0.2.1
4
28
 
5
29
  ### Patch Changes
@@ -56,6 +56,7 @@ declare class MSSQLStore extends MastraStorage {
56
56
  resourceWorkingMemory: boolean;
57
57
  hasColumn: boolean;
58
58
  createTable: boolean;
59
+ deleteMessages: boolean;
59
60
  };
60
61
  private getTableName;
61
62
  private getSchemaName;
@@ -56,6 +56,7 @@ declare class MSSQLStore extends MastraStorage {
56
56
  resourceWorkingMemory: boolean;
57
57
  hasColumn: boolean;
58
58
  createTable: boolean;
59
+ deleteMessages: boolean;
59
60
  };
60
61
  private getTableName;
61
62
  private getSchemaName;
package/dist/index.cjs CHANGED
@@ -84,7 +84,8 @@ var MSSQLStore = class extends storage.MastraStorage {
84
84
  selectByIncludeResourceScope: true,
85
85
  resourceWorkingMemory: true,
86
86
  hasColumn: true,
87
- createTable: true
87
+ createTable: true,
88
+ deleteMessages: false
88
89
  };
89
90
  }
90
91
  getTableName(indexName) {
package/dist/index.js CHANGED
@@ -78,7 +78,8 @@ var MSSQLStore = class extends MastraStorage {
78
78
  selectByIncludeResourceScope: true,
79
79
  resourceWorkingMemory: true,
80
80
  hasColumn: true,
81
- createTable: true
81
+ createTable: true,
82
+ deleteMessages: false
82
83
  };
83
84
  }
84
85
  getTableName(indexName) {
@@ -1,6 +1,6 @@
1
1
  services:
2
2
  mssql:
3
- image: mcr.microsoft.com/mssql/server:2022-latest
3
+ image: mcr.microsoft.com/mssql/server:2025-latest
4
4
  environment:
5
5
  - ACCEPT_EULA=Y
6
6
  - SA_PASSWORD=Your_password123
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/mssql",
3
- "version": "0.2.1",
3
+ "version": "0.2.3-alpha.0",
4
4
  "description": "MSSQL provider for Mastra - db storage capabilities",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -20,7 +20,7 @@
20
20
  },
21
21
  "license": "MIT",
22
22
  "dependencies": {
23
- "mssql": "^10.0.0"
23
+ "mssql": "^10.0.4"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@microsoft/api-extractor": "^7.52.8",
@@ -30,12 +30,12 @@
30
30
  "tsup": "^8.5.0",
31
31
  "typescript": "^5.8.3",
32
32
  "vitest": "^3.2.4",
33
- "@internal/lint": "0.0.21",
34
- "@internal/storage-test-utils": "0.0.17",
35
- "@mastra/core": "0.11.0"
33
+ "@internal/storage-test-utils": "0.0.19",
34
+ "@mastra/core": "0.12.0-alpha.2",
35
+ "@internal/lint": "0.0.23"
36
36
  },
37
37
  "peerDependencies": {
38
- "@mastra/core": ">=0.10.7-0 <0.11.0-0"
38
+ "@mastra/core": ">=0.10.7-0 <0.12.0-0"
39
39
  },
40
40
  "scripts": {
41
41
  "build": "tsup src/index.ts --format esm,cjs --experimental-dts --clean --treeshake=smallest --splitting",
@@ -133,12 +133,14 @@ export class MSSQLStore extends MastraStorage {
133
133
  resourceWorkingMemory: boolean;
134
134
  hasColumn: boolean;
135
135
  createTable: boolean;
136
+ deleteMessages: boolean;
136
137
  } {
137
138
  return {
138
139
  selectByIncludeResourceScope: true,
139
140
  resourceWorkingMemory: true,
140
141
  hasColumn: true,
141
142
  createTable: true,
143
+ deleteMessages: false,
142
144
  };
143
145
  }
144
146