Skip to content

Commit

Permalink
Merge branch 'main' into fix-get-sort
Browse files Browse the repository at this point in the history
  • Loading branch information
jonhealy1 authored Nov 5, 2023
2 parents 2990ab1 + 8fc2d0d commit 6674fc2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

- Corrected the closing of client connections in ES index management functions [#132](https://github.com/stac-utils/stac-fastapi-elasticsearch/issues/132)
- Corrected the automatic converstion of float values to int when building Filter Clauses [#135](https://github.com/stac-utils/stac-fastapi-elasticsearch/issues/135)
- Do not index `proj:geometry` field as geo_shape [#154](https://github.com/stac-utils/stac-fastapi-elasticsearch/issues/154)
- Remove unsupported characters from Elasticsearch index names [#153](https://github.com/stac-utils/stac-fastapi-elasticsearch/issues/153)
- Fixed GET /search sortby requests [#25](https://github.com/stac-utils/stac-fastapi-elasticsearch/issues/25)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
{
"proj_geometry": {
"match": "proj:geometry",
"mapping": {"type": "geo_shape"},
"mapping": {"type": "object", "enabled": False},
}
},
{
Expand Down

0 comments on commit 6674fc2

Please sign in to comment.