Skip to content

Commit

Permalink
Merge branch 'main' into get-intersection
Browse files Browse the repository at this point in the history
  • Loading branch information
jonhealy1 authored Nov 6, 2023
2 parents b59cf70 + 8fc2d0d commit 1ff53f5
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 @@ -21,6 +21,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)

## [v0.3.0]
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 1ff53f5

Please sign in to comment.