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
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.0
0.11.1
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## [0.11.1](https://github.com/auth0/Guardian.Android/tree/0.11.1) (2026-08-28)
[Full Changelog](https://github.com/auth0/Guardian.Android/compare/0.11.0...0.11.1)

**Fixed**
- Fix `ClassCastException` when fetching a rich consent with an Android Keystore-backed enrollment key (see [PR](https://github.com/auth0/Guardian.Android/pull/151)). `RichConsentsAPIClient` signed the DPoP assertion by casting the enrollment `PrivateKey` to `java.security.interfaces.RSAPrivateKey`; hardware-backed `AndroidKeyStoreRSAPrivateKey` does not implement that interface, so `fetch()` crashed. The assertion is now signed via `java.security.Signature` ("SHA256withRSA"), which accepts any `PrivateKey` — restoring compatibility with both Keystore and plain in-memory RSA keys.

## [0.11.0](https://github.com/auth0/Guardian.Android/tree/0.11.0) (2026-07-23)
[Full Changelog](https://github.com/auth0/Guardian.Android/compare/0.10.2...0.11.0)

Expand Down
Loading