Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@

## [Unreleased]

## [6.6.0] - 2026-08-31

### Changed

- Removed explicit error handler for uncaught exceptions, improving security by preventing sensitive information from being exposed in error responses. ([#966](https://github.com/stac-utils/stac-fastapi/pull/966))
- Removed deprecated Fastapi's orjson custom response (`ORJSONResponse`) in favor of the default `JSONResponse`

## [6.5.0] - 2026-08-03

Expand Down Expand Up @@ -777,7 +780,8 @@ Full changelog: https://stac-utils.github.io/stac-fastapi/migrations/v3.0.0/#cha

* First PyPi release!

[Unreleased]: <https://github.com/stac-utils/stac-fastapi/compare/6.5.0..main>
[Unreleased]: <https://github.com/stac-utils/stac-fastapi/compare/6.6.0..main>
[6.6.0]: <https://github.com/stac-utils/stac-fastapi/compare/6.5.0..6.6.0>
[6.5.0]: <https://github.com/stac-utils/stac-fastapi/compare/6.4.1..6.5.0>
[6.4.1]: <https://github.com/stac-utils/stac-fastapi/compare/6.4.0..6.4.1>
[6.4.0]: <https://github.com/stac-utils/stac-fastapi/compare/6.3.2..6.4.0>
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.5.0
6.6.0
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "stac-fastapi"
version = "6.5.0"
version = "6.6.0"
description = "Python library for building a STAC-compliant FastAPI application."
requires-python = ">=3.11"
readme = "README.md"
Expand Down Expand Up @@ -82,7 +82,7 @@ explicit_package_bases = true
exclude = ["tests", ".venv"]

[tool.bumpversion]
current_version = "6.5.0"
current_version = "6.6.0"
parse = """(?x)
(?P<major>\\d+)\\.
(?P<minor>\\d+)\\.
Expand Down
2 changes: 1 addition & 1 deletion stac_fastapi/api/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ classifiers = [
dynamic = ["version"]
dependencies = [
"brotli_asgi",
"stac-fastapi.types~=6.4",
"stac-fastapi.types~=6.6",
]

[project.optional-dependencies]
Expand Down
7 changes: 1 addition & 6 deletions stac_fastapi/api/stac_fastapi/api/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

import attr
from fastapi import Path, Query
from fastapi.responses import JSONResponse

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

closes #967

from pydantic import BaseModel, create_model
from stac_pydantic.shared import BBox

Expand All @@ -19,12 +20,6 @@
_validate_datetime,
)

try:
import orjson # noqa
from fastapi.responses import ORJSONResponse as JSONResponse
except ImportError: # pragma: nocover
from starlette.responses import JSONResponse # type: ignore [assignment]


def create_request_model(
model_name="SearchGetRequest",
Expand Down
2 changes: 1 addition & 1 deletion stac_fastapi/api/stac_fastapi/api/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Library version."""

__version__ = "6.5.0"
__version__ = "6.6.0"
4 changes: 2 additions & 2 deletions stac_fastapi/extensions/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ classifiers = [
]
dynamic = ["version"]
dependencies = [
"stac-fastapi.types~=6.4",
"stac-fastapi.api~=6.4",
"stac-fastapi.types~=6.6",
"stac-fastapi.api~=6.6",
]

[dependency-groups]
Expand Down
2 changes: 1 addition & 1 deletion stac_fastapi/extensions/stac_fastapi/extensions/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Library version."""

__version__ = "6.5.0"
__version__ = "6.6.0"
2 changes: 1 addition & 1 deletion stac_fastapi/types/stac_fastapi/types/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Library version."""

__version__ = "6.5.0"
__version__ = "6.6.0"
1,155 changes: 625 additions & 530 deletions uv.lock

Large diffs are not rendered by default.