qdrant-haystack 9.1.2__tar.gz → 9.1.3__tar.gz
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.
Potentially problematic release.
This version of qdrant-haystack might be problematic. Click here for more details.
- {qdrant_haystack-9.1.2 → qdrant_haystack-9.1.3}/CHANGELOG.md +10 -0
- {qdrant_haystack-9.1.2 → qdrant_haystack-9.1.3}/PKG-INFO +2 -2
- {qdrant_haystack-9.1.2 → qdrant_haystack-9.1.3}/pyproject.toml +1 -1
- {qdrant_haystack-9.1.2 → qdrant_haystack-9.1.3}/.gitignore +0 -0
- {qdrant_haystack-9.1.2 → qdrant_haystack-9.1.3}/LICENSE.txt +0 -0
- {qdrant_haystack-9.1.2 → qdrant_haystack-9.1.3}/README.md +0 -0
- {qdrant_haystack-9.1.2 → qdrant_haystack-9.1.3}/examples/embedding_retrieval.py +0 -0
- {qdrant_haystack-9.1.2 → qdrant_haystack-9.1.3}/pydoc/config.yml +0 -0
- {qdrant_haystack-9.1.2 → qdrant_haystack-9.1.3}/src/haystack_integrations/components/retrievers/qdrant/__init__.py +0 -0
- {qdrant_haystack-9.1.2 → qdrant_haystack-9.1.3}/src/haystack_integrations/components/retrievers/qdrant/retriever.py +0 -0
- {qdrant_haystack-9.1.2 → qdrant_haystack-9.1.3}/src/haystack_integrations/document_stores/qdrant/__init__.py +0 -0
- {qdrant_haystack-9.1.2 → qdrant_haystack-9.1.3}/src/haystack_integrations/document_stores/qdrant/converters.py +0 -0
- {qdrant_haystack-9.1.2 → qdrant_haystack-9.1.3}/src/haystack_integrations/document_stores/qdrant/document_store.py +0 -0
- {qdrant_haystack-9.1.2 → qdrant_haystack-9.1.3}/src/haystack_integrations/document_stores/qdrant/filters.py +0 -0
- {qdrant_haystack-9.1.2 → qdrant_haystack-9.1.3}/src/haystack_integrations/document_stores/qdrant/migrate_to_sparse.py +0 -0
- {qdrant_haystack-9.1.2 → qdrant_haystack-9.1.3}/tests/__init__.py +0 -0
- {qdrant_haystack-9.1.2 → qdrant_haystack-9.1.3}/tests/conftest.py +0 -0
- {qdrant_haystack-9.1.2 → qdrant_haystack-9.1.3}/tests/test_converters.py +0 -0
- {qdrant_haystack-9.1.2 → qdrant_haystack-9.1.3}/tests/test_dict_converters.py +0 -0
- {qdrant_haystack-9.1.2 → qdrant_haystack-9.1.3}/tests/test_document_store.py +0 -0
- {qdrant_haystack-9.1.2 → qdrant_haystack-9.1.3}/tests/test_document_store_async.py +0 -0
- {qdrant_haystack-9.1.2 → qdrant_haystack-9.1.3}/tests/test_embedding_retriever.py +0 -0
- {qdrant_haystack-9.1.2 → qdrant_haystack-9.1.3}/tests/test_filters.py +0 -0
- {qdrant_haystack-9.1.2 → qdrant_haystack-9.1.3}/tests/test_hybrid_retriever.py +0 -0
- {qdrant_haystack-9.1.2 → qdrant_haystack-9.1.3}/tests/test_sparse_embedding_retriever.py +0 -0
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [integrations/qdrant-v9.1.2] - 2025-05-27
|
|
4
|
+
|
|
5
|
+
### 🐛 Bug Fixes
|
|
6
|
+
|
|
7
|
+
- Fix exposing Qdrant api-key in `metadata` field when running `to_dict` (#1813)
|
|
8
|
+
|
|
9
|
+
|
|
3
10
|
## [integrations/qdrant-v9.1.1] - 2025-03-20
|
|
4
11
|
|
|
12
|
+
|
|
5
13
|
### ⚙️ CI
|
|
6
14
|
|
|
7
15
|
- Review testing workflows (#1541)
|
|
@@ -16,8 +24,10 @@
|
|
|
16
24
|
|
|
17
25
|
- Qdrant -- async support (#1480)
|
|
18
26
|
|
|
27
|
+
|
|
19
28
|
## [integrations/qdrant-v9.0.0] - 2025-03-11
|
|
20
29
|
|
|
30
|
+
|
|
21
31
|
### 🧹 Chores
|
|
22
32
|
|
|
23
33
|
- Use Haystack logging across integrations (#1484)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: qdrant-haystack
|
|
3
|
-
Version: 9.1.
|
|
3
|
+
Version: 9.1.3
|
|
4
4
|
Summary: An integration of Qdrant ANN vector database backend with Haystack
|
|
5
5
|
Project-URL: Source, https://github.com/deepset-ai/haystack-core-integrations
|
|
6
6
|
Project-URL: Documentation, https://github.com/deepset-ai/haystack-core-integrations/blob/main/integrations/qdrant/README.md
|
|
@@ -20,7 +20,7 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
|
20
20
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
21
21
|
Requires-Python: >=3.9
|
|
22
22
|
Requires-Dist: haystack-ai>=2.11.0
|
|
23
|
-
Requires-Dist: qdrant-client>=1.
|
|
23
|
+
Requires-Dist: qdrant-client>=1.12.0
|
|
24
24
|
Description-Content-Type: text/markdown
|
|
25
25
|
|
|
26
26
|
# qdrant-haystack
|
|
@@ -26,7 +26,7 @@ classifiers = [
|
|
|
26
26
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
27
27
|
"Programming Language :: Python :: Implementation :: PyPy",
|
|
28
28
|
]
|
|
29
|
-
dependencies = ["haystack-ai>=2.11.0", "qdrant-client>=1.
|
|
29
|
+
dependencies = ["haystack-ai>=2.11.0", "qdrant-client>=1.12.0"]
|
|
30
30
|
|
|
31
31
|
[project.urls]
|
|
32
32
|
Source = "https://github.com/deepset-ai/haystack-core-integrations"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|