@mastra/clickhouse 0.13.0-alpha.2 → 0.13.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.
- package/CHANGELOG.md +28 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @mastra/clickhouse
|
|
2
2
|
|
|
3
|
+
## 0.13.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- ea0c5f2: Add store support to new score api
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 3e9c2ff: dependencies updates:
|
|
12
|
+
- Updated dependency [`@clickhouse/client@^1.12.0` ↗︎](https://www.npmjs.com/package/@clickhouse/client/v/1.12.0) (from `^1.11.2`, in `dependencies`)
|
|
13
|
+
- 2871020: update safelyParseJSON to check for value of param when handling parse
|
|
14
|
+
- 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
|
|
15
|
+
- Updated dependencies [cb36de0]
|
|
16
|
+
- Updated dependencies [d0496e6]
|
|
17
|
+
- Updated dependencies [a82b851]
|
|
18
|
+
- Updated dependencies [ea0c5f2]
|
|
19
|
+
- Updated dependencies [41a0a0e]
|
|
20
|
+
- Updated dependencies [2871020]
|
|
21
|
+
- Updated dependencies [94f4812]
|
|
22
|
+
- Updated dependencies [e202b82]
|
|
23
|
+
- Updated dependencies [e00f6a0]
|
|
24
|
+
- Updated dependencies [4a406ec]
|
|
25
|
+
- Updated dependencies [b0e43c1]
|
|
26
|
+
- Updated dependencies [5d377e5]
|
|
27
|
+
- Updated dependencies [1fb812e]
|
|
28
|
+
- Updated dependencies [35c5798]
|
|
29
|
+
- @mastra/core@0.13.0
|
|
30
|
+
|
|
3
31
|
## 0.13.0-alpha.2
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/clickhouse",
|
|
3
|
-
"version": "0.13.0
|
|
3
|
+
"version": "0.13.0",
|
|
4
4
|
"description": "Clickhouse provider for Mastra - includes db storage capabilities",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"tsup": "^8.5.0",
|
|
30
30
|
"typescript": "^5.8.3",
|
|
31
31
|
"vitest": "^3.2.4",
|
|
32
|
-
"@internal/
|
|
33
|
-
"@internal/
|
|
34
|
-
"@
|
|
35
|
-
"@
|
|
32
|
+
"@internal/storage-test-utils": "0.0.23",
|
|
33
|
+
"@internal/lint": "0.0.27",
|
|
34
|
+
"@mastra/core": "0.13.0",
|
|
35
|
+
"@internal/types-builder": "0.0.2"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"@mastra/core": ">=0.13.0-0 <0.14.0-0"
|