Skip to content

Commit 7bcced3

Browse files
committed
remove elasticsearch-dsl
1 parent 342b66e commit 7bcced3

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2626
- Updated `STAC_FASTAPI_VERSION` environment variables to 4.0.0a1 in all compose files [#358](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/pull/358)
2727
- Bumped version from 4.0.0a0 to 4.0.0a1 for the PEP 625 compliant release [#358](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/pull/358)
2828
- Updated dependency requirements to use compatible release specifiers (~=) for more controlled updates while allowing for bug fixes and security patches [#358](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/issues/358)
29+
- Removed elasticsearch-dsl dependency as it's now part of the elasticsearch package since version 8.18.0 [#358](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/issues/358)
2930

3031
## [v4.0.0a0] - 2025-04-16
3132

stac_fastapi/elasticsearch/setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
install_requires = [
99
"stac_fastapi_core==4.0.0a1",
1010
"elasticsearch[async]~=9.0.0",
11-
"elasticsearch-dsl~=8.18.0",
1211
"uvicorn~=0.23.0",
1312
"starlette~=0.27.0",
1413
]

stac_fastapi/elasticsearch/stac_fastapi/elasticsearch/database_logic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from typing import Any, Dict, Iterable, List, Optional, Tuple, Type
99

1010
import attr
11-
from elasticsearch_dsl import Q, Search
11+
from elasticsearch.dsl import Q, Search
1212
from starlette.requests import Request
1313

1414
from elasticsearch import exceptions, helpers # type: ignore

0 commit comments

Comments
 (0)