Skip to content

Commit 90fa414

Browse files
Merge branch 'main' into carl/jwt-validator-commands
2 parents c746bcc + 6c86813 commit 90fa414

File tree

4 files changed

+21
-16
lines changed

4 files changed

+21
-16
lines changed

docs/changelog.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
# Changelog
22

3-
## 2.1.0 - 2025-??-??
3+
## 2.1.0 - 2025-07-09
44
- Initial public release targeting integration with the
55
[Planet Client for Python](https://github.com/planetlabs/planet-client-python).
66

7+
## 2.0.11 - 2025-07-09
8+
- Final 2.0 series development release.
9+
710
## [Unreleased: 2.0.*]
811
- All releases in the 2.0.X series are development releases, even if not
912
tagged as such. This work included some shakedowns of the release pipelines.

src/planet_auth/oidc/api_clients/token_api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ def get_token_from_password(
292292
authorization (login).
293293
requested_audiences: A list of strings specifying the audiences
294294
to request.
295-
auth_enricher: Function to layer un the application of client credentials.
295+
auth_enricher: Function to layer in the application of client credentials.
296296
extra: Dict of extra parameters to pass to the token endpoint.
297297
298298
Returns:

src/planet_auth_utils/plauth_factory.py

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -269,22 +269,24 @@ def initialize_auth_client_context(
269269
application developer, and are given the highest priority. Internally, the
270270
priority used for the source of any particular configuration values is, from
271271
highest to lowest priority, as follows:
272-
- Arguments to this function.
273-
- Environment variables.
274-
- Values from configuration file.
275-
- Built-in defaults.
272+
273+
- Arguments to this function.
274+
- Environment variables.
275+
- Values from configuration file.
276+
- Built-in defaults.
276277
277278
In constructing the returned Auth context, the following priority is applied, from
278279
highest to lowest:
279-
- A user selected auth profile, as specified by `auth_profile_opt`. This may either
280-
specify a built-in profile name, or a fully custom profile defined by files in
281-
a `~/.planet/<profile name>` directory.
282-
- A user selected OAuth service account, as specified by `auth_client_id_opt` and `auth_client_secret_opt`.
283-
- A user specified API key, as specified by `auth_api_key_opt`
284-
- A user selected auth profile, as determined from either environment variables or config files.
285-
- A user selected OAuth service account, as determined from either environment variables or config files.
286-
- A user selected API key, as determined from either environment variables or config files.
287-
- A built-in default auth profile, which may require interactive user authentication.
280+
281+
- A user selected auth profile, as specified by `auth_profile_opt`. This may either
282+
specify a built-in profile name, or a fully custom profile defined by files in
283+
a `~/.planet/<profile name>` directory.
284+
- A user selected OAuth service account, as specified by `auth_client_id_opt` and `auth_client_secret_opt`.
285+
- A user specified API key, as specified by `auth_api_key_opt`
286+
- A user selected auth profile, as determined from either environment variables or config files.
287+
- A user selected OAuth service account, as determined from either environment variables or config files.
288+
- A user selected API key, as determined from either environment variables or config files.
289+
- A built-in default auth profile, which may require interactive user authentication.
288290
289291
Example:
290292
```python

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.11
1+
2.1.0

0 commit comments

Comments
 (0)