@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 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.4",
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.30",
35
- "@mastra/core": "0.14.0",
36
- "@internal/types-builder": "0.0.5"
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.15.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",
@@ -1,4 +0,0 @@
1
-
2
- > @mastra/couchbase@0.11.4-alpha.0 build /home/runner/work/mastra/mastra/stores/couchbase
3
- > tsup --silent --config tsup.config.ts
4
-
@@ -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
@@ -1,6 +0,0 @@
1
- import { createConfig } from '@internal/lint/eslint';
2
-
3
- const config = await createConfig();
4
-
5
- /** @type {import("eslint").Linter.Config[]} */
6
- export default [...config];
@@ -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
- }
@@ -1,7 +0,0 @@
1
- #!/usr/bin/env node
2
- import { execSync } from 'child_process';
3
- try {
4
- execSync('docker compose -f "./docker-compose.yaml" down --volumes', { stdio: 'inherit' });
5
- } catch (error) {
6
- console.error('Failed to stop container', error);
7
- }
package/src/index.ts DELETED
@@ -1 +0,0 @@
1
- export * from './vector';