Skip to content

Commit ce6a718

Browse files
Release/v6.2.0 (#876)
* update changelog * update lockfile * Bump version: 6.1.5 → 6.2.0 * update versions * fix benchmark
1 parent 2065fef commit ce6a718

11 files changed

Lines changed: 269 additions & 359 deletions

File tree

‎.github/workflows/cicd.yaml‎

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,9 @@ jobs:
7070
with:
7171
version: "0.9.*"
7272
enable-cache: true
73-
74-
- name: Install dependencies
75-
run: |
76-
uv sync
7773

7874
- name: Run Benchmark
79-
run: uv run pytest stac_fastapi/api/tests/benchmarks.py --benchmark-only --benchmark-columns 'min, max, mean, median' --benchmark-json output.json
75+
run: uv run --frozen pytest stac_fastapi/api/tests/benchmarks.py --benchmark-only --benchmark-columns 'min, max, mean, median' --benchmark-json output.json
8076

8177
- name: Store and benchmark result
8278
if: github.repository == 'stac-utils/stac-fastapi'

‎CHANGES.md‎

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,17 @@
22

33
## [Unreleased]
44

5+
## [6.2.0] - 2026-01-13
6+
57
### Removed
68

79
- support for python 3.9 and 3.10
810

9-
### Fixed
10-
11-
- default port handling in ProxyHeaderMiddleware for forwarded headers ([#852](https://github.com/stac-utils/stac-fastapi/pull/852))
12-
1311
## [6.1.5] - 2026-01-12
1412

1513
### Fixed
1614

17-
- default port handling in ProxyHeaderMiddleware for forwarded headers ([#852](https://github.com/stac-utils/stac-fastapi/pull/852)) **backported**
15+
- default port handling in ProxyHeaderMiddleware for forwarded headers ([#852](https://github.com/stac-utils/stac-fastapi/pull/852))
1816

1917
## [6.1.4] - 2025-12-12
2018

@@ -34,7 +32,7 @@
3432

3533
### Fixed
3634

37-
- fixed output type for `api.models.create_request_model` and `api.models.create_get_request_model` methods **backported**
35+
- fixed output type for `api.models.create_request_model` and `api.models.create_get_request_model` methods
3836

3937
## [6.1.1] - 2025-11-23
4038

@@ -706,7 +704,8 @@ Full changelog: https://stac-utils.github.io/stac-fastapi/migrations/v3.0.0/#cha
706704

707705
* First PyPi release!
708706

709-
[Unreleased]: <https://github.com/stac-utils/stac-fastapi/compare/6.1.5..main>
707+
[Unreleased]: <https://github.com/stac-utils/stac-fastapi/compare/6.2.0..main>
708+
[6.2.0]: <https://github.com/stac-utils/stac-fastapi/compare/6.1.5..6.2.0>
710709
[6.1.5]: <https://github.com/stac-utils/stac-fastapi/compare/6.1.4..6.1.5>
711710
[6.1.4]: <https://github.com/stac-utils/stac-fastapi/compare/6.1.3..6.1.4>
712711
[6.1.3]: <https://github.com/stac-utils/stac-fastapi/compare/6.1.2..6.1.3>

‎RELEASING.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This is a checklist for releasing a new version of **stac-fastapi**.
88

99
Note: You can use [`bump-my-version`](https://github.com/callowayproject/bump-my-version) CLI
1010
```
11-
uv run bump-my-version bump --new-version 3.1.0
11+
uv run --with bump-my-version bump-my-version bump --new-version 3.1.0
1212
```
1313
1414
4. Update [CHANGES.md](./CHANGES.md) for the new version. Add the appropriate header, and update the links at the bottom of the file.

‎VERSION‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.1.5
1+
6.2.0

‎pyproject.toml‎

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "stac-fastapi"
3-
version = "6.1.5"
3+
version = "6.2.0"
44
description = "Python library for building a STAC-compliant FastAPI application."
55
requires-python = ">=3.11"
66
readme = "README.md"
@@ -36,7 +36,6 @@ dev = [
3636
"pytest-asyncio",
3737
"pytest-benchmark",
3838
"pre-commit",
39-
"bump-my-version",
4039
"httpx",
4140
"requests",
4241
]
@@ -81,7 +80,7 @@ explicit_package_bases = true
8180
exclude = ["tests", ".venv"]
8281

8382
[tool.bumpversion]
84-
current_version = "6.1.5"
83+
current_version = "6.2.0"
8584
parse = """(?x)
8685
(?P<major>\\d+)\\.
8786
(?P<minor>\\d+)\\.

‎stac_fastapi/api/pyproject.toml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ classifiers = [
3232
dynamic = ["version"]
3333
dependencies = [
3434
"brotli_asgi",
35-
"stac-fastapi.types~=6.1",
35+
"stac-fastapi.types~=6.2",
3636
]
3737

3838
[dependency-groups]
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.1.5"
3+
__version__ = "6.2.0"

‎stac_fastapi/extensions/pyproject.toml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ classifiers = [
3232
]
3333
dynamic = ["version"]
3434
dependencies = [
35-
"stac-fastapi.types~=6.1",
36-
"stac-fastapi.api~=6.1",
35+
"stac-fastapi.types~=6.2",
36+
"stac-fastapi.api~=6.2",
3737
]
3838

3939
[dependency-groups]
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.1.5"
3+
__version__ = "6.2.0"
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.1.5"
3+
__version__ = "6.2.0"

0 commit comments

Comments
 (0)