Skip to content

Commit 2568be9

Browse files
authored
Update to v6.7.5, fix redis optional dependencies, stac-fastapi to v6.1.1 (#541)
**Related Issue(s):** - None **Description:** - Fix Redis optional dependencies in opensearch and elasticsearch packages [#541](#541) - Upgrade stac-fastapi parent libraries to v6.1.1 [#541](#541) - Removed support for Python 3.9, 3.10 as they are no longer supported by stac-fastapi parent libraries [#541](#541) **PR Checklist:** - [x] Code is formatted and linted (run `pre-commit run --all-files`) - [x] Tests pass (run `make test`) - [x] Documentation has been updated to reflect changes, if applicable - [x] Changes are added to the changelog
1 parent 7ac75ee commit 2568be9

File tree

18 files changed

+64
-44
lines changed

18 files changed

+64
-44
lines changed

.github/workflows/cicd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868

6969
strategy:
7070
matrix:
71-
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
71+
python-version: [ "3.11", "3.12", "3.13", "3.14"]
7272
backend: [ "elasticsearch8", "opensearch"]
7373

7474
name: Python ${{ matrix.python-version }} testing with ${{ matrix.backend }}

.github/workflows/deploy_mkdocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
- name: Checkout main
2121
uses: actions/checkout@v5
2222

23-
- name: Set up Python 3.9
23+
- name: Set up Python 3.11
2424
uses: actions/setup-python@v6
2525
with:
26-
python-version: 3.9
26+
python-version: 3.11
2727

2828
- name: Install dependencies
2929
run: |

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v5
1515

16-
- name: Set up Python 3.10
16+
- name: Set up Python 3.11
1717
uses: actions/setup-python@v6
1818
with:
19-
python-version: "3.10"
19+
python-version: "3.11"
2020

2121
- name: Install build dependencies
2222
run: |

CHANGELOG.md

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

1010
### Added
1111

12+
### Changed
13+
14+
### Fixed
15+
16+
### Removed
17+
18+
## [v6.7.5] - 2025-11-25
19+
20+
### Added
21+
1222
- Added retry with back-off logic for Redis related functions. [#528](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/pull/528)
1323
- Added nanosecond precision datetime filtering that ensures nanosecond precision support in filtering by datetime. This is configured via the `USE_DATETIME_NANOS` environment variable, while maintaining microseconds compatibility for datetime precision. [#529](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/pull/529)
1424

15-
### Changed
16-
1725
### Fixed
1826

19-
- Add Redis to be installed in dev environemnet for local testing [#536] (https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/pull/536)
27+
- Add Redis to be installed in dev environment for local testing [#536](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/pull/536)
28+
- Fix Redis optional dependencies in opensearch and elasticsearch packages [#541](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/pull/541)
29+
30+
### Updated
31+
32+
- Upgrade stac-fastapi parent libraries to v6.1.1 [#541](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/pull/541)
2033

2134
### Removed
2235

23-
### Updated
36+
- Removed support for Python 3.9, 3.10 as they are no longer supported by stac-fastapi parent libraries [#541](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/pull/541)
2437

2538
## [v6.7.4] - 2025-11-13
2639

@@ -642,7 +655,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
642655
- Use genexp in execute_search and get_all_collections to return results.
643656
- Added db_to_stac serializer to item_collection method in core.py.
644657

645-
[Unreleased]: https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/compare/v6.7.4...main
658+
[Unreleased]: https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/compare/v6.7.5...main
659+
[v6.7.5]: https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/compare/v6.7.4...v6.7.5
646660
[v6.7.4]: https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/compare/v6.7.3...v6.7.4
647661
[v6.7.3]: https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/compare/v6.7.2...v6.7.3
648662
[v6.7.2]: https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/compare/v6.7.1...v6.7.2

dockerfiles/Dockerfile.deploy.es

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.10-slim
1+
FROM python:3.11-slim
22

33
RUN apt-get update && \
44
apt-get -y upgrade && \

dockerfiles/Dockerfile.deploy.os

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.10-slim
1+
FROM python:3.11-slim
22

33
RUN apt-get update && \
44
apt-get -y upgrade && \

dockerfiles/Dockerfile.dev.es

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.10-slim
1+
FROM python:3.11-slim
22

33

44
# update apt pkgs, and install build-essential for ciso8601

dockerfiles/Dockerfile.dev.os

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.10-slim
1+
FROM python:3.11-slim
22

33

44
# update apt pkgs, and install build-essential for ciso8601

dockerfiles/Dockerfile.docs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.9-slim
1+
FROM python:3.11-slim
22

33
# build-essential is required to build a wheel for ciso8601
44
RUN apt update && apt install -y build-essential

examples/pip_docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.10-slim
1+
FROM python:3.11-slim
22

33

44
# update apt pkgs, and install build-essential for ciso8601

0 commit comments

Comments
 (0)