Skip to content

Commit b8b8ebf

Browse files
authored
Release/6.3.2 (#941)
1 parent d7bae54 commit b8b8ebf

7 files changed

Lines changed: 11 additions & 8 deletions

File tree

CHANGES.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [6.3.2] - 2026-06-27
6+
57
### Fixed
68

79
- Prevent resolve_links from mangling absolute URLs in STAC items. The function now checks if an href is already absolute (starts with http:// or https://) before applying the proxy path and base_url. This fixes a regression in v6.3.1 that affected any backend or custom implementation that returns STAC items containing external or absolute URLs (such as license links, external documentation, or custom asset endpoints). ([#940](https://github.com/stac-utils/stac-fastapi/pull/940))
@@ -741,7 +743,8 @@ Full changelog: https://stac-utils.github.io/stac-fastapi/migrations/v3.0.0/#cha
741743

742744
* First PyPi release!
743745

744-
[Unreleased]: <https://github.com/stac-utils/stac-fastapi/compare/6.3.1..main>
746+
[Unreleased]: <https://github.com/stac-utils/stac-fastapi/compare/6.3.2..main>
747+
[6.3.2]: <https://github.com/stac-utils/stac-fastapi/compare/6.3.1..6.3.2>
745748
[6.3.1]: <https://github.com/stac-utils/stac-fastapi/compare/6.3.0..6.3.1>
746749
[6.3.0]: <https://github.com/stac-utils/stac-fastapi/compare/6.2.1..6.3.0>
747750
[6.2.1]: <https://github.com/stac-utils/stac-fastapi/compare/6.2.0..6.2.1>

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.3.1
1+
6.3.2

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "stac-fastapi"
3-
version = "6.3.1"
3+
version = "6.3.2"
44
description = "Python library for building a STAC-compliant FastAPI application."
55
requires-python = ">=3.11"
66
readme = "README.md"
@@ -81,7 +81,7 @@ explicit_package_bases = true
8181
exclude = ["tests", ".venv"]
8282

8383
[tool.bumpversion]
84-
current_version = "6.3.1"
84+
current_version = "6.3.2"
8585
parse = """(?x)
8686
(?P<major>\\d+)\\.
8787
(?P<minor>\\d+)\\.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Library version."""
22

3-
__version__ = "6.3.1"
3+
__version__ = "6.3.2"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Library version."""
22

3-
__version__ = "6.3.1"
3+
__version__ = "6.3.2"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Library version."""
22

3-
__version__ = "6.3.1"
3+
__version__ = "6.3.2"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)