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
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,40 @@

<!-- version list -->

## v0.4.1 (2026-08-12)

### Bug Fixes

- Add `downloadLink` asset independetly of the presence of `eodag:download_link`
([#121](https://github.com/CS-SI/stac-fastapi-eodag/pull/121),
[`ce2b975`](https://github.com/CS-SI/stac-fastapi-eodag/commit/ce2b975f596f95173f01383f99050dd64dfc427c))

- Remove federation extension link as it is not valid
([`1db1c5c`](https://github.com/CS-SI/stac-fastapi-eodag/commit/1db1c5cb44ff57de8237d6a5b9d4df3f40cb6a17))

- Remove storage:refs from assets with data-download
([`3bb1a57`](https://github.com/CS-SI/stac-fastapi-eodag/commit/3bb1a5722e3387bc20eeb8c3b562f5c471f8e52f))

- **search**: Preserve search params in ids-based eodag requests
([`bae69d4`](https://github.com/CS-SI/stac-fastapi-eodag/commit/bae69d4454b6dc998e3f0db6b4a59a0299e0e6a5))

### Chores

- Bump dependencies
([`a6f7ac3`](https://github.com/CS-SI/stac-fastapi-eodag/commit/a6f7ac3dd02c8d20744246dbca003c032e93bfc9))

- Bump stac-fastapi-eodag version in uv.lock
([`a185802`](https://github.com/CS-SI/stac-fastapi-eodag/commit/a185802f79b5ddc90fdee0614fb50900b4f9b30d))

- Update dependencies
([`c7f05e1`](https://github.com/CS-SI/stac-fastapi-eodag/commit/c7f05e1ba00e6c0f0165dfd632203b765cbe3ad2))

### Refactoring

- Leverage eodag methods to create STAC item
([`de3c683`](https://github.com/CS-SI/stac-fastapi-eodag/commit/de3c6835c1c9a10920345e28f5e849dc9834e3d6))


## v0.4.0 (2026-07-15)

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions helm/stac-fastapi-eodag/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# SPDX-License-Identifier: APACHE-2.0

apiVersion: v2
appVersion: 0.4.0
appVersion: 0.4.1
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
Expand All @@ -24,4 +24,4 @@ name: stac-fastapi-eodag
sources:
- https://github.com/CS-SI/stac-fastapi-eodag
type: application
version: 0.4.0
version: 0.4.1
2 changes: 1 addition & 1 deletion helm/stac-fastapi-eodag/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ The command removes all the Kubernetes components associated with the chart and
| image.pullSecrets | list | `[]` | Specify docker-registry secret names as an array |
| image.registry | string | `"ghcr.io"` | stac-fastapi-eodag image registry |
| image.repository | string | `"cs-si/stac-fastapi-eodag"` | stac-fastapi-eodag image repository |
| image.tag | string | `"v0.4.0-eodag-4.5.0"` | Overrides the stac-fastapi-eodag image tag whose default is the chart appVersion (immutable tags are recommended) |
| image.tag | string | `"v0.4.1-eodag-4.6.0"` | Overrides the stac-fastapi-eodag image tag whose default is the chart appVersion (immutable tags are recommended) |
| ingress.annotations | object | `{}` | Annotations for the stac-fastapi-eodag ingress. To enable certificate autogeneration, place here your cert-manager annotations. |
| ingress.apiVersion | string | `""` | Ingress API version for the stac-fastapi-eodag ingress |
| ingress.enabled | bool | `false` | Enable the creation of an ingress for the stac-fastapi-eodag |
Expand Down
2 changes: 1 addition & 1 deletion helm/stac-fastapi-eodag/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ image:
# -- stac-fastapi-eodag image repository
repository: cs-si/stac-fastapi-eodag
# -- Overrides the stac-fastapi-eodag image tag whose default is the chart appVersion (immutable tags are recommended)
tag: "v0.4.0-eodag-4.5.0"
tag: "v0.4.1-eodag-4.6.0"
# -- stac-fastapi-eodag image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag
digest: ""
## Specify a imagePullPolicy
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "stac_fastapi.eodag"
version = "0.4.0"
version = "0.4.1"
description = "A stac-fastapi backend using EODAG"
readme = "README.md"
authors = [{ name = "CS GROUP - France (CSSI)", email = "eodag@csgroup.space" }]
Expand Down
Loading