@mastra/couchbase 0.10.1 → 0.10.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 +6 -6
- package/CHANGELOG.md +26 -0
- package/package.json +11 -11
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
|
|
2
|
-
> @mastra/couchbase@0.10.
|
|
2
|
+
> @mastra/couchbase@0.10.2-alpha.0 build /home/runner/work/mastra/mastra/stores/couchbase
|
|
3
3
|
> tsup src/index.ts --format esm,cjs --experimental-dts --clean --treeshake=smallest --splitting
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
6
6
|
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
7
|
-
[34mCLI[39m tsup v8.
|
|
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 7212ms
|
|
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/couchbase/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/couchbase/dist/_tsup-dts-rollup.d.cts[39m
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 9844ms
|
|
17
17
|
[34mCLI[39m Cleaning output folder
|
|
18
18
|
[34mESM[39m Build start
|
|
19
19
|
[34mCJS[39m Build start
|
|
20
20
|
[32mCJS[39m [1mdist/index.cjs [22m[32m10.90 KB[39m
|
|
21
|
-
[32mCJS[39m ⚡️ Build success in
|
|
21
|
+
[32mCJS[39m ⚡️ Build success in 615ms
|
|
22
22
|
[32mESM[39m [1mdist/index.js [22m[32m10.84 KB[39m
|
|
23
|
-
[32mESM[39m ⚡️ Build success in
|
|
23
|
+
[32mESM[39m ⚡️ Build success in 627ms
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @mastra/couchbase
|
|
2
2
|
|
|
3
|
+
## 0.10.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 66f4424: Update peerdeps
|
|
8
|
+
- Updated dependencies [d1ed912]
|
|
9
|
+
- Updated dependencies [f6fd25f]
|
|
10
|
+
- Updated dependencies [dffb67b]
|
|
11
|
+
- Updated dependencies [f1f1f1b]
|
|
12
|
+
- Updated dependencies [925ab94]
|
|
13
|
+
- Updated dependencies [f9816ae]
|
|
14
|
+
- Updated dependencies [82090c1]
|
|
15
|
+
- Updated dependencies [1b443fd]
|
|
16
|
+
- Updated dependencies [ce97900]
|
|
17
|
+
- Updated dependencies [f1309d3]
|
|
18
|
+
- Updated dependencies [14a2566]
|
|
19
|
+
- Updated dependencies [f7f8293]
|
|
20
|
+
- Updated dependencies [48eddb9]
|
|
21
|
+
- @mastra/core@0.10.4
|
|
22
|
+
|
|
23
|
+
## 0.10.2-alpha.0
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- 66f4424: Update peerdeps
|
|
28
|
+
|
|
3
29
|
## 0.10.1
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/couchbase",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.2",
|
|
4
4
|
"description": "Couchbase vector store provider for Mastra",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -22,20 +22,20 @@
|
|
|
22
22
|
"couchbase": "^4.4.5"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@microsoft/api-extractor": "^7.52.
|
|
26
|
-
"@types/node": "^20.17.
|
|
27
|
-
"@vitest/coverage-v8": "3.
|
|
28
|
-
"@vitest/ui": "3.
|
|
25
|
+
"@microsoft/api-extractor": "^7.52.8",
|
|
26
|
+
"@types/node": "^20.17.57",
|
|
27
|
+
"@vitest/coverage-v8": "3.2.2",
|
|
28
|
+
"@vitest/ui": "3.2.2",
|
|
29
29
|
"axios": "^1.8.4",
|
|
30
|
-
"eslint": "^9.
|
|
31
|
-
"tsup": "^8.
|
|
30
|
+
"eslint": "^9.28.0",
|
|
31
|
+
"tsup": "^8.5.0",
|
|
32
32
|
"typescript": "^5.8.2",
|
|
33
|
-
"vitest": "^3.
|
|
34
|
-
"@internal/lint": "0.0.
|
|
35
|
-
"@mastra/core": "0.10.
|
|
33
|
+
"vitest": "^3.2.2",
|
|
34
|
+
"@internal/lint": "0.0.11",
|
|
35
|
+
"@mastra/core": "0.10.4"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
|
-
"@mastra/core": "
|
|
38
|
+
"@mastra/core": ">=0.10.4-0 <0.11.0"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
41
|
"build": "tsup src/index.ts --format esm,cjs --experimental-dts --clean --treeshake=smallest --splitting",
|