@mastra/qdrant 0.2.5 → 0.2.6-alpha.1

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,23 +1,23 @@
1
1
 
2
- > @mastra/qdrant@0.2.5-alpha.3 build /home/runner/work/mastra/mastra/stores/qdrant
2
+ > @mastra/qdrant@0.2.6-alpha.1 build /home/runner/work/mastra/mastra/stores/qdrant
3
3
  > tsup src/index.ts --format esm,cjs --experimental-dts --clean --treeshake=smallest --splitting
4
4
 
5
5
  CLI Building entry: src/index.ts
6
6
  CLI Using tsconfig: tsconfig.json
7
7
  CLI tsup v8.4.0
8
8
  TSC Build start
9
- TSC ⚡️ Build success in 8742ms
9
+ TSC ⚡️ Build success in 8881ms
10
10
  DTS Build start
11
11
  CLI Target: es2022
12
12
  Analysis will use the bundled TypeScript version 5.8.2
13
13
  Writing package typings: /home/runner/work/mastra/mastra/stores/qdrant/dist/_tsup-dts-rollup.d.ts
14
14
  Analysis will use the bundled TypeScript version 5.8.2
15
15
  Writing package typings: /home/runner/work/mastra/mastra/stores/qdrant/dist/_tsup-dts-rollup.d.cts
16
- DTS ⚡️ Build success in 9082ms
16
+ DTS ⚡️ Build success in 9104ms
17
17
  CLI Cleaning output folder
18
18
  ESM Build start
19
19
  CJS Build start
20
20
  ESM dist/index.js 13.14 KB
21
- ESM ⚡️ Build success in 584ms
21
+ ESM ⚡️ Build success in 734ms
22
22
  CJS dist/index.cjs 13.17 KB
23
- CJS ⚡️ Build success in 584ms
23
+ CJS ⚡️ Build success in 737ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # @mastra/qdrant
2
2
 
3
+ ## 0.2.6-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 7071597: Update pinecone to include namespace and hybrid search
8
+ - Updated dependencies [619c39d]
9
+ - Updated dependencies [fe56be0]
10
+ - Updated dependencies [a0967a0]
11
+ - Updated dependencies [fca3b21]
12
+ - Updated dependencies [0118361]
13
+ - Updated dependencies [619c39d]
14
+ - @mastra/core@0.8.0-alpha.1
15
+
16
+ ## 0.2.6-alpha.0
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies [107bcfe]
21
+ - Updated dependencies [5b4e19f]
22
+ - Updated dependencies [7599d77]
23
+ - Updated dependencies [cafae83]
24
+ - Updated dependencies [8076ecf]
25
+ - Updated dependencies [304397c]
26
+ - @mastra/core@0.7.1-alpha.0
27
+
3
28
  ## 0.2.5
4
29
 
5
30
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/qdrant",
3
- "version": "0.2.5",
3
+ "version": "0.2.6-alpha.1",
4
4
  "description": "Qdrant vector store provider for Mastra",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -20,7 +20,7 @@
20
20
  },
21
21
  "dependencies": {
22
22
  "@qdrant/js-client-rest": "^1.13.0",
23
- "@mastra/core": "^0.7.0"
23
+ "@mastra/core": "^0.8.0-alpha.1"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@microsoft/api-extractor": "^7.52.1",
@@ -1,9 +1,9 @@
1
1
  // To setup a Qdrant server, run:
2
2
  // docker run -p 6333:6333 qdrant/qdrant
3
+ import type { QueryResult } from '@mastra/core';
3
4
  import { describe, it, expect, beforeAll, afterAll, afterEach, vi, beforeEach } from 'vitest';
4
5
 
5
6
  import { QdrantVector } from './index';
6
- import type { QueryResult } from '@mastra/core';
7
7
 
8
8
  const dimension = 3;
9
9
 
@@ -165,7 +165,7 @@ describe('QdrantVector', () => {
165
165
  expect(ids).toHaveLength(3);
166
166
 
167
167
  const idToBeUpdated = ids[0];
168
- const newVector = [1, 2, 3];
168
+ const newVector = [4, 4, 4];
169
169
 
170
170
  const update = {
171
171
  vector: newVector,