Skip to content

Commit c9ca5f2

Browse files
author
lewisjared
committed
Bump version: 0.6.1 → 0.6.2
1 parent 95feb4d commit c9ca5f2

9 files changed

Lines changed: 32 additions & 23 deletions

File tree

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumpversion]
2-
current_version = "0.6.1"
2+
current_version = "0.6.2"
33
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
44
serialize = ["{major}.{minor}.{patch}"]
55

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,31 @@ This project uses [Semantic Versioning](https://semver.org/).
77

88
<!-- towncrier release notes start -->
99

10+
## climate-ref-aft 0.6.2 (2026-08-17)
11+
12+
### Improvements
13+
14+
- Removes `api.env.SECRET_KEY` and the render guard that enforced it.
15+
The setting was a leftover from the FastAPI template ref-app was generated from, and nothing ever read it.
16+
The guard therefore failed a production render to protect a value that signed nothing.
17+
ref-app dropped the setting in v0.4.2, and its `Settings` ignores unknown variables,
18+
so an operator who still sets it just carries a dead entry in the API Secret.
19+
20+
Bumps the API image to `ghcr.io/climate-ref/climate-ref-frontend:v0.4.2`,
21+
which also bundles climate-ref 0.17.2 to match the pinned components. ([#52](https://github.com/Climate-REF/climate-ref-aft/pulls/52))
22+
23+
### Bug Fixes
24+
25+
- Names the three Assessment Fast Track providers in `REF_DIAGNOSTIC_PROVIDERS`,
26+
in the Helm chart and in the Compose stack.
27+
Previously the REF discovered providers from the entry points installed in the image,
28+
so the example provider was enrolled into the solve and its executions queued with no worker to run them.
29+
30+
`ref-init` no longer generates `/ref/ref.toml`.
31+
A provider list in that file is read in preference to the environment,
32+
so generating it froze whatever discovery happened to find. ([#51](https://github.com/Climate-REF/climate-ref-aft/pulls/51))
33+
34+
1035
## climate-ref-aft 0.6.1 (2026-08-17)
1136

1237
### Features

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ The `versions.toml` file pins the exact versions of each component in a given re
4141

4242
```bash
4343
# Install the chart from the OCI registry
44-
helm install ref oci://ghcr.io/climate-ref/charts/climate-ref-aft --version 0.6.1
44+
helm install ref oci://ghcr.io/climate-ref/charts/climate-ref-aft --version 0.6.2
4545
```
4646

4747
## Development

changelog/51.fix.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

changelog/52.improvement.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

helm/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: A Helm chart for deploying the Climate REF application for the CMIP
44
type: application
55

66
# Chart version tracks the AFT repo release version (SemVer)
7-
version: 0.6.1
7+
version: 0.6.2
88

99
# Application version tracks the climate-ref core version
1010
appVersion: "0.17.2"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "climate-ref-aft"
3-
version = "0.6.1"
3+
version = "0.6.2"
44
description = "Rapid Evaluation Framework (REF) for the CMIP7 Assessment Fast Track (AFT)."
55
readme = "README.md"
66
authors = [

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.

versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# to install the correct combination for integration testing.
66

77
[aft]
8-
version = "0.6.1"
8+
version = "0.6.2"
99

1010
[components]
1111
# Core framework (from Climate-REF/climate-ref monorepo)
@@ -25,6 +25,6 @@ climate-ref-frontend = "0.4.2"
2525

2626
[helm]
2727
# Chart version tracks the AFT repo version
28-
chart-version = "0.6.1"
28+
chart-version = "0.6.2"
2929
# App version tracks the climate-ref core version
3030
app-version = "0.17.2"

0 commit comments

Comments
 (0)