File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
stac_fastapi/types/stac_fastapi/types Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
5
- ### Fixed
5
+ ### Fixed
6
6
7
+ * Remove the str2list converter from intersection queries via BaseSearchGetRequest ([ #668 ] ( https://github.com/stac-utils/stac-fastapi/pull/668 ) )
7
8
* Apply datetime converter in ItemCollection endpoint model ([ #667 ] ( https://github.com/stac-utils/stac-fastapi/pull/667 ) )
8
9
9
10
## [ 2.5.2] - 2024-04-19
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ class BaseSearchGetRequest(APIRequest):
108
108
collections : Optional [str ] = attr .ib (default = None , converter = str2list )
109
109
ids : Optional [str ] = attr .ib (default = None , converter = str2list )
110
110
bbox : Optional [BBox ] = attr .ib (default = None , converter = str2bbox )
111
- intersects : Optional [str ] = attr .ib (default = None , converter = str2list )
111
+ intersects : Optional [str ] = attr .ib (default = None )
112
112
datetime : Optional [DateTimeType ] = attr .ib (default = None , converter = str_to_interval )
113
113
limit : Optional [int ] = attr .ib (default = 10 )
114
114
You can’t perform that action at this time.
0 commit comments