elasticsearch-haystack 3.0.0__tar.gz → 3.0.1__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 elasticsearch-haystack might be problematic. Click here for more details.

Files changed (19) hide show
  1. {elasticsearch_haystack-3.0.0 → elasticsearch_haystack-3.0.1}/CHANGELOG.md +11 -0
  2. {elasticsearch_haystack-3.0.0 → elasticsearch_haystack-3.0.1}/PKG-INFO +5 -3
  3. {elasticsearch_haystack-3.0.0 → elasticsearch_haystack-3.0.1}/pyproject.toml +6 -7
  4. {elasticsearch_haystack-3.0.0 → elasticsearch_haystack-3.0.1}/.gitignore +0 -0
  5. {elasticsearch_haystack-3.0.0 → elasticsearch_haystack-3.0.1}/LICENSE +0 -0
  6. {elasticsearch_haystack-3.0.0 → elasticsearch_haystack-3.0.1}/README.md +0 -0
  7. {elasticsearch_haystack-3.0.0 → elasticsearch_haystack-3.0.1}/docker-compose.yml +0 -0
  8. {elasticsearch_haystack-3.0.0 → elasticsearch_haystack-3.0.1}/pydoc/config.yml +0 -0
  9. {elasticsearch_haystack-3.0.0 → elasticsearch_haystack-3.0.1}/src/haystack_integrations/components/retrievers/elasticsearch/__init__.py +0 -0
  10. {elasticsearch_haystack-3.0.0 → elasticsearch_haystack-3.0.1}/src/haystack_integrations/components/retrievers/elasticsearch/bm25_retriever.py +0 -0
  11. {elasticsearch_haystack-3.0.0 → elasticsearch_haystack-3.0.1}/src/haystack_integrations/components/retrievers/elasticsearch/embedding_retriever.py +0 -0
  12. {elasticsearch_haystack-3.0.0 → elasticsearch_haystack-3.0.1}/src/haystack_integrations/document_stores/elasticsearch/__init__.py +0 -0
  13. {elasticsearch_haystack-3.0.0 → elasticsearch_haystack-3.0.1}/src/haystack_integrations/document_stores/elasticsearch/document_store.py +0 -0
  14. {elasticsearch_haystack-3.0.0 → elasticsearch_haystack-3.0.1}/src/haystack_integrations/document_stores/elasticsearch/filters.py +0 -0
  15. {elasticsearch_haystack-3.0.0 → elasticsearch_haystack-3.0.1}/tests/__init__.py +0 -0
  16. {elasticsearch_haystack-3.0.0 → elasticsearch_haystack-3.0.1}/tests/test_bm25_retriever.py +0 -0
  17. {elasticsearch_haystack-3.0.0 → elasticsearch_haystack-3.0.1}/tests/test_document_store.py +0 -0
  18. {elasticsearch_haystack-3.0.0 → elasticsearch_haystack-3.0.1}/tests/test_embedding_retriever.py +0 -0
  19. {elasticsearch_haystack-3.0.0 → elasticsearch_haystack-3.0.1}/tests/test_filters.py +0 -0
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## [integrations/elasticsearch-v3.0.0] - 2025-03-11
4
+
5
+ ### 🧹 Chores
6
+
7
+ - Use Haystack logging across integrations (#1484)
8
+ - Elasticsearch - pin haystack and remove dataframe checks; add `aiohttp` dependency (#1502)
9
+
10
+ ### 🌀 Miscellaneous
11
+
12
+ - Docs: Update document store descriptions for deepset Pipeline Builder (#1447)
13
+
3
14
  ## [integrations/elasticsearch-v2.1.0] - 2025-02-26
4
15
 
5
16
  ### 🚀 Features
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: elasticsearch-haystack
3
- Version: 3.0.0
3
+ Version: 3.0.1
4
4
  Summary: Haystack 2.x Document Store for ElasticSearch
5
5
  Project-URL: Documentation, https://github.com/deepset-ai/haystack-core-integrations/tree/main/integrations/elasticsearch#readme
6
6
  Project-URL: Issues, https://github.com/deepset-ai/haystack-core-integrations/issues
@@ -14,12 +14,14 @@ Classifier: Programming Language :: Python
14
14
  Classifier: Programming Language :: Python :: 3.9
15
15
  Classifier: Programming Language :: Python :: 3.10
16
16
  Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
17
19
  Classifier: Programming Language :: Python :: Implementation :: CPython
18
20
  Classifier: Programming Language :: Python :: Implementation :: PyPy
19
21
  Requires-Python: >=3.9
20
- Requires-Dist: aiohttp
22
+ Requires-Dist: aiohttp>=3.9.0
21
23
  Requires-Dist: elasticsearch<9,>=8
22
- Requires-Dist: haystack-ai>=2.11.0
24
+ Requires-Dist: haystack-ai>=2.4.0
23
25
  Description-Content-Type: text/markdown
24
26
 
25
27
  [![test](https://github.com/deepset-ai/haystack-core-integrations/actions/workflows/elasticsearch.yml/badge.svg)](https://github.com/deepset-ai/haystack-core-integrations/actions/workflows/elasticsearch.yml)
@@ -18,14 +18,16 @@ classifiers = [
18
18
  "Programming Language :: Python :: 3.9",
19
19
  "Programming Language :: Python :: 3.10",
20
20
  "Programming Language :: Python :: 3.11",
21
+ "Programming Language :: Python :: 3.12",
22
+ "Programming Language :: Python :: 3.13",
21
23
  "Programming Language :: Python :: Implementation :: CPython",
22
24
  "Programming Language :: Python :: Implementation :: PyPy",
23
25
  ]
24
26
  dependencies = [
25
- "haystack-ai>=2.11.0",
26
- "elasticsearch>=8,<9",
27
- "aiohttp" # for async support https://elasticsearch-py.readthedocs.io/en/latest/async.html#valueerror-when-initializing-asyncelasticsearch
28
- ]
27
+ "haystack-ai>=2.4.0",
28
+ "elasticsearch>=8,<9",
29
+ "aiohttp>=3.9.0" # for async support https://elasticsearch-py.readthedocs.io/en/latest/async.html#valueerror-when-initializing-asyncelasticsearch
30
+ ]
29
31
 
30
32
  [project.urls]
31
33
  Documentation = "https://github.com/deepset-ai/haystack-core-integrations/tree/main/integrations/elasticsearch#readme"
@@ -62,9 +64,6 @@ cov = ["test-cov", "cov-report"]
62
64
  cov-retry = ["test-cov-retry", "cov-report"]
63
65
  docs = ["pydoc-markdown pydoc/config.yml"]
64
66
 
65
- [[tool.hatch.envs.all.matrix]]
66
- python = [ "3.9", "3.10", "3.11"]
67
-
68
67
  [tool.hatch.envs.lint]
69
68
  installer = "uv"
70
69
  detached = true