Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
10a59fa
upgrade stac-fastapi.pgstac to root_path fix version
anayeaye Jul 23, 2025
0fb438c
remove json dumps from ConfigDict
stephenkilbourn Jul 23, 2025
14533af
fix lint error
stephenkilbourn Jul 23, 2025
330f580
include tileMatrixSetId in STAC Item map links
stephenkilbourn Jul 23, 2025
bc87871
include collection search extension in stac extensions config
stephenkilbourn Jul 25, 2025
06c18b6
fix lint error
stephenkilbourn Jul 25, 2025
8c196be
Update stac_api/runtime/src/render.py
anayeaye Aug 6, 2025
6b57389
lint
anayeaye Aug 6, 2025
449ed67
fix(db): remove custom collection id search UDF
anayeaye Aug 7, 2025
c751098
fix(stac-api): remove deprecated collection id search endpoints
anayeaye Aug 7, 2025
cfc3a71
feat(stac-api): add collection search
anayeaye Aug 8, 2025
b7e4ae6
feat(tests)!: modifications to docker compose and tests for pgstac up…
anayeaye Aug 12, 2025
12cffd1
use pypgstac container to load data
anayeaye Aug 12, 2025
485e0f2
no need to load items in actions because the database is loaded in do…
anayeaye Aug 12, 2025
4271091
use pg prefixed env vars in transactions conftest
anayeaye Aug 12, 2025
7ac16fa
some test debugging
anayeaye Aug 13, 2025
80da7a4
revert transaction test data ids
anayeaye Aug 13, 2025
b49d629
attempt to create collection_in_db before each test
stephenkilbourn Aug 13, 2025
c9603fe
do not fail fixture if collection was already created
stephenkilbourn Aug 13, 2025
093f096
fix indention failure on linting
stephenkilbourn Aug 13, 2025
3e0643c
attempt to test searching by free text word precipitation
stephenkilbourn Aug 13, 2025
0c1642c
remove commented code and rename stac api extensions test file
anayeaye Aug 13, 2025
23d3b93
remove deleted test file
anayeaye Aug 13, 2025
ec5d248
feat(release)!: observability updates, multitenant filtering and auth…
botanical May 26, 2026
f942402
fix: resolve merge conflicts
botanical May 27, 2026
e7e879a
fix: resolve merge conflicts in conftest.py
botanical May 27, 2026
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
28 changes: 28 additions & 0 deletions .github/workflows/data/noaa-emergency-response.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
<<<<<<< HEAD
"id": "noaa-emergency-response",
"title": "NOAA Emergency Response Imagery",
"description": "NOAA Emergency Response Imagery hosted on AWS Public Dataset.",
Expand All @@ -11,6 +12,33 @@
},
"temporal": {
"interval": [["2005-01-01T00:00:00Z", null]]
=======
"id": "noaa-emergency-response",
"title": "NOAA Emergency Response Imagery",
"description": "NOAA Emergency Response Imagery hosted on AWS Public Dataset.",
"stac_version": "1.0.0",
"license": "public-domain",
"links": [],
"extent": {
"spatial": {
"bbox": [
[
-180,
-90,
180,
90
]
]
},
"temporal": {
"interval": [
[
"2005-01-01T00:00:00Z",
null
]
]
}
>>>>>>> 23d3b936e8d8fc705ee06754ac74b654262030a1
}
},
"eic:tenant": "emergency"
Expand Down
4 changes: 4 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,16 @@ services:
# https://github.com/developmentseed/eoAPI/issues/16
# - TITILER_ENDPOINT=raster
- TITILER_ENDPOINT=http://0.0.0.0:8082
<<<<<<< HEAD
- VEDA_STAC_ROOT_PATH=/api/stac
- VEDA_STAC_OPENID_CONFIGURATION_URL=http://localhost:8888/.well-known/openid-configuration
- VEDA_STAC_OPENID_CONFIGURATION_INTERNAL_URL=http://oidc:8888/.well-known/openid-configuration
- VEDA_STAC_ENABLE_TRANSACTIONS=True
- VEDA_STAC_GIT_SHA=local123
- VEDA_STAC_ENABLE_STAC_AUTH_PROXY=True
=======
- VEDA_STAC_ENABLE_TRANSACTIONS=True
>>>>>>> 23d3b936e8d8fc705ee06754ac74b654262030a1
depends_on:
- database
- raster
Expand Down
2 changes: 1 addition & 1 deletion scripts/run-local-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ NO_PYDANTIC_SSM_SETTINGS=1 python -m pytest --cov=ingest_api/runtime/src ingest_

# Transactions tests
echo "--- Running stac api runtime tests ---"
python -m pytest stac_api/runtime/tests/ --asyncio-mode=auto -vv -s -p no:warnings
python -m pytest stac_api/runtime/tests/ --asyncio-mode=auto -vv -s -p no:warnings
Loading