From 270f7b47ef2836d01244ad986d44289fc8a638d0 Mon Sep 17 00:00:00 2001 From: vincentsarago Date: Mon, 3 Aug 2026 17:49:23 +0200 Subject: [PATCH] feat: remove port/host/reload settings --- CHANGES.md | 4 ++++ stac_fastapi/types/stac_fastapi/types/config.py | 4 ---- uv.lock | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 0099a00bf..050c0892c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,6 +2,10 @@ ## [Unreleased] +### Changed + +- Removed `app_host`, `app_port`, and `reload` attributes from `ApiSettings`. + ## [6.5.0] - 2026-08-03 ### Added diff --git a/stac_fastapi/types/stac_fastapi/types/config.py b/stac_fastapi/types/stac_fastapi/types/config.py index fc14af20a..a2fb64947 100644 --- a/stac_fastapi/types/stac_fastapi/types/config.py +++ b/stac_fastapi/types/stac_fastapi/types/config.py @@ -28,10 +28,6 @@ class ApiSettings(BaseSettings): stac_fastapi_version: str = "0.1" stac_fastapi_landing_id: str = "stac-fastapi" - app_host: str = "0.0.0.0" - app_port: int = 8000 - reload: bool = True - # Enable Pydantic validation for output Response enable_response_models: bool = False diff --git a/uv.lock b/uv.lock index c22b1e5d1..e9b566682 100644 --- a/uv.lock +++ b/uv.lock @@ -2193,7 +2193,7 @@ wheels = [ [[package]] name = "stac-fastapi" -version = "6.4.1" +version = "6.5.0" source = { virtual = "." } dependencies = [ { name = "stac-fastapi-api" },