@mastra/qdrant 0.11.4 → 0.11.6-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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @mastra/qdrant@0.11.4-alpha.0 build /home/runner/work/mastra/mastra/stores/qdrant
2
+ > @mastra/qdrant@0.11.6-alpha.0 build /home/runner/work/mastra/mastra/stores/qdrant
3
3
  > tsup --silent --config tsup.config.ts
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,45 @@
1
1
  # @mastra/qdrant
2
2
 
3
+ ## 0.11.6-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - [#6994](https://github.com/mastra-ai/mastra/pull/6994) [`0594a70`](https://github.com/mastra-ai/mastra/commit/0594a70ac948d306c7f38765b171c9535e6c78d4) Thanks [@wardpeet](https://github.com/wardpeet)! - Improve type resolving for storage adapters
8
+
9
+ - Updated dependencies [[`943a7f3`](https://github.com/mastra-ai/mastra/commit/943a7f3dbc6a8ab3f9b7bc7c8a1c5b319c3d7f56), [`be49354`](https://github.com/mastra-ai/mastra/commit/be493546dca540101923ec700feb31f9a13939f2), [`d591ab3`](https://github.com/mastra-ai/mastra/commit/d591ab3ecc985c1870c0db347f8d7a20f7360536), [`ba82abe`](https://github.com/mastra-ai/mastra/commit/ba82abe76e869316bb5a9c95e8ea3946f3436fae), [`727f7e5`](https://github.com/mastra-ai/mastra/commit/727f7e5086e62e0dfe3356fb6dcd8bcb420af246), [`82d9f64`](https://github.com/mastra-ai/mastra/commit/82d9f647fbe4f0177320e7c05073fce88599aa95), [`4189486`](https://github.com/mastra-ai/mastra/commit/4189486c6718fda78347bdf4ce4d3fc33b2236e1), [`ca8ec2f`](https://github.com/mastra-ai/mastra/commit/ca8ec2f61884b9dfec5fc0d5f4f29d281ad13c01)]:
10
+ - @mastra/core@0.14.2-alpha.1
11
+
12
+ ## 0.11.5
13
+
14
+ ### Patch Changes
15
+
16
+ - 03997ae: Update peerdeps
17
+ - Updated dependencies [227c7e6]
18
+ - Updated dependencies [12cae67]
19
+ - Updated dependencies [fd3a3eb]
20
+ - Updated dependencies [6faaee5]
21
+ - Updated dependencies [4232b14]
22
+ - Updated dependencies [a89de7e]
23
+ - Updated dependencies [5a37d0c]
24
+ - Updated dependencies [4bde0cb]
25
+ - Updated dependencies [cf4f357]
26
+ - Updated dependencies [ad888a2]
27
+ - Updated dependencies [481751d]
28
+ - Updated dependencies [2454423]
29
+ - Updated dependencies [194e395]
30
+ - Updated dependencies [a722c0b]
31
+ - Updated dependencies [c30bca8]
32
+ - Updated dependencies [3b5fec7]
33
+ - Updated dependencies [a8f129d]
34
+ - @mastra/core@0.14.0
35
+
36
+ ## 0.11.5-alpha.0
37
+
38
+ ### Patch Changes
39
+
40
+ - 03997ae: Update peerdeps
41
+ - @mastra/core@0.14.0-alpha.7
42
+
3
43
  ## 0.11.4
4
44
 
5
45
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/qdrant",
3
- "version": "0.11.4",
3
+ "version": "0.11.6-alpha.0",
4
4
  "description": "Qdrant vector store provider for Mastra",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -29,13 +29,13 @@
29
29
  "tsup": "^8.5.0",
30
30
  "typescript": "^5.8.3",
31
31
  "vitest": "^3.2.4",
32
- "@internal/lint": "0.0.29",
33
- "@internal/types-builder": "0.0.4",
34
- "@mastra/core": "0.13.2",
35
- "@internal/storage-test-utils": "0.0.25"
32
+ "@internal/lint": "0.0.31",
33
+ "@mastra/core": "0.14.2-alpha.1",
34
+ "@internal/types-builder": "0.0.6",
35
+ "@internal/storage-test-utils": "0.0.27"
36
36
  },
37
37
  "peerDependencies": {
38
- "@mastra/core": ">=0.10.7-0 <0.14.0-0"
38
+ "@mastra/core": ">=0.10.7-0 <0.15.0-0"
39
39
  },
40
40
  "scripts": {
41
41
  "build": "tsup --silent --config tsup.config.ts",
@@ -1,7 +1,7 @@
1
1
  // To setup a Qdrant server, run:
2
2
  // docker run -p 6333:6333 qdrant/qdrant
3
3
  import { createVectorTestSuite } from '@internal/storage-test-utils';
4
- import type { QueryResult } from '@mastra/core';
4
+ import type { QueryResult } from '@mastra/core/vector';
5
5
  import { describe, it, expect, beforeAll, afterAll, afterEach, vi, beforeEach } from 'vitest';
6
6
 
7
7
  import type { QdrantVectorFilter } from './filter';