@mastra/couchbase 0.11.4 → 0.11.7-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.
- package/CHANGELOG.md +27 -0
- package/package.json +18 -5
- package/.turbo/turbo-build.log +0 -4
- package/docker-compose.yaml +0 -21
- package/eslint.config.js +0 -6
- package/scripts/start-docker.js +0 -14
- package/scripts/stop-docker.js +0 -7
- package/src/index.ts +0 -1
- package/src/vector/index.integration.test.ts +0 -733
- package/src/vector/index.ts +0 -504
- package/src/vector/index.unit.test.ts +0 -737
- package/tsconfig.build.json +0 -9
- package/tsconfig.json +0 -5
- package/tsup.config.ts +0 -17
- package/vitest.config.ts +0 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @mastra/couchbase
|
|
2
2
|
|
|
3
|
+
## 0.11.7-alpha.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#7343](https://github.com/mastra-ai/mastra/pull/7343) [`de3cbc6`](https://github.com/mastra-ai/mastra/commit/de3cbc61079211431bd30487982ea3653517278e) Thanks [@LekoArts](https://github.com/LekoArts)! - Update the `package.json` file to include additional fields like `repository`, `homepage` or `files`.
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`85ef90b`](https://github.com/mastra-ai/mastra/commit/85ef90bb2cd4ae4df855c7ac175f7d392c55c1bf), [`de3cbc6`](https://github.com/mastra-ai/mastra/commit/de3cbc61079211431bd30487982ea3653517278e)]:
|
|
10
|
+
- @mastra/core@0.15.3-alpha.5
|
|
11
|
+
|
|
12
|
+
## 0.11.6
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- [`c6113ed`](https://github.com/mastra-ai/mastra/commit/c6113ed7f9df297e130d94436ceee310273d6430) Thanks [@wardpeet](https://github.com/wardpeet)! - Fix peerdpes for @mastra/core
|
|
17
|
+
|
|
18
|
+
- Updated dependencies []:
|
|
19
|
+
- @mastra/core@0.15.2
|
|
20
|
+
|
|
21
|
+
## 0.11.5
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- [`95b2aa9`](https://github.com/mastra-ai/mastra/commit/95b2aa908230919e67efcac0d69005a2d5745298) Thanks [@wardpeet](https://github.com/wardpeet)! - Fix peerdeps @mastra/core
|
|
26
|
+
|
|
27
|
+
- Updated dependencies []:
|
|
28
|
+
- @mastra/core@0.15.1
|
|
29
|
+
|
|
3
30
|
## 0.11.4
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/couchbase",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.7-alpha.0",
|
|
4
4
|
"description": "Couchbase vector store provider for Mastra",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -31,12 +31,25 @@
|
|
|
31
31
|
"tsup": "^8.5.0",
|
|
32
32
|
"typescript": "^5.8.3",
|
|
33
33
|
"vitest": "^3.2.4",
|
|
34
|
-
"@internal/lint": "0.0.
|
|
35
|
-
"@
|
|
36
|
-
"@
|
|
34
|
+
"@internal/lint": "0.0.34",
|
|
35
|
+
"@internal/types-builder": "0.0.9",
|
|
36
|
+
"@mastra/core": "0.15.3-alpha.5"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
-
"@mastra/core": ">=0.10.7-0 <0.
|
|
39
|
+
"@mastra/core": ">=0.10.7-0 <0.16.0-0"
|
|
40
|
+
},
|
|
41
|
+
"files": [
|
|
42
|
+
"dist",
|
|
43
|
+
"CHANGELOG.md"
|
|
44
|
+
],
|
|
45
|
+
"homepage": "https://mastra.ai",
|
|
46
|
+
"repository": {
|
|
47
|
+
"type": "git",
|
|
48
|
+
"url": "git+https://github.com/mastra-ai/mastra.git",
|
|
49
|
+
"directory": "stores/couchbase"
|
|
50
|
+
},
|
|
51
|
+
"bugs": {
|
|
52
|
+
"url": "https://github.com/mastra-ai/mastra/issues"
|
|
40
53
|
},
|
|
41
54
|
"scripts": {
|
|
42
55
|
"build": "tsup --silent --config tsup.config.ts",
|
package/.turbo/turbo-build.log
DELETED
package/docker-compose.yaml
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
services:
|
|
2
|
-
mastra_couchbase_testing:
|
|
3
|
-
image: couchbase:enterprise-7.6.4
|
|
4
|
-
ports:
|
|
5
|
-
- '8091-8095:8091-8095'
|
|
6
|
-
- '11210:11210'
|
|
7
|
-
- '9102:9102'
|
|
8
|
-
expose:
|
|
9
|
-
- '8091'
|
|
10
|
-
- '8092'
|
|
11
|
-
- '8093'
|
|
12
|
-
- '8094'
|
|
13
|
-
- '8095'
|
|
14
|
-
- '9102'
|
|
15
|
-
- '11210'
|
|
16
|
-
healthcheck: # checks couchbase server is up
|
|
17
|
-
test: ['CMD', 'curl', '-v', 'http://localhost:8091/pools']
|
|
18
|
-
interval: 20s
|
|
19
|
-
timeout: 20s
|
|
20
|
-
retries: 5
|
|
21
|
-
container_name: mastra_couchbase_testing
|
package/eslint.config.js
DELETED
package/scripts/start-docker.js
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
import { execSync } from 'child_process';
|
|
3
|
-
try {
|
|
4
|
-
execSync('docker compose -f "./docker-compose.yaml" ps --quiet');
|
|
5
|
-
console.log('Container already running, bringing it down first...');
|
|
6
|
-
execSync('docker compose -f "./docker-compose.yaml" down --volumes', { stdio: 'inherit' });
|
|
7
|
-
} catch (error) {
|
|
8
|
-
console.error('No existing container found', error);
|
|
9
|
-
}
|
|
10
|
-
try {
|
|
11
|
-
execSync('docker compose -f "./docker-compose.yaml" up --wait', { stdio: 'inherit' });
|
|
12
|
-
} catch (error) {
|
|
13
|
-
console.error('Failed to start container', error);
|
|
14
|
-
}
|
package/scripts/stop-docker.js
DELETED
package/src/index.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './vector';
|