You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,28 @@ All notable changes to this project will be documented in this file.
7
7
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
8
8
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
9
9
10
+
## [0.8a1] - 2025-05-19
11
+
12
+
This version includes **breaking changes** for credential providers. `BasicAuthCredentialProvider` has been deprecated and removed.
13
+
Please migrate to `ApiClientCredentialsProvider` if you haven't done so already. [Client credentials](https://developer.jamf.com/jamf-pro/docs/client-credentials) with API roles and clients is the recommended path forward.
14
+
Where basic auth is still required with username/password use `UserCredentialsProvider`.
15
+
16
+
### Changed
17
+
18
+
- Update sort and filter fields for device inventory endpoints.
19
+
- Change default credential provider to `ApiClientCredentialsProvider` in docs.
20
+
- Refactored `LoadFromAWSSecretsManager`, `PromptForCredentials` and `LoadFromKeychain` into helper functions instead of classes. Each function returns a `CredentialProvider` type that is specified or raises a `TypeError` if an invalid credential provider was passed.
21
+
22
+
### Fixed
23
+
24
+
- GitHub Actions workflows now pin action versions to commit hash. Docs publishing was broken due to outdated actions.
0 commit comments