Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,28 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.8a1] - 2025-05-19

This version includes **breaking changes** for credential providers. `BasicAuthCredentialProvider` has been deprecated and removed.
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.
Where basic auth is still required with username/password use `UserCredentialsProvider`.

### Changed

- Update sort and filter fields for device inventory endpoints.
- Change default credential provider to `ApiClientCredentialsProvider` in docs.
- 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.

### Fixed

- GitHub Actions workflows now pin action versions to commit hash. Docs publishing was broken due to outdated actions.

### PRs Included

- [#57](https://github.com/macadmins/jamf-pro-sdk-python/pull/57)
- [#60](https://github.com/macadmins/jamf-pro-sdk-python/pull/60)
- [#62](https://github.com/macadmins/jamf-pro-sdk-python/pull/62)

## [0.7a1] - 2024-12-03

Special shoutout to [macserv](https://github.com/macserv) for this contribution to the project!
Expand Down
2 changes: 1 addition & 1 deletion src/jamf_pro_sdk/__about__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__title__ = "jamf-pro-sdk"
__version__ = "0.7a1"
__version__ = "0.8a1"