Skip to content

Commit 23e18fb

Browse files
authored
Merge branch 'develop' into local.es
2 parents d7549b8 + ffe4493 commit 23e18fb

File tree

8 files changed

+13
-9
lines changed

8 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [9.6.0] - 2025-02-03
9+
### Changed
10+
- [#517](https://github.com/unity-sds/unity-data-services/pull/517) feat: stac browser oidc cookie
11+
812
## [9.5.2] - 2025-01-31
913
### Fixed
1014
- [#524](https://github.com/unity-sds/unity-data-services/pull/524) fix: default boto3 from aws already has s3transfer library

cumulus_lambda_functions/uds_api/misc_api.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ async def stac_entry(request: Request, response: Response):
5858
Optionally, it will add a required authorization cookie if available.
5959
However, this endpoint should be called from a separate URL due to the infrastructure.
6060
61+
How to re-load UCS
62+
https://github.com/unity-sds/unity-data-services/issues/381#issuecomment-2201165672
63+
6164
:param request:
6265
:param response:
6366
:return:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><meta id="meta-description" name="description" content=""><title>STAC Browser</title><script defer="defer" src="/to/be/replaced/stac_browser/js/chunk-vendors.eae96ced.js"></script><script defer="defer" src="/to/be/replaced/stac_browser/js/app.79583f94.js"></script><link href="/to/be/replaced/stac_browser/css/chunk-vendors.de510de6.css" rel="stylesheet"><link href="/to/be/replaced/stac_browser/css/app.b5efa536.css" rel="stylesheet"></head><body><noscript><strong>We're sorry but STAC Browser doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="stac-browser"></div></body></html>
1+
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><meta id="meta-description" name="description" content=""><title>STAC Browser</title><script defer="defer" src="/to/be/replaced/stac_browser/js/chunk-vendors.eae96ced.js"></script><script defer="defer" src="/to/be/replaced/stac_browser/js/app.ad7851bb.js"></script><link href="/to/be/replaced/stac_browser/css/chunk-vendors.de510de6.css" rel="stylesheet"><link href="/to/be/replaced/stac_browser/css/app.b5efa536.css" rel="stylesheet"></head><body><noscript><strong>We're sorry but STAC Browser doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="stac-browser"></div></body></html>

cumulus_lambda_functions/uds_api/stac_browser/js/app.79583f94.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

cumulus_lambda_functions/uds_api/stac_browser/js/app.79583f94.js renamed to cumulus_lambda_functions/uds_api/stac_browser/js/app.ad7851bb.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cumulus_lambda_functions/uds_api/stac_browser/js/app.ad7851bb.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docker/docker-compose-web-service.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
version: "3.7"
22
services:
33
cumulus_granules_upload:
4-
image: stac-web-swervice-1.0:latest
4+
image: ghcr.io/unity-sds/unity-data-services:7.10.1
55
restart: always
66
entrypoint: 'uvicorn web_service_stac_browser:app --host 0.0.0.0 --port 8005 --log-level info --reload'
77
tty: true
88
working_dir: '/usr/src/app/unity/cumulus_lambda_functions/uds_api'
99
ports:
1010
- 8005:8005
1111
environment:
12-
AWS_ACCESS_KEY_ID: 'dd'
13-
AWS_SECRET_ACCESS_KEY: 'dddd'
14-
AWS_SESSION_TOKEN: 'dddd'
1512
AWS_REGION: 'us-west-2'
1613

1714
PYTHONPATH: '${PYTHONPATH}:/usr/src/app/unity'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name="cumulus_lambda_functions",
15-
version="9.5.2",
15+
version="9.6.0",
1616
packages=find_packages(),
1717
install_requires=install_requires,
1818
package_data={

0 commit comments

Comments
 (0)