@mastra/qdrant 0.11.8 → 0.11.9-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 +12 -0
- package/package.json +17 -4
- package/.turbo/turbo-build.log +0 -4
- package/docker-compose.yaml +0 -17
- package/eslint.config.js +0 -6
- package/src/index.ts +0 -2
- package/src/vector/filter.test.ts +0 -857
- package/src/vector/filter.ts +0 -388
- package/src/vector/index.test.ts +0 -977
- package/src/vector/index.ts +0 -396
- package/src/vector/prompt.ts +0 -85
- 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,17 @@
|
|
|
1
1
|
# @mastra/qdrant
|
|
2
2
|
|
|
3
|
+
## 0.11.9-alpha.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#6964](https://github.com/mastra-ai/mastra/pull/6964) [`8282732`](https://github.com/mastra-ai/mastra/commit/82827322495a6c2b859d737218a4d8d42a1fb77d) Thanks [@dane-ai-mastra](https://github.com/apps/dane-ai-mastra)! - dependencies updates:
|
|
8
|
+
- Updated dependency [`@qdrant/js-client-rest@^1.15.1` ↗︎](https://www.npmjs.com/package/@qdrant/js-client-rest/v/1.15.1) (from `^1.15.0`, in `dependencies`)
|
|
9
|
+
|
|
10
|
+
- [#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`.
|
|
11
|
+
|
|
12
|
+
- Updated dependencies [[`85ef90b`](https://github.com/mastra-ai/mastra/commit/85ef90bb2cd4ae4df855c7ac175f7d392c55c1bf), [`de3cbc6`](https://github.com/mastra-ai/mastra/commit/de3cbc61079211431bd30487982ea3653517278e)]:
|
|
13
|
+
- @mastra/core@0.15.3-alpha.5
|
|
14
|
+
|
|
3
15
|
## 0.11.8
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/qdrant",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.9-alpha.0",
|
|
4
4
|
"description": "Qdrant vector store provider for Mastra",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
},
|
|
19
19
|
"./package.json": "./package.json"
|
|
20
20
|
},
|
|
21
|
-
"license": "
|
|
21
|
+
"license": "Apache-2.0",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@qdrant/js-client-rest": "^1.15.
|
|
23
|
+
"@qdrant/js-client-rest": "^1.15.1"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@microsoft/api-extractor": "^7.52.8",
|
|
@@ -30,13 +30,26 @@
|
|
|
30
30
|
"typescript": "^5.8.3",
|
|
31
31
|
"vitest": "^3.2.4",
|
|
32
32
|
"@internal/lint": "0.0.34",
|
|
33
|
-
"@mastra/core": "0.15.2",
|
|
34
33
|
"@internal/types-builder": "0.0.9",
|
|
34
|
+
"@mastra/core": "0.15.3-alpha.5",
|
|
35
35
|
"@internal/storage-test-utils": "0.0.30"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"@mastra/core": ">=0.10.7-0 <0.16.0-0"
|
|
39
39
|
},
|
|
40
|
+
"files": [
|
|
41
|
+
"dist",
|
|
42
|
+
"CHANGELOG.md"
|
|
43
|
+
],
|
|
44
|
+
"homepage": "https://mastra.ai",
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "git+https://github.com/mastra-ai/mastra.git",
|
|
48
|
+
"directory": "stores/qdrant"
|
|
49
|
+
},
|
|
50
|
+
"bugs": {
|
|
51
|
+
"url": "https://github.com/mastra-ai/mastra/issues"
|
|
52
|
+
},
|
|
40
53
|
"scripts": {
|
|
41
54
|
"build": "tsup --silent --config tsup.config.ts",
|
|
42
55
|
"build:watch": "tsup --watch --silent --config tsup.config.ts",
|
package/.turbo/turbo-build.log
DELETED
package/docker-compose.yaml
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
version: '3.8'
|
|
2
|
-
|
|
3
|
-
services:
|
|
4
|
-
qdrant:
|
|
5
|
-
image: qdrant/qdrant:latest
|
|
6
|
-
ports:
|
|
7
|
-
- '6333:6333' # REST API port
|
|
8
|
-
- '6334:6334' # gRPC port
|
|
9
|
-
volumes:
|
|
10
|
-
- qdrant_data:/qdrant/storage
|
|
11
|
-
environment:
|
|
12
|
-
- QDRANT_LOG_LEVEL=INFO
|
|
13
|
-
restart: always
|
|
14
|
-
|
|
15
|
-
volumes:
|
|
16
|
-
qdrant_data:
|
|
17
|
-
driver: local
|
package/eslint.config.js
DELETED
package/src/index.ts
DELETED