@mastra/chroma 0.11.2-alpha.0 → 0.11.2
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/.turbo/turbo-build.log +5 -5
- package/CHANGELOG.md +30 -0
- package/package.json +3 -3
package/.turbo/turbo-build.log
CHANGED
|
@@ -6,18 +6,18 @@
|
|
|
6
6
|
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
7
7
|
[34mCLI[39m tsup v8.5.0
|
|
8
8
|
[34mTSC[39m Build start
|
|
9
|
-
[32mTSC[39m ⚡️ Build success in
|
|
9
|
+
[32mTSC[39m ⚡️ Build success in 11571ms
|
|
10
10
|
[34mDTS[39m Build start
|
|
11
11
|
[34mCLI[39m Target: es2022
|
|
12
12
|
Analysis will use the bundled TypeScript version 5.8.3
|
|
13
13
|
[36mWriting package typings: /home/runner/work/mastra/mastra/stores/chroma/dist/_tsup-dts-rollup.d.ts[39m
|
|
14
14
|
Analysis will use the bundled TypeScript version 5.8.3
|
|
15
15
|
[36mWriting package typings: /home/runner/work/mastra/mastra/stores/chroma/dist/_tsup-dts-rollup.d.cts[39m
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 11519ms
|
|
17
17
|
[34mCLI[39m Cleaning output folder
|
|
18
18
|
[34mESM[39m Build start
|
|
19
19
|
[34mCJS[39m Build start
|
|
20
|
-
[32mCJS[39m [1mdist/index.cjs [22m[32m15.17 KB[39m
|
|
21
|
-
[32mCJS[39m ⚡️ Build success in 998ms
|
|
22
20
|
[32mESM[39m [1mdist/index.js [22m[32m14.87 KB[39m
|
|
23
|
-
[32mESM[39m ⚡️ Build success in
|
|
21
|
+
[32mESM[39m ⚡️ Build success in 892ms
|
|
22
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m15.17 KB[39m
|
|
23
|
+
[32mCJS[39m ⚡️ Build success in 892ms
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @mastra/chroma
|
|
2
2
|
|
|
3
|
+
## 0.11.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f42c4c2: update peer deps for packages to latest core range
|
|
8
|
+
- Updated dependencies [510e2c8]
|
|
9
|
+
- Updated dependencies [2f72fb2]
|
|
10
|
+
- Updated dependencies [27cc97a]
|
|
11
|
+
- Updated dependencies [3f89307]
|
|
12
|
+
- Updated dependencies [9eda7d4]
|
|
13
|
+
- Updated dependencies [9d49408]
|
|
14
|
+
- Updated dependencies [41daa63]
|
|
15
|
+
- Updated dependencies [ad0a58b]
|
|
16
|
+
- Updated dependencies [254a36b]
|
|
17
|
+
- Updated dependencies [2ecf658]
|
|
18
|
+
- Updated dependencies [7a7754f]
|
|
19
|
+
- Updated dependencies [fc92d80]
|
|
20
|
+
- Updated dependencies [e0f73c6]
|
|
21
|
+
- Updated dependencies [0b89602]
|
|
22
|
+
- Updated dependencies [4d37822]
|
|
23
|
+
- Updated dependencies [23a6a7c]
|
|
24
|
+
- Updated dependencies [cda801d]
|
|
25
|
+
- Updated dependencies [a77c823]
|
|
26
|
+
- Updated dependencies [ff9c125]
|
|
27
|
+
- Updated dependencies [09bca64]
|
|
28
|
+
- Updated dependencies [b8efbb9]
|
|
29
|
+
- Updated dependencies [71466e7]
|
|
30
|
+
- Updated dependencies [0c99fbe]
|
|
31
|
+
- @mastra/core@0.12.0
|
|
32
|
+
|
|
3
33
|
## 0.11.2-alpha.0
|
|
4
34
|
|
|
5
35
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/chroma",
|
|
3
|
-
"version": "0.11.2
|
|
3
|
+
"version": "0.11.2",
|
|
4
4
|
"description": "Chroma vector store provider for Mastra",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"tsup": "^8.5.0",
|
|
30
30
|
"typescript": "^5.8.3",
|
|
31
31
|
"vitest": "^3.2.4",
|
|
32
|
-
"@
|
|
33
|
-
"@
|
|
32
|
+
"@mastra/core": "0.12.0",
|
|
33
|
+
"@internal/lint": "0.0.24"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"@mastra/core": ">=0.10.7-0 <0.13.0-0"
|