Skip to content

Release v3.0.0a0 #253

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 37 commits into from
May 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
0c4793e
update for v3.0.0
jonhealy1 Apr 27, 2024
185a512
lint
jonhealy1 Apr 27, 2024
9cd6ec8
update tests pass 1
jonhealy1 Apr 28, 2024
57c0d4a
update tests 2
jonhealy1 Apr 28, 2024
e6e3363
clean up
jonhealy1 Apr 28, 2024
19bda7d
update
jonhealy1 Apr 28, 2024
84ac529
update to stac-fastapi v3.0.0a0
jonhealy1 May 7, 2024
377118e
Merge branch 'main' into stac-fastapi-v3.0
jonhealy1 May 7, 2024
150c3f3
unskip collection extensions put test
jonhealy1 May 7, 2024
12b7243
add example with between timestamps
jonhealy1 May 7, 2024
a511bc5
update filter es logic
jonhealy1 May 7, 2024
7138336
add updated method to opensearch
jonhealy1 May 7, 2024
7f67fca
update typing extensions
jonhealy1 May 7, 2024
fa12732
update again
jonhealy1 May 7, 2024
17a0bb5
comment out elasticsearch 7 testing for now
jonhealy1 May 7, 2024
25c49c5
fix ports
jonhealy1 May 7, 2024
f42b060
install core first
jonhealy1 May 7, 2024
260e360
find errors
jonhealy1 May 7, 2024
0ed1f4c
convert enum in core
jonhealy1 May 7, 2024
eb2b2ab
clean up
jonhealy1 May 7, 2024
e67e036
clean up 2
jonhealy1 May 7, 2024
d670c5c
more cleaning
jonhealy1 May 8, 2024
f3cd61c
update changelog
jonhealy1 May 8, 2024
c5c81dc
Merge branch 'main' into stac-fastapi-v3.0
jonhealy1 May 8, 2024
93cd1b6
changelog fix
jonhealy1 May 8, 2024
f133ab1
Update stac_fastapi/tests/extensions/test_filter.py
jonhealy1 May 8, 2024
6967685
hardcode max limit for now
jonhealy1 May 9, 2024
ac28653
use fastapi-slim
jonhealy1 May 9, 2024
3ca89ff
update for python 3.12
jonhealy1 May 9, 2024
81a64c3
only run lint in 3.11
jonhealy1 May 9, 2024
037c078
use asyncbasefiltersclient from stac-fastapi
jonhealy1 May 9, 2024
0fe5599
remove pystac
jonhealy1 May 9, 2024
d4e4a43
added test_item_custom_links
pedro-cf May 9, 2024
a198efb
lint
jonhealy1 May 9, 2024
17aacb6
comment out test for now
jonhealy1 May 10, 2024
58920e2
v3.0.0a0
jonhealy1 May 11, 2024
1002415
Merge branch 'main' into release/v3.0.0a
jonhealy1 May 11, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]


## [v3.0.0a0]

### Added

- Symlinks from project-specific readme files to main readme [#250](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/pull/250)
Expand Down Expand Up @@ -194,7 +197,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Added db_to_stac serializer to item_collection method in core.py.


[Unreleased]: <https://github.com/stac-utils/stac-fastapi-elasticsearch/tree/v2.4.1...main>
[Unreleased]: <https://github.com/stac-utils/stac-fastapi-elasticsearch/tree/v3.0.0a0...main>
[v3.0.0a0]: <https://github.com/stac-utils/stac-fastapi-elasticsearch/tree/v2.4.1...v3.0.0a0>
[v2.4.1]: <https://github.com/stac-utils/stac-fastapi-elasticsearch/tree/v2.4.0...v2.4.1>
[v2.4.0]: <https://github.com/stac-utils/stac-fastapi-elasticsearch/tree/v2.3.0...v2.4.0>
[v2.3.0]: <https://github.com/stac-utils/stac-fastapi-elasticsearch/tree/v2.2.0...v2.3.0>
Expand Down
2 changes: 1 addition & 1 deletion stac_fastapi/core/stac_fastapi/core/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""library version."""
__version__ = "2.4.1"
__version__ = "3.0.0a0"
2 changes: 1 addition & 1 deletion stac_fastapi/elasticsearch/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
desc = f.read()

install_requires = [
"stac-fastapi.core==2.4.1",
"stac-fastapi.core==3.0.0a0",
"elasticsearch[async]==8.11.0",
"elasticsearch-dsl==8.11.0",
"uvicorn",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""library version."""
__version__ = "2.4.1"
__version__ = "3.0.0a0"
2 changes: 1 addition & 1 deletion stac_fastapi/opensearch/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
desc = f.read()

install_requires = [
"stac-fastapi.core==2.4.1",
"stac-fastapi.core==3.0.0a0",
"opensearch-py==2.4.2",
"opensearch-py[async]==2.4.2",
"uvicorn",
Expand Down
2 changes: 1 addition & 1 deletion stac_fastapi/opensearch/stac_fastapi/opensearch/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""library version."""
__version__ = "2.4.1"
__version__ = "3.0.0a0"