Skip to content

Commit

Permalink
update stac to version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mishaschwartz committed Feb 6, 2025
1 parent ddedf96 commit dfba750
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
12 changes: 11 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,17 @@
[Unreleased](https://github.com/bird-house/birdhouse-deploy/tree/master) (latest)
------------------------------------------------------------------------------------------------------------------

[//]: # (list changes here, using '-' for each new entry, remove this when items are added)
## Changes

- STAC: update `stac` component to version [1.0.0](https://github.com/crim-ca/stac-app/releases/tag/1.0.0)

This update makes the `/queryables` endpoint run much more quickly by stashing the queryables data in the
database instead of building it from scratch every time the `/queryables` endpoint was accessed.

It also adds two new endpoints `PATCH /queryables` and `PATCH /summaries` which automatically update the
queryables and collection summaries based on the data that is currently present in the database. See the
[documentation](https://github.com/crim-ca/stac-app/blob/040d350ade758871b6e95db9c86c04202433ef0e/README.md)
for more details.

[2.9.0](https://github.com/bird-house/birdhouse-deploy/tree/2.9.0) (2025-02-03)
------------------------------------------------------------------------------------------------------------------
Expand Down
8 changes: 3 additions & 5 deletions birdhouse/components/stac/default.env
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,9 @@ export STAC_POSTGRES_PASSWORD='${BIRDHOUSE_POSTGRES_PASSWORD}'
export STAC_PGUSER='${BIRDHOUSE_POSTGRES_USERNAME}'
export STAC_PGPASSWORD='${BIRDHOUSE_POSTGRES_PASSWORD}'

# 'main' branch points at https://github.com/stac-utils/stac-fastapi/commit/d53e792
# (see: https://github.com/crim-ca/stac-app/blob/40cad1aa7a094d58fca2d3184182761e248f781d/Dockerfile#L15-L20)
# which corresponds to 2.4.3 release
export STAC_VERSION=2.4.3-crim-main
export STAC_IMAGE='ghcr.io/crim-ca/stac-app:main'
# crim-ca/stac-app:1.0.0 uses STAC-fastapi version 3.0.3
export STAC_VERSION=3.0.3-crim-1.0.0
export STAC_IMAGE='ghcr.io/crim-ca/stac-app:1.0.0'
export STAC_IMAGE_URI='${STAC_IMAGE}'

# 'docker_image_push' branch points at https://github.com/crim-ca/stac-browser/tree/docker_image_push
Expand Down

0 comments on commit dfba750

Please sign in to comment.