Skip to content

Commit bc4b8a0

Browse files
Merge pull request #393 from ASFHyP3/develop
Release v7.7.5
2 parents 3121252 + e147365 commit bc4b8a0

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [PEP 440](https://www.python.org/dev/peps/pep-0440/)
77
and uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9+
## [7.7.5]
10+
11+
### Changed
12+
* `hyp3_sdk.HyP3()` now authenticates via `cumulus.asf.alaska.edu`, rather than `auth.asf.alaska.edu`.
13+
914
## [7.7.4]
1015

1116
### Added

requirements-static.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
ruff==0.14.1
1+
ruff==0.14.2
22
mypy==1.18.2

src/hyp3_sdk/util.py

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

1616
AUTH_URL = (
1717
'https://urs.earthdata.nasa.gov/oauth/authorize?response_type=code&client_id=BO_n7nTIlMljdvU6kRRB3g'
18-
'&redirect_uri=https://auth.asf.alaska.edu/login&app_type=401'
18+
'&redirect_uri=https://cumulus.asf.alaska.edu/login&app_type=401'
1919
)
2020

2121
PROFILE_URL = 'https://urs.earthdata.nasa.gov/profile'

tests/test_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def test_get_authenticated_session_eula():
4040
@responses.activate
4141
def test_get_authenticated_session_study_area():
4242
redirect_url = (
43-
'https://auth.asf.alaska.edu/login?error=access_denied&error_msg=Please%20update%20your%20profile%20for'
43+
'https://cumulus.asf.alaska.edu/login?error=access_denied&error_msg=Please%20update%20your%20profile%20for'
4444
'%20application%20required%20attributes%20Study%20Area'
4545
)
4646
responses.add(responses.GET, util.AUTH_URL, status=302, headers={'Location': redirect_url})

0 commit comments

Comments
 (0)