Skip to content

Commit c9cf096

Browse files
committed
clean up
1 parent 7447267 commit c9cf096

File tree

3 files changed

+4
-9
lines changed

3 files changed

+4
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1717

1818
### Fixed
1919

20-
- Issue where token, query param was not being passed to POST collections search logic
21-
- Issue where datetime param was not being passed from POST collections search logic to Elasticsearch
22-
- Collections search tests to ensure both GET /collections and POST /collections-search endpoints are tested
20+
- Issue where token, query param was not being passed to POST collections search logic [#483](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/pull/483)
21+
- Issue where datetime param was not being passed from POST collections search logic to Elasticsearch [#483](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/pull/483)
22+
- Collections search tests to ensure both GET /collections and GET/POST /collections-search endpoints are tested [#483](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/pull/483)
2323

2424
[v6.5.0] - 2025-09-29
2525

stac_fastapi/core/stac_fastapi/core/serializers.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"""Serializers."""
22

33
import abc
4-
import logging
54
from copy import deepcopy
65
from typing import Any, List, Optional
76

@@ -14,8 +13,6 @@
1413
from stac_fastapi.types import stac as stac_types
1514
from stac_fastapi.types.links import ItemLinks, resolve_links
1615

17-
logger = logging.getLogger(__name__)
18-
1916

2017
@attr.s
2118
class Serializer(abc.ABC):

stac_fastapi/sfeos_helpers/stac_fastapi/sfeos_helpers/mappings.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,9 +160,7 @@ class Geometry(Protocol): # noqa
160160
"dynamic_templates": ES_MAPPINGS_DYNAMIC_TEMPLATES,
161161
"properties": {
162162
"id": {"type": "keyword"},
163-
"title": {"type": "text"},
164-
"description": {"type": "text"},
165-
"bbox_shape": {"type": "geo_shape"},
163+
"extent.spatial.bbox": {"type": "long"},
166164
"extent.temporal.interval": {
167165
"type": "date",
168166
"format": "strict_date_optional_time||epoch_millis",

0 commit comments

Comments
 (0)